用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/MadAppGang/claude-code --skill help命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
Use when starting isolated feature work or before executing implementation plans. Manages full worktree lifecycle from creation through cleanup with safety checks and error recovery.
Configuration reference and troubleshooting for the statusline plugin — sections, themes, bar widths, and script architecture
Common agent patterns and templates for Claude Code. Use when implementing agents to follow proven patterns for Tasks integration, quality checks, and external model invocation via claudish CLI.
正在显示 SKILL.md
| name | help |
| description | Get help with Conductor - commands, usage examples, and best practices |
| version | 1.0.0 |
| tags | ["conductor","help","documentation","guide"] |
| keywords | ["help","guide","usage","commands","reference"] |
plugin: conductor updated: 2026-01-20
Conductor implements Context-Driven Development for Claude Code.
Context as a Managed Artifact: Your project context (goals, tech stack, workflow) is documented and maintained alongside your code. This context guides all development work.
Pre-Implementation Planning: Before coding, create a spec (WHAT) and plan (HOW). This ensures clear direction and traceable progress.
Safe Iteration: Human approval gates at key points. Git-linked commits for traceability. Easy rollback when needed.
Initialize Conductor for your project.
Create a new development track.
Execute tasks from your plan.
View project progress.
Git-aware logical undo.
conductor:setup to create context filesconductor:new-track to create your first trackconductor:implement to start workingconductor:status to see progressconductor:revert if you need to roll backconductor/
├── product.md # Project vision and goals
├── tech-stack.md # Technical preferences
├── workflow.md # Development procedures
├── tracks.md # Index of all tracks
└── tracks/
└── {track_id}/
├── spec.md # Requirements specification
├── plan.md # Hierarchical task plan
└── metadata.json
"Conductor not initialized"
Run conductor:setup to initialize the conductor/ directory.
"Track not found" Check tracks.md for available tracks. Track IDs are case-sensitive.
"Revert failed" Check for uncommitted changes. Commit or stash before reverting.
Use conductor:help anytime for this reference.
For issues, check the project documentation or file an issue.