Skip to content

v1.2.1

Choose a tag to compare

@dhanushk-offl dhanushk-offl released this 25 May 08:00
· 5 commits to master since this release

resume-parser-ats v1.2.1

📚 Documentation Overhaul

Comprehensive documentation for all 4 usage modes:

🤖 1. Agent Skill (for AI agents)

npx skills add dhanushk-offl/resume-parser-skill

Works with pi, Claude Code, Codex, Gemini CLI, Cursor, and all Agent Skills compatible tools.

🖥️ 2. CLI

npm install -g resume-parser-ats
resume-parser-ats parse resume.pdf
resume-parser-ats analyze resume.pdf --strictness strict
resume-parser-ats insights resume.pdf --json

📖 3. Library (npm)

npm install resume-parser-ats
import { parseResume, analyzeResume, suggestImprovements } from "resume-parser-ats";

📡 4. MCP Server (for Claude Desktop, ChatGPT, Cursor)

resume-parser-ats --mcp

Add to your Claude Desktop config:

{
  "mcpServers": {
    "resume-parser": {
      "command": "npx",
      "args": ["-y", "resume-parser-ats", "--mcp"]
    }
  }
}

What's New

  • CONTRIBUTING.md — Full contributing guide with setup, testing, PR checklist
  • MCP --mcp flag — Start the MCP server directly from the CLI
  • Rewritten README — Clear sections for all 4 usage modes with copy-paste configs
  • SKILL.md — Updated programmatic access section with library and MCP docs

Full Changelog

  • Added CONTRIBUTING.md with development setup, project structure, code style, testing, and PR checklist
  • Added --mcp flag to CLI for starting MCP server
  • Rewrote README.md with 4 clear usage modes (Agent Skill, CLI, Library, MCP)
  • Updated SKILL.md with npm library and MCP server documentation
  • Added MCP configuration examples for Claude Desktop, ChatGPT, and Cursor