resume-parser-ats 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +7 -7
  2. package/bin/cli.js +8 -8
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -41,22 +41,22 @@ npm run build
41
41
 
42
42
  ```bash
43
43
  # Parse a resume and output structured data
44
- npx resume-parser parse resume.pdf
44
+ npx resume-parser-ats parse resume.pdf
45
45
 
46
46
  # Parse + analyze ATS compatibility
47
- npx resume-parser analyze resume.pdf
47
+ npx resume-parser-ats analyze resume.pdf
48
48
 
49
49
  # Full pipeline: parse + analyze + actionable suggestions
50
- npx resume-parser insights resume.pdf
50
+ npx resume-parser-ats insights resume.pdf
51
51
 
52
52
  # Parse from raw text
53
- npx resume-parser parse "John Doe\njohn@email.com\nSoftware Engineer"
53
+ npx resume-parser-ats parse "John Doe\njohn@email.com\nSoftware Engineer"
54
54
 
55
55
  # Adjust ATS strictness
56
- npx resume-parser analyze resume.pdf --strictness strict
56
+ npx resume-parser-ats analyze resume.pdf --strictness strict
57
57
 
58
58
  # Focus on specific areas
59
- npx resume-parser insights resume.pdf --focus ats,formatting --json
59
+ npx resume-parser-ats insights resume.pdf --focus ats,formatting --json
60
60
  ```
61
61
 
62
62
  ### As a Library
@@ -145,7 +145,7 @@ Each attribute (Name, Email, Phone, etc.) has **feature sets** — matching func
145
145
  > *Before applying to jobs, run your resume through the parser to see what an ATS actually extracts.*
146
146
 
147
147
  ```bash
148
- npx resume-parser insights my-resume.pdf --strictness strict --json
148
+ npx resume-parser-ats insights my-resume.pdf --strictness strict --json
149
149
  ```
150
150
 
151
151
  Identify critical issues like a missing email, unparseable name, or sections an ATS can't detect — and fix them *before* you apply.
package/bin/cli.js CHANGED
@@ -4,9 +4,9 @@
4
4
  * Resume Parser — CLI Entry Point
5
5
  *
6
6
  * Usage:
7
- * resume-parser parse <file|text> Parse a resume and output structured data
8
- * resume-parser analyze <file|text> Parse + analyze ATS compatibility
9
- * resume-parser insights <file|text> Full pipeline: parse + analyze + suggestions
7
+ * resume-parser-ats parse <file|text> Parse a resume and output structured data
8
+ * resume-parser-ats analyze <file|text> Parse + analyze ATS compatibility
9
+ * resume-parser-ats insights <file|text> Full pipeline: parse + analyze + suggestions
10
10
  */
11
11
 
12
12
  const path = require("path");
@@ -24,7 +24,7 @@ function printUsage() {
24
24
  Resume Parser CLI — Deep resume parsing with ATS insights
25
25
 
26
26
  Usage:
27
- resume-parser <command> <input> [options]
27
+ resume-parser-ats <command> <input> [options]
28
28
 
29
29
  Commands:
30
30
  parse <file|text> Parse a resume and output structured data
@@ -38,10 +38,10 @@ Options:
38
38
  --help Show this help message
39
39
 
40
40
  Examples:
41
- resume-parser parse resume.pdf
42
- resume-parser analyze resume.pdf --strictness strict
43
- resume-parser insights resume.pdf --focus ats,formatting --json
44
- resume-parser parse "John Doe\\njohn@email.com\\nSoftware Engineer"
41
+ resume-parser-ats parse resume.pdf
42
+ resume-parser-ats analyze resume.pdf --strictness strict
43
+ resume-parser-ats insights resume.pdf --focus ats,formatting --json
44
+ resume-parser-ats parse "John Doe\\njohn@email.com\\nSoftware Engineer"
45
45
  `);
46
46
  }
47
47
 
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "resume-parser-ats",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "An agent skill that deeply parses resumes, extracts structured data, and provides actionable insights to improve ATS compatibility and readability.",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",
7
7
  "bin": {
8
- "resume-parser": "bin/cli.js"
8
+ "resume-parser-ats": "bin/cli.js"
9
9
  },
10
10
  "scripts": {
11
11
  "build": "tsc",