resuml 1.19.0 → 1.19.2
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 +22 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
---
|
|
16
16
|
|
|
17
|
-
##
|
|
17
|
+
## Three ways to use it
|
|
18
18
|
|
|
19
19
|
### 🌐 [resuml.app](https://resuml.app) — the web app
|
|
20
20
|
|
|
@@ -24,7 +24,25 @@ Free, open source, no signup. Your resume data stays in your browser — we don'
|
|
|
24
24
|
|
|
25
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
|
+
|
|
29
|
+
```bash
|
|
30
|
+
claude mcp add resuml -- npx resuml mcp
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
That registers resuml for the current project. Add `--scope user` to make it available across all projects:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
claude mcp add --scope user resuml -- npx resuml mcp
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Verify it's wired up:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
claude mcp list
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
**Or, for teams sharing the config via git**, create `.mcp.json` at the repo root:
|
|
28
46
|
|
|
29
47
|
```json
|
|
30
48
|
{
|
|
@@ -37,15 +55,13 @@ Add to your Claude Code config (`.claude.json` or via `claude mcp add`):
|
|
|
37
55
|
}
|
|
38
56
|
```
|
|
39
57
|
|
|
40
|
-
Then ask Claude things like:
|
|
58
|
+
Then ask Claude Code things like:
|
|
41
59
|
|
|
42
60
|
> "Tailor my resume at `resume.yaml` to this job description, hit ATS score ≥ 80, and render it with the stackoverflow theme."
|
|
43
61
|
|
|
44
62
|
Claude will generate the YAML, validate it, iterate until the score clears, and render the final HTML. See **[DOCS.md](DOCS.md#ai-agent-integration-mcp)** for all tools, resources, and prompts.
|
|
45
63
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
## Or use the CLI
|
|
64
|
+
### 💻 The CLI
|
|
49
65
|
|
|
50
66
|
```bash
|
|
51
67
|
npm install -g resuml
|