Other

/orchestrator-status

Ecosystem-wide status collection and orientation. Use when returning to work, starting a new session, when the user says "where were we", "what's the status", "catch me up", "what happened", or any time you need to understand the current state across projects. This is NOT the repo-scoped /catchup (git diffs) — this is the orchestrator-level "what's happening across the whole ecosystem." Also use when you need to prepare a research prompt — this skill gathers all the context needed to write a detailed, self-contained prompt for a research agent.

$ golems-cli skills install orchestrator-status
Experimental

Updated 2 weeks ago

Quickly orient yourself across the entire golems ecosystem: what's active, what's done, what's blocked, what needs research. This replaces the pattern of reading random files and hoping for context.

When to Use

  • Session start — "where were we?"
  • Returning from a break — "what happened while I was gone?"
  • Before delegating — gather context for a research/worker prompt
  • User gives vague direction — need to figure out what they mean from ecosystem state
  • Cross-project coordination — need to know state of multiple repos

This is the ORCHESTRATOR-level catchup. For single-repo git status, use /catchup.

The Flow (5 steps, ~60 seconds)

Step 1: BrainLayer Context (5 seconds)

brain_recall(mode="context")          # What's happening right now
brain_recall(mode="summary")          # High-level ecosystem state

If the user mentioned a specific topic, also:

brain_search("<topic>")               # What do we know about this
brain_search("<topic> decision")      # Past decisions on this

Step 2: Roadmap (10 seconds)

Read the single source of truth:

Read ~/Gits/orchestrator/roadmap/README.md

Focus on the "What's Next?" section at the top. This tells you:

  • Active wave and tracks
  • Which tracks are DONE vs IN PROGRESS vs BLOCKED
  • What's queued for next wave

Step 3: Latest Commits (10 seconds)

Check git log across active repos. Only check repos mentioned in the active wave:

cd ~/Gits/golems && git log --oneline -5
cd ~/Gits/brainlayer && git log --oneline -5
cd ~/Gits/orchestrator && git log --oneline -5

Step 4: Active Collabs (15 seconds)

Read the collab files for the current wave:

Glob ~/Gits/orchestrator/collab/wave*-*.md

Read each one — focus on: Status line, last message, blockers. Collabs are the communication channel between agents.

Step 5: Design Doc (20 seconds)

Read the design doc for the most relevant active track. The roadmap's "Design Docs Index" section links them all. Only read the first 40-60 lines (problem + schema) — don't read the whole thing unless needed.

Output: Status Synthesis

After the 5 steps, synthesize into a brief status report:

**Wave N Status:**
| Track | Status | Latest | Next |
|-------|--------|--------|------|
| A: ... | DONE/IN PROGRESS/BLOCKED | PR #X / commit | What's next |

**Active design doc:** designs/X.md — [one line summary of where it is]
**Blockers:** [any blockers from collabs]
**Research needed:** [if any track needs research, describe what]