From conductor
Manage Conductor tracks, phases, and tasks including status updates, task completion markers, and phase transitions. Use for checking track status, marking tasks complete, or navigating between phases.
How this skill is triggered — by the user, by Claude, or both
Slash command
/conductor:track-managerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Manage the lifecycle of Conductor tracks including status updates, task completion, and phase transitions.
Manage the lifecycle of Conductor tracks including status updates, task completion, and phase transitions.
Use this skill when:
conductor/
├── tracks.md # Master track list
└── tracks/
└── <track_id>/
├── spec.md # Requirements
├── plan.md # Phased tasks
└── metadata.json # Status, timestamps
| Marker | Status | Description |
|---|---|---|
[ ] | Pending | Not started |
[~] | In Progress | Currently working |
[x] | Completed | Done (add commit SHA) |
# Before
- [ ] Implement user authentication
# After (mark in progress)
- [~] Implement user authentication
# After completion (add commit SHA)
- [x] Implement user authentication <!-- abc1234 -->
When completing a phase, update conductor/tracks.md:
## Active Tracks
| Track ID | Type | Status | Progress |
| -------- | ------- | ----------- | --------- |
| auth-001 | feature | in_progress | Phase 2/3 |
[x] before moving to next phasemetadata.json with completion timestamptracks.md progress columnAfter track operations:
## Track Update
**Track**: [track_id]
**Operation**: [started/completed/updated]
**Phase**: [phase number] - [phase name]
**Progress**: [completed]/[total] tasks
**Next**: [next task description]
npx claudepluginhub tenxengineer/conductor_ccManages Conductor tracks, phases, and tasks: status updates, task completion, phase transitions. Enforces Evaluate-Loop workflow for plan/execute evaluations.
Guides creation, management, and completion of Conductor tracks for features, bugs, and refactors. Covers spec.md, plan.md files, lifecycle operations, status markers, and tracks.md registry.
Guides creation, management, and completion of Conductor tracks for features, bugs, refactors. Covers spec.md, plan.md, lifecycle stages, ID format, and tracks.md registry.