Files
manual_slop/.opencode/commands/conductor-status.md

1.2 KiB

description, agent, subtask
description agent subtask
Display full status of all conductor tracks and tasks tier1-orchestrator 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