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 CHANGED
@@ -16,13 +16,13 @@
16
16
 
17
17
  ## Three ways to use it
18
18
 
19
- ### 🌐 [resuml.app](https://resuml.app) — the web 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 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.
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 all from a chat.
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 — validation, ATS, rendering, and PDF all run locally
99
+ - Nothing else. Validation, ATS, rendering, and PDF all run locally
100
100
 
101
101
  ## Contributing
102
102
 
package/dist/api.js CHANGED
@@ -4,7 +4,7 @@ import {
4
4
  import {
5
5
  analyzeAts,
6
6
  processResumeData
7
- } from "./chunk-R2JVKIFT.js";
7
+ } from "./chunk-KRJMZ2RQ.js";
8
8
  import "./chunk-ZLA7NFYP.js";
9
9
 
10
10
  // src/api.ts
@@ -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 e.g. "Next.js"
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} \u2014 includes job description keyword matching.`;
1568
+ return `${base}, includes job description keyword matching.`;
1569
1569
  }
1570
- return `${base} \u2014 based on resume structure and content best practices.`;
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 \u2014 your resume aligns well with this job description."
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 \u2014 consider emphasizing transferable skills. Key gaps: ${topMissing}.`
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 \u2014 this role requires skills not well represented in your resume. Major gaps: ${topMissing}.`
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-R2JVKIFT.js.map
1621
+ //# sourceMappingURL=chunk-KRJMZ2RQ.js.map