Skill 詳細

build-tailored-resume

Tailors resumes to job descriptions and generates validated DOCX output.

一致度直接一致履歴書の作成 向けにレビュー済み
出典sankaiai/ats-optimized-resume-agent-skill外部ソース
報告インストール数8人気度の参考値

使用前に確認

自動レビューは関連性のみを確認し、安全性や推奨を保証しません。使用前に出典の説明を読んでください。

保存された出典プレビュー

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 で全文を読む (外部ページ)
関連情報

関連する仕事