feat(conductor): add track manager command for lifecycle management

Add /conductor:manage command with comprehensive track lifecycle operations:
- Archive completed tracks with reason tracking
- Restore archived tracks to active state
- Delete tracks permanently with safety confirmations
- Rename track IDs with full reference updates
- Cleanup orphaned artifacts and stale tracks
- Interactive menu when invoked without arguments

Also includes:
- Add Archived Tracks section to tracks.md template
- Update README with manage command documentation
- Bump version to 1.1.0
- Format files with prettier
This commit is contained in:
Seth Hobson
2026-01-16 12:02:24 -05:00
parent d750cf0e44
commit e5255782cd
9 changed files with 1167 additions and 5 deletions

View File

@@ -30,6 +30,7 @@ By treating context as a managed artifact alongside code, teams establish a pers
| `/conductor:implement` | Execute tasks from the plan following workflow rules |
| `/conductor:status` | Display project progress overview |
| `/conductor:revert` | Git-aware undo by track, phase, or task |
| `/conductor:manage` | Manage track lifecycle: archive, restore, delete, rename, and cleanup |
## Generated Artifacts
@@ -44,6 +45,7 @@ conductor/
├── setup_state.json # Resumable setup state
├── code_styleguides/ # Language-specific conventions
└── tracks/
├── _archive/ # Archived tracks
└── <track-id>/
├── spec.md # Requirements specification
├── plan.md # Phased task breakdown
@@ -96,6 +98,16 @@ Undo work by logical unit:
- Git-aware: finds all associated commits
- Requires confirmation before execution
### 6. Manage (`/conductor:manage`)
Manage track lifecycle:
- Archive completed tracks with reason tracking
- Restore archived tracks to active state
- Delete tracks permanently (with safeguards)
- Rename track IDs with reference updates
- Cleanup orphaned artifacts and stale tracks
## Installation
```bash