Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add ssmurfgg04-gif/context-m --skill resume-buildergit clone --depth 1 https://github.com/ssmurfgg04-gif/context-mWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/ssmurfgg04-gif/context-m/resume-builder)<a href="https://agentmods.dev/skills/ssmurfgg04-gif/context-m/resume-builder"><img src="https://agentmods.dev/badge/skills/ssmurfgg04-gif/context-m/resume-builder/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/ssmurfgg04-gif/context-m/resume-builder"><img src="https://agentmods.dev/badge/skills/ssmurfgg04-gif/context-m/resume-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00160 | $0.01613 |
| Opus 5 | $0.00080 | $0.00807 |
| Sonnet 5 | $0.00032 | $0.00323 |
| Haiku 4.5 | $0.00016 | $0.00161 |
Grade A, and why
resume-builder scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 134 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Resume Builder(简历生成与优化)
这个 skill 干三件事:
- 结构化生成:从用户经历产出一份符合中文求职市场审美的简历
- STAR 法则改写:把"参与了 X"这种弱句子,改写成"通过 X 实现 Y,结果 Z"
- ATS 关键词优化 + 多模板导出:保证简历能过自动筛选,并支持 docx/pdf/md
不做:JD 定向改写(那是 jd-resume-tailor 的事,请在那里做"针对某 JD 改简历")
何时触发
- "帮我写一份简历"
- "我的简历太弱了 / 没有亮点 / 看起来不专业"
- "把这段经历用 STAR 改一下"
- "简历里关键词够不够"
- "导出 PDF / docx 简历"
- 用户上传简历但没明确说"针对某 JD 改" → 触发本 skill;如果说了"针对 X 公司 / X 岗位改" → 调用 jd-resume-tailor
工作流
Step 1: 摸清简历当前状态
如果用户有简历文件(.pdf / .docx / .md / .txt):
- pdf 走 pdf skill 解析
- docx 走 docx skill 解析
- 提取出:基本信息、教育、工作经历、项目经历、技能、其他
如果用户没有简历:
- 用 AskUserQuestion 收集信息(参考
references/intake_questions.md里的问题清单) - 一次问 3~4 个问题,分轮收集,避免劝退
Step 2: 选模板
读取 references/templates/ 决定结构:
- 互联网产品 / 运营 / PM →
templates/internet.md - 技术 / 研发 / 数据 →
templates/tech.md - 金融 / 咨询 / 商科 →
templates/finance.md - 通用 / 跨行业 →
templates/general.md
如果用户没指定方向,用通用模板,但询问一句:"你下一步主要往什么方向投?我可以用更适合那个方向的版式。"
Step 3: 用 STAR 改写每段经历
读取 references/star_rewrite_guide.md,对每条工作 / 项目经历做 STAR 改写。
STAR 不是死板的四段式,而是确保每条 bullet 都有:
- 背景信号(一句话点出问题大小或情境)
- 动作(你具体做了什么,要有动词)
- 结果(数字 / 百分比 / 排名 / 规模)
如果用户提供的信息里没有数字,要主动追问:"这个项目用户量大概是多少?""这个优化大概提了多少?记不准的话给个量级也行。"
Step 4: ATS 关键词检查
调用脚本:
python scripts/ats_check.py --resume <resume.md> \
--industry internet \
[--jd <jd.txt>]
脚本会:
- 抽取简历里的关键词
- 对照行业关键词库(来自 job-intent-tracker 或本 skill 的
references/keywords/) - 输出"已覆盖 / 建议补充"两个清单
- 给出 ATS 友好度评分(字体单一性、表格使用、特殊符号、图片等)
ATS 友好的硬规则:
- 不要用 word 表格放经历(很多 ATS 解析不了)
- 不要把日期放在装饰性图片里
- 不要写两栏布局(有些 ATS 会按列读,导致顺序混乱)
- 不要插图标 / emoji 在标题里
- 字体用宋体 / 思源宋体 / Arial / Helvetica 之一
Step 5: 多格式导出
读取 references/export_guide.md,按用户需求选择:
docx 导出(最通用,国内 HR 优先要 docx):
- 调用 docx skill
- 用
assets/resume_template.docx作为模板(如果存在)
pdf 导出(最终投递版):
- 推荐流程:先 docx → 再用 word/libreoffice 转 pdf
- 直接生成 pdf 用 reportlab 比较丑,不推荐
- 调用 pdf skill 做后处理(加密 / 元数据清理)
markdown 导出(备份 + GitHub):
- 直接写 .md 文件即可
默认行为:除非用户指定,同时输出 docx + md 两个版本。
What ships with it
12 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/export_guide.md 1.9 KB
- references/intake_questions.md 2.0 KB
- references/keywords/finance.txt 380 B
- references/keywords/general.txt 209 B
- references/keywords/internet.txt 374 B
- references/keywords/tech.txt 539 B
- references/star_rewrite_guide.md 2.8 KB
- references/templates/finance.md 2.8 KB
- references/templates/general.md 1.8 KB
- references/templates/internet.md 1.5 KB
- references/templates/tech.md 2.2 KB
- scripts/ats_check.py 9.1 KB runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 134 lines · 160 tokens per session scan A 65b183eb8b7b
resume-builder is a skill published in the GitHub repository ssmurfgg04-gif/context-m (2 stars, last pushed yesterday), licensed Apache-2.0. It adds 160 tokens to every session and 1,613 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
ai-style
A Chinese-language writing guide for producing or revising reader-facing text such as product announcements, public-account articles, emails, and README files. It focuses on reducing patterns that make writing sound machine-generated.
triage
A task-routing guide that identifies goals, dependencies, and acceptance conditions before work begins. It orders work as research, calculation or execution, and writing.
coding
A coding guide for writing and running Python programs in a sandbox. It requires scripts to be small and reproducible, with their actual output or errors reported.
setup-open-index
Install and configure Open Index as the read/write context layer for a domain-specialized agent. Use when setting up a legal, marketing, customer support, sales, infrastructure, or other domain agent with Open Index over MCP.
build-personal-brain
Create, resume, validate, connect, or maintain a private cross-project memory for AI assistants. Use when a person asks to build a personal memory from local work folders and past assistant conversations, continue an interrupted memory audit, connect an existing memory to another local assistant, verify that the…
codex-memory-guard
Guard task boundaries and preserve confirmed critical project state across Codex compaction. Use when a user wants topic-switch guidance, write-through critical memory, compact HANDOFF checkpoints, PreCompact and compact-resume hooks, four-layer Markdown memory initialization, or memory workflow auditing.