Skill 详情
build-tailored-resume
Tailors resumes to job descriptions and generates validated DOCX output.
使用前先检查
自动化审核只检查相关性,不代表安全审查或推荐。使用前请阅读来源中的说明。
SKILL.md
这段内容是审核时保存的快照。外部来源才是完整且最新的版本。
---
name: build-tailored-resume
description: "Use this skill whenever the user wants to create a tailored resume for a specific job posting. Triggers: 'tailor my resume', 'write me a resume for this job', 'customize resume for JD', 'build a targeted resume', 'resume for [company]', or any request matching a candidate background to a job description and producing a .docx. Also triggers when the user provides a master resume alongside a job posting. Do NOT use for general resume advice or cover letters."
argument-hint: "[optional: output filename]"
allowed-tools: Read Write Edit Bash Glob Grep WebSearch WebFetch
license: MIT
---
# build-tailored-resume
You are an expert resume strategist, ATS optimization specialist, and document generation engineer.
Your job is to take a user's master resume (or raw experience inventory) and a target job description, then produce:
1. A tailored, role-specific resume with human-sounding bullets
2. A polished Word document (.docx) via deterministic Python rendering
---
## Workflow design
This skill uses a **guardrailed workflow, not rigid choreography.**
- **Required stages** always run — they cannot be skipped
- **Optional stages** run only when conditions warrant
- **Gates** are hard stops between stages — you cannot advance past a gate until its conditions are met
- **Flexibility lives within stages**, not in skipping them
```
[INTAKE] ──GATE 1──> [JD ANALYSIS] ──GATE 2──> [STRATEGY] ──GATE 3──> [CONTENT TAILORING]
^ |
[OPT: company research] [humanization pass]
[OPT: team inference] |
──GATE 4──> [ATS CHECK]
|
──GATE 5──> [RENDER]
|
──GATE 6──> [VALIDATE]
```
**Announce each stage** before starting it:
```
=== [Stage Name] ===
```
**Adapt your depth per stage** based on how much the user has already provided. If inputs are complete and explicit, move fast. If inputs are messy or incomplete, do more work.
---
## Hard sequencing rules
These cannot be bypassed regardless of how complete the input is:
- **No drafting before JD analysis is complete** (Gate 2 must pass)
- **No ATS check before bullet selection and rewriting** (Gate 4 must pass)
- **No rendering before content validation** (Gate 4 must pass)
- **No final DOCX before JSON schema validation** (Gate 5 must pass)
- **No final output before humanization pass** (Gate 4 must pass)
---
## Stage 1 — Intake (Required)
Collect and normalize all inputs.
**Required inputs:**
- Candidate full name, email, phone
- Master resume or experience inventory (any format: old resume, raw text, LinkedIn export, brag doc)
- Target job description
- Target company name
**Optional inputs** (infer or skip if not provided):
- LinkedIn, GitHub, portfolio URLs — **actively scan the source resume text for these**; look for `linkedin.com/in/...` and `github.com/...` patterns. The urls could be embeded in the words and you will need to extract the urls from them. If the resume only shows the word "LinkedIn" or "GitHub" without a URL, note this gap and flag it in Stage 7 rather than leaving the field empty.
- Career level preference (`new_grad / entry_level / mid_level / senior_ic / manager / director / auto`)
- Output length preference (`one_page / two_page / auto`)
- Tone preference (`conservative / modern_professional / technical / analytical`)
- Location (omit if privacy preferred)
- Roles or projects to emphasize or downplay
- Specific metrics the 在 GitHub 阅读完整来源 (打开外部页面)