v1.2.1
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-skillWorks 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-atsimport { parseResume, analyzeResume, suggestImprovements } from "resume-parser-ats";📡 4. MCP Server (for Claude Desktop, ChatGPT, Cursor)
resume-parser-ats --mcpAdd 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
--mcpflag — 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
--mcpflag 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