Guides developers in formalizing repeated manual processes into reusable Skills (SKILL.md files) with appropriate complexity handling, including decision trees for simple/complex paths.
How this skill is triggered — by the user, by Claude, or both
Slash command
/universal-dev-standards:skill-builder [process description | 流程描述][process description | 流程描述]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **Language**: English | [繁體中文](../../locales/zh-TW/skills/skill-builder/SKILL.md) | [简体中文](../../locales/zh-CN/skills/skill-builder/SKILL.md)
Guides you from "I keep doing this manually" to a properly built Skill, with the right amount of process along the way.
A Skill records process knowledge. Memory records historical facts. When you notice yourself executing the same steps repeatedly, that's a Skill candidate.
New Skill needed?
├── Modifying existing Skill?
│ → Delta path: append ## MODIFIED / ## ADDED to existing SKILL.md
│ update version field → done
│
├── Answer these 4 questions (any "yes" → Complex):
│ 1. More than 7 steps?
│ 2. Branching logic between steps (if/else)?
│ 3. Requires knowledge from 3+ separate standards/decisions?
│ 4. Output directly affects sub-project source code?
│
├── All "no" → Simple path
│ → Fill Skill Brief (templates/SKILL-BRIEF-TEMPLATE.md)
│ → Create SKILL.md directly (no XSPEC needed)
│
└── Any "yes" → Complex path
→ Create XSPEC first → run /sdd
→ Return here after XSPEC Approved
Deprecating a Skill?
→ Add to SKILL.md frontmatter:
status: deprecated
deprecated_at: YYYY-MM-DD
deprecated_reason: "..."
superseded_by: "/new-skill" (if applicable)
→ Mark archived in SKILL-CANDIDATES.md
Before creating SKILL.md, decide where it belongs:
| Condition | Placement |
|---|---|
| Steps reference project-specific paths (e.g. TECH-RADAR.md, DEC-*.md) | Project: {project}/.claude/skills/ |
| Steps are universal (no project-specific paths) | UDS: skills/{name}/ + zh-TW locale |
Capture the repeated sequence:
Open your project's SKILL-CANDIDATES.md (copy from templates/SKILL-CANDIDATES.md if first time):
Answer the 4 judgment questions. Determine: Simple, Complex, or Delta.
Use templates/SKILL-BRIEF-TEMPLATE.md:
Run /sdd to create XSPEC. Return to Step 5 after XSPEC is Approved.
Identify which sections of the existing SKILL.md change.
Add ## MODIFIED Requirements or ## ADDED Requirements at the end.
Generate SKILL.md from the Brief or XSPEC:
name, scope, description, allowed-tools{project}/.claude/skills/{name}/SKILL.mdMark the candidate row: trigger ✅, Skill column filled.
feat(skills): Add /{skill-name} skill. 新增 /{skill-name} Skill。
{English description, 1-2 lines}
{Chinese description, 1-2 lines}
Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
After completing all steps, verify:
SKILL-CANDIDATES.md updated (trigger ✅, Skill name filled)SKILL.md created with complete frontmatter (name/scope/description/allowed-tools)status: deprecated in frontmatternpx claudepluginhub asiaostrich/universal-dev-standards --plugin universal-dev-standardsCreates new skills from the user's repeating patterns via an interview-driven process: discovers the task, analyzes failure modes, generates a SKILL.md, installs it, tests it, and teaches usage.
Creates a SKILL.md file following the Agent Skills open standard (agentskills.io). Covers frontmatter schema, section structure, Expected/On failure pairs, validation checklists, and registry integration.
Creates new skills or modifies existing ones by packaging workflows into reusable skill format. Uses TDD-style validation to ensure skills are correctly activated.