一键导入
write-skill
Use when creating or updating Claude Code skills. Applies Anthropic best practices and persuasion principles for effective skill authoring.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when creating or updating Claude Code skills. Applies Anthropic best practices and persuasion principles for effective skill authoring.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when you need to delegate implementation tasks to specialized agents (Developer, QA, Architect, DevOps, Scribe) as the Team Lead. Activates when orchestrating the Bounce phase — delegating stories, monitoring reports, merging completed work, consolidating sprint results, and generating product documentation. Uses git worktrees for story isolation. Works with Claude Code subagents natively; file-based handoffs for other tools.
Use when recording project-specific mistakes, gotchas, or hard-won knowledge. Also activates proactively when a mistake pattern is detected during work.
Use when creating, modifying, or navigating V-Bounce Engine planning documents. Trigger on any request to create a charter, roadmap, epic, story, sprint plan, or risk registry — or when the user asks to update, refine, decompose, or transition documents between phases. Also trigger when the user asks about work status, backlog, what's next, what's blocked, or wants to plan/start a sprint. This skill manages the full document lifecycle from Charter through Sprint Planning and execution.
Use when the V-Bounce Engine framework needs to evolve based on accumulated agent feedback. Activates after sprint retros, when recurring friction patterns emerge, or when the user explicitly asks to improve the framework. Reads Process Feedback from sprint reports, analyzes FLASHCARDS.md for automation candidates, identifies patterns, proposes specific changes to templates, skills, brain files, scripts, and agent configs with impact levels, and applies approved changes. This is the system's self-improvement loop.
Use when you need to understand document relationships, check what's affected by a change, find blocked documents, or assess the state of planning documents. Provides structured awareness of the full product document graph without reading every file. Auto-loaded during planning sessions.
**Codebase Cleanliness Standard**: Enforces clean file organization in any codebase. Before creating ANY file, classify it by intent—deliverables go to the project tree, working artifacts go to `/temporary/`. Before committing, review `git diff` to catch misplaced files. Use this skill whenever creating, moving, or committing files. Works with all languages and frameworks. The `/temporary/` folder is git-ignored so working artifacts never get merged. ALWAYS consult this skill when writing files to the repo—it prevents clutter from debug scripts, scratch analysis, throwaway tests, and other AI working artifacts from polluting the codebase.
| name | write-skill |
| description | Use when creating or updating Claude Code skills. Applies Anthropic best practices and persuasion principles for effective skill authoring. |
Creates or updates Claude Code skills following Anthropic's best practices and tested persuasion principles.
Core principle: No skill without a failing test first. RED-GREEN-REFACTOR for process documentation.
/write-skill OR /write-skill [skill-name] OR when creating/modifying any .claude/skills/ content.
When using this skill, state: "I'm using the write-skill skill to author an effective skill definition."
Before writing, establish that the skill is needed:
Create the skill at .claude/skills/[name]/SKILL.md with this structure:
---
name: [kebab-case-name]
description: [Use when... — must start with triggering conditions, not workflow summary]
---
Structure requirements:
name and description onlySize constraints:
Use the right language patterns based on skill type:
| Skill Type | Use | Avoid |
|---|---|---|
| Discipline-enforcing (TDD, verification) | Authority + Commitment + Social Proof | Liking, Reciprocity |
| Guidance/technique | Moderate Authority + Unity | Heavy authority |
| Collaborative | Unity + Commitment | Authority, Liking |
| Reference | Clarity only | All persuasion |
Effective patterns:
Example — discipline skill:
✅ Write code before test? Delete it. Start over. No exceptions.
❌ Consider writing tests first when feasible.
Techniques (step-by-step methods):
Patterns (mental models):
References (API docs/guides):
Before marking complete: