Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill conductor명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| 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.