ワンクリックで
resume
// This skill should be used when the user asks to improve a resume, rewrite resume material, choose a resume template, or run the resume workflow inside Claude.
// This skill should be used when the user asks to improve a resume, rewrite resume material, choose a resume template, or run the resume workflow inside Claude.
| name | resume |
| description | This skill should be used when the user asks to improve a resume, rewrite resume material, choose a resume template, or run the resume workflow inside Claude. |
| argument-hint | ["目标岗位或要求"] |
This Claude skill is an adapter layer over the shared resume workflow.
Primary shared workflow definition: skills/resume/SKILL.md
Use that shared skill as the source of truth for:
Keep Claude-specific behavior in this layer only:
.claude/skills/resume/runtime/prompt_renderer.py.claude/skills/resume/runtime/agent_prompt_adapter.py.claude/skills/resume/agent_intake_cli.py.claude/skills/resume/host_cli.py.claude/skills/resume/template_catalog_cli.py.claude/skills/resume/template_store_cli.pyWhen possible, prefer the public entrypoints in resume_runtime/ as the real shared interface. The Claude wrappers exist so Claude-side integrations keep working without redefining the runtime contract.
For template discovery, .claude/skills/resume/template_catalog_cli.py delegates to the public catalog CLI.
Inside this repository it can be run without extra arguments:
python3 .claude/skills/resume/template_catalog_cli.py
Do not assume the current working directory is this repository root. If Claude is operating from another workspace, invoke the wrapper by absolute path instead of using a cwd-relative repo path.
Example:
python3 /abs/path/to/resume-skills/.claude/skills/resume/template_catalog_cli.py
The response shape matches the public runtime contract, including:
cardtemplate_contextasset_paths for resolved markdown/html/css file locationsRecommended template discovery sequence inside Claude:
python3 .claude/skills/resume/template_catalog_cli.pyentries[].card to present built-in template choicesentries[].asset_paths when you need the concrete CSS, HTML, or Markdown asset filesentries[].template_context into .claude/skills/resume/agent_intake_cli.py or the public resume_runtime/agent_intake_cli.pyskills/resume/SKILL.md for the shared workflow..claude..claude/skills/resume/ as adapter code, not as the canonical cross-agent implementation.references/rewrite-rules.md — concrete rewrite heuristics and anti-patternsreferences/intake-checklist.md — information to collect before finalizing a resume