1.5 KiB
1.5 KiB
description, agent, subtask
| description | agent | subtask |
|---|---|---|
| Initialize conductor context — read product docs, verify structure, report readiness | tier1-orchestrator | true |
/conductor-setup
Bootstrap the session with full conductor context. Run this at session start.
Steps
-
Read Core Documents:
conductor/index.md— navigation hubconductor/product.md— product visionconductor/product-guidelines.md— UX/code standardsconductor/tech-stack.md— technology constraintsconductor/workflow.md— task lifecycle (skim; reference during implementation)
-
Check Active Tracks:
- List all directories in
conductor/tracks/ - Read each
metadata.jsonfor status - Read each
plan.mdfor current task state - Identify the track with
[~]in-progress tasks
- List all directories in
-
Check Session Context:
- Read
TASKS.mdif it exists — check for IN_PROGRESS or BLOCKED tasks - Read last 3 entries in
JOURNAL.mdfor recent activity - Run
git log --oneline -10for recent commits
- Read
-
Report Readiness: Present a session startup summary:
## Session Ready **Active Track:** {track name} — Phase {N}, Task: {current task description} **Recent Activity:** {last journal entry title} **Last Commit:** {git log -1 oneline} Ready to: - `/conductor-implement` — resume active track - `/conductor-status` — full status overview - `/conductor-new-track` — start new work
Important
- This is READ-ONLY — do not modify files