一键导入
claude-pilot-standards
Author reference for claude-pilot components. Skills, commands, agents, rules documentation patterns. VIBE coding compliance.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Author reference for claude-pilot components. Skills, commands, agents, rules documentation patterns. VIBE coding compliance.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Coordinate specialized teammates in Agent Teams for execution, review, and planning. Delegate mode mandatory with TaskCompleted/TeammateIdle hooks.
Plan completion workflow - archive plan, verify todos, create git commit, push with retry. Use for finalizing completed plans.
Plan confirmation workflow - extract plan from conversation, create file, auto-review with Interactive Recovery. Use for confirming plans after /00_plan.
Plan execution workflow - parallel SC implementation, worktree mode, verification patterns, GPT delegation. Use for executing plans with TDD + Ralph Loop.
Use when blocked, stuck, or needing fresh perspective. Consults GPT experts via Codex CLI with graceful fallback.
Coordinate independent teammates concurrently in Agent Teams for 50-70% speedup. Launch multiple teammates simultaneously.
| name | claude-pilot-standards |
| description | Author reference for claude-pilot components. Skills, commands, agents, rules documentation patterns. VIBE coding compliance. |
Purpose: Author reference for creating plugin components Target: Contributors creating skills, commands, agents
| Component | Location | Purpose | Size Limit |
|---|---|---|---|
| Skills | .claude/skills/{name}/ | Auto-discoverable capabilities | SKILL: 200, REF: 300 |
| Commands | .claude/commands/ | Slash commands | 150 lines |
| Agents | .claude/agents/ | Specialized configs | 200 lines |
| Rules | .claude/rules/ | Delegation patterns | 200 lines |
Structure: {name}/SKILL.md (≤200) + REFERENCE.md (≤300)
Required: name, description with trigger keywords
Examples: @.claude/skills/tdd/SKILL.md | @.claude/skills/vibe-coding/SKILL.md
Structure: Single .md with description frontmatter
Required: description with action verbs + scenarios
Examples: @.claude/commands/00_plan.md | @.claude/commands/02_execute.md
Required: name, description, model, tools
Examples: @.claude/agents/coder.md | @.claude/agents/plan-reviewer.md
Structure: core/, delegator/, documentation/
Examples: @.claude/rules/core/workflow.md | @.claude/rules/delegator/triggers.md
| Target | Limit |
|---|---|
| Function | ≤50 lines |
| File | ≤200 lines |
| Nesting | ≤3 levels |
Principles: SRP, DRY, KISS, Early Return
Full: @.claude/skills/vibe-coding/SKILL.md
Format: @.claude/{path}/{file}
Best: Absolute paths, specific files, descriptive text
Skill: name, description (trigger keywords)
Command: description (action verbs + scenarios)
Agent: name, description, model, tools
Methodology extraction:
> **Methodology**: @.claude/skills/tdd/SKILL.md
MANDATORY marker:
> **⚠️ MANDATORY ACTION**: YOU MUST {action} NOW
Completion markers: <AGENT_COMPLETE>, <AGENT_BLOCKED>
Internal: @.claude/skills/claude-pilot-standards/REFERENCE.md | @.claude/skills/claude-pilot-standards/TEMPLATES.md | @.claude/skills/claude-pilot-standards/EXAMPLES.md
External: Claude Code Best Practices