Agent skill
track-manager
Manage Conductor tracks, phases, and tasks. Use when working with track status, updating task markers, or navigating between tracks.
Install this agent skill to your Project
npx add-skill https://github.com/pilotparpikhodjaev/conductor_cc/tree/main/skills/track-manager
SKILL.md
Track Manager Skill
Manage the lifecycle of Conductor tracks including status updates, task completion, and phase transitions.
Trigger Conditions
Use this skill when:
- Checking track status or progress
- Marking tasks as complete
- Transitioning between phases
- User mentions: "track status", "mark complete", "next task", "update plan"
Track Structure
conductor/
├── tracks.md # Master track list
└── tracks/
└── <track_id>/
├── spec.md # Requirements
├── plan.md # Phased tasks
└── metadata.json # Status, timestamps
Task Status Markers
| Marker | Status | Description |
|---|---|---|
[ ] |
Pending | Not started |
[~] |
In Progress | Currently working |
[x] |
Completed | Done (add commit SHA) |
Workflow Operations
Start a Task
# Before
- [ ] Implement user authentication
# After (mark in progress)
- [~] Implement user authentication
Complete a Task
# After completion (add commit SHA)
- [x] Implement user authentication <!-- abc1234 -->
Update tracks.md
When completing a phase, update conductor/tracks.md:
## Active Tracks
| Track ID | Type | Status | Progress |
| -------- | ------- | ----------- | --------- |
| auth-001 | feature | in_progress | Phase 2/3 |
Phase Transition Rules
- All tasks in phase must be
[x]before moving to next phase - Update
metadata.jsonwith completion timestamp - Create commit for phase completion
- Update
tracks.mdprogress column
Response Format
After track operations:
## Track Update
**Track**: [track_id]
**Operation**: [started/completed/updated]
**Phase**: [phase number] - [phase name]
**Progress**: [completed]/[total] tasks
**Next**: [next task description]
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
context-loader
Load project context efficiently for Conductor workflows. Use when starting work on a track, implementing features, or needing project context without consuming excessive tokens.
style-guide
Apply language-specific style guide rules to your code. Use when writing or reviewing code to ensure consistency with best practices.
edit-article
Edit and improve articles by restructuring sections, improving clarity, and tightening prose. Use when user wants to edit, revise, or improve an article draft.
obsidian-vault
Search, create, and manage notes in the Obsidian vault with wikilinks and index notes. Use when user wants to find, create, or organize notes in Obsidian.
setup-pre-commit
Set up Husky pre-commit hooks with lint-staged (Prettier), type checking, and tests in the current repo. Use when user wants to add pre-commit hooks, set up Husky, configure lint-staged, or add commit-time formatting/typechecking/testing.
handoff
Compact the current conversation into a handoff document for another agent to pick up.
Didn't find tool you were looking for?