resuml 1.19.2 → 1.20.0
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.
- package/README.md +4 -4
- package/dist/api.js +1 -1
- package/dist/{chunk-R2JVKIFT.js → chunk-KRJMZ2RQ.js} +7 -7
- package/dist/{chunk-R2JVKIFT.js.map → chunk-KRJMZ2RQ.js.map} +1 -1
- package/dist/index.js +1 -1
- package/dist/mcp/server.js +1 -1
- package/package.json +1 -1
- package/scripts/build-skills-db.js +8 -8
- package/scripts/bundle-themes.js +18 -18
- package/scripts/enrich-themes-manifest.mjs +3 -3
- package/scripts/mcp-call.mjs +1 -1
- package/scripts/quick-bundle.cjs +1 -1
- package/scripts/render-theme-thumbs.mjs +2 -2
- package/scripts/test-mcp.mjs +4 -4
package/README.md
CHANGED
|
@@ -16,13 +16,13 @@
|
|
|
16
16
|
|
|
17
17
|
## Three ways to use it
|
|
18
18
|
|
|
19
|
-
### 🌐 [resuml.app](https://resuml.app)
|
|
19
|
+
### 🌐 The web app at [resuml.app](https://resuml.app)
|
|
20
20
|
|
|
21
|
-
Free, open source, no signup. Your resume data stays in your browser
|
|
21
|
+
Free, open source, no signup. Your resume data stays in your browser. We don't store or track anything. Write in YAML or use the form editor, pick from 300+ themes, check your ATS match against a job description, and export to PDF.
|
|
22
22
|
|
|
23
23
|
### 🤖 With Claude Code / AI agents (MCP)
|
|
24
24
|
|
|
25
|
-
resuml ships with a built-in [MCP server](https://modelcontextprotocol.io/) so Claude Code can read your resume, tailor it to a job description, check the ATS score, and render it
|
|
25
|
+
resuml ships with a built-in [MCP server](https://modelcontextprotocol.io/) so Claude Code can read your resume, tailor it to a job description, check the ATS score, and render it, all from a chat.
|
|
26
26
|
|
|
27
27
|
**One-command setup (recommended):**
|
|
28
28
|
|
|
@@ -96,7 +96,7 @@ Full CLI reference, Node.js API, ATS rubric, CI/CD setup, and every MCP tool liv
|
|
|
96
96
|
## Requirements
|
|
97
97
|
|
|
98
98
|
- Node.js ≥ 20, npm ≥ 10
|
|
99
|
-
- Nothing else
|
|
99
|
+
- Nothing else. Validation, ATS, rendering, and PDF all run locally
|
|
100
100
|
|
|
101
101
|
## Contributing
|
|
102
102
|
|
package/dist/api.js
CHANGED
|
@@ -1365,7 +1365,7 @@ var SkillIndex = class {
|
|
|
1365
1365
|
this.maxPhraseLen = maxLen;
|
|
1366
1366
|
}
|
|
1367
1367
|
/**
|
|
1368
|
-
* Scan text for skills. Longest-match wins at each position
|
|
1368
|
+
* Scan text for skills. Longest-match wins at each position, e.g. "Next.js"
|
|
1369
1369
|
* doesn't also fire "Next", and "Google Cloud Platform" doesn't also fire
|
|
1370
1370
|
* "Google".
|
|
1371
1371
|
*
|
|
@@ -1565,28 +1565,28 @@ function generateSummary(score, rating, hasJd) {
|
|
|
1565
1565
|
}[rating];
|
|
1566
1566
|
const base = `ATS Score: ${score}/100 (${ratingLabel})`;
|
|
1567
1567
|
if (hasJd) {
|
|
1568
|
-
return `${base}
|
|
1568
|
+
return `${base}, includes job description keyword matching.`;
|
|
1569
1569
|
}
|
|
1570
|
-
return `${base}
|
|
1570
|
+
return `${base}, based on resume structure and content best practices.`;
|
|
1571
1571
|
}
|
|
1572
1572
|
function assessFit(keywords) {
|
|
1573
1573
|
const { matchPercentage, missing } = keywords;
|
|
1574
1574
|
if (matchPercentage >= 70) {
|
|
1575
1575
|
return {
|
|
1576
1576
|
level: "strong",
|
|
1577
|
-
message: "Strong fit
|
|
1577
|
+
message: "Strong fit, your resume aligns well with this job description."
|
|
1578
1578
|
};
|
|
1579
1579
|
}
|
|
1580
1580
|
const topMissing = missing.slice(0, 5).join(", ");
|
|
1581
1581
|
if (matchPercentage >= 50) {
|
|
1582
1582
|
return {
|
|
1583
1583
|
level: "partial",
|
|
1584
|
-
message: `Partial fit
|
|
1584
|
+
message: `Partial fit, consider emphasizing transferable skills. Key gaps: ${topMissing}.`
|
|
1585
1585
|
};
|
|
1586
1586
|
}
|
|
1587
1587
|
return {
|
|
1588
1588
|
level: "weak",
|
|
1589
|
-
message: `Weak fit
|
|
1589
|
+
message: `Weak fit, this role requires skills not well represented in your resume. Major gaps: ${topMissing}.`
|
|
1590
1590
|
};
|
|
1591
1591
|
}
|
|
1592
1592
|
|
|
@@ -1618,4 +1618,4 @@ export {
|
|
|
1618
1618
|
processResumeData,
|
|
1619
1619
|
analyzeAts
|
|
1620
1620
|
};
|
|
1621
|
-
//# sourceMappingURL=chunk-
|
|
1621
|
+
//# sourceMappingURL=chunk-KRJMZ2RQ.js.map
|