WIP: boostrapping opencode for use with at least GLM agents

This commit is contained in:
2026-03-04 15:56:00 -05:00
parent 01b3c26653
commit c17698ed31
17 changed files with 1087 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
---
description: Display full status of all conductor tracks and tasks
agent: tier1-orchestrator
subtask: true
---
# /conductor-status
Display comprehensive status of the conductor system.
## Steps
1. **Read Track Index:**
- `conductor/tracks.md` — track registry
- `conductor/index.md` — navigation hub
2. **Scan All Tracks:**
For each track in `conductor/tracks/`:
- Read `metadata.json` for status and timestamps
- Read `plan.md` for task progress
- Count completed vs total tasks
3. **Check TASKS.md:**
- List IN_PROGRESS tasks
- List BLOCKED tasks
- List pending tasks by priority
4. **Recent Activity:**
- `git log --oneline -5`
- Last 2 entries from `JOURNAL.md`
5. **Report Format:**
```
## Conductor Status
### Active Tracks
| Track | Status | Progress | Current Task |
|-------|--------|----------|--------------|
| ... | ... | N/M tasks | ... |
### Task Registry (TASKS.md)
**In Progress:**
- [ ] Task description
**Blocked:**
- [ ] Task description (reason)
### Recent Commits
- `abc1234` commit message
### Recent Journal
- YYYY-MM-DD: Entry title
### Recommendations
- [Next action suggestion]
```
## Important
- This is READ-ONLY — do not modify files