用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill conductor命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | conductor |
| description | | Use when this capability is needed. |
Measure twice, code once.
Conductor enables context-driven development by:
Conductor now supports parallel task execution for eligible phases:
/conductor-newtrack, tasks are analyzed for parallelization potential<!-- execution: parallel --> annotation<!-- files: ... --> for exclusive file ownership<!-- depends: ... --> annotation## Phase 1: Core Setup
<!-- execution: parallel -->
- [ ] Task 1: Create auth module
<!-- files: src/auth/index.ts, src/auth/index.test.ts -->
- [ ] Task 2: Create config module
<!-- files: src/config/index.ts -->
- [ ] Task 3: Create utilities
<!-- files: src/utils/index.ts -->
<!-- depends: task1 -->
Task() for independent tasksparallel_state.json for completionWhen this skill activates, load these files to understand the project:
conductor/product.md - Product vision and goalsconductor/tech-stack.md - Technology constraintsconductor/workflow.md - Development methodology (TDD, commits)conductor/tracks.md - Current work statusImportant: Conductor commits locally but never pushes. Users decide when to push to remote.
For active tracks, also load:
conductor/tracks/<track_id>/spec.mdconductor/tracks/<track_id>/plan.mdBeads integration is always attempted for persistent task memory. If bd CLI is unavailable or fails, the user can choose to continue without it.
Before using ANY bd command, you MUST verify:
bd CLI is installed: which bd returns a pathconductor/beads.json exists AND has "enabled": true# Check availability - run this before any bd command
if which bd > /dev/null 2>&1 && [ -f conductor/beads.json ]; then
BEADS_ENABLED=$(cat conductor/beads.json | grep -o '"enabled"[[:space:]]*:[[:space:]]*true' || echo "")
if [ -n "$BEADS_ENABLED" ]; then
# Beads is available and enabled - use bd commands
fi
fi
bd commandsbd ready instead of manual task selection/conductor-refreshbd CLI detected during setup, offer integration| User Intent | Command |
|---|---|
| "Set up this project" | /conductor-setup |
| "Create a new feature" | /conductor-newtrack [desc] |
| "Start working" / "Implement" | /conductor-implement [id] |
| "What's the status?" | /conductor-status |
| "Undo that" / "Revert" | /conductor-revert |
| "Check for issues" | /conductor-validate |
| "This is blocked" | /conductor-block |
| "Skip this task" | /conductor-skip |
| "This needs revision" / "Spec is wrong" | /conductor-revise |
| "Save context" / "Handoff" / "Transfer to next section" | /conductor-handoff |
| "Archive completed" | /conductor-archive |
| "Export summary" | /conductor-export |
| "Docs are outdated" / "Sync with codebase" | /conductor-refresh |
Source: ForceInjection/domain-driven-design-skills — distributed by TomeVault.