Components & Reference

July 25, 2026 · View on GitHub

Detailed component inventory and architecture reference for Session Orchestrator. The README keeps the landing page lean; the full inventory lives here.

Repository anatomy

flowchart LR
    USER([Operator]) -->|invokes /session| COORD[Coordinator]
    COORD -->|reads| SK[Skills<br/>46 user-facing]
    COORD -->|invokes| CMD[Commands<br/>25 slash-cmds]
    COORD -->|dispatches| AG[Agents<br/>15 typed sub-agents]
    AG -.->|parallel waves| W1[code-implementer]
    AG -.-> W2[test-writer]
    AG -.-> W3[security-reviewer]
    AG -.-> W4[session-reviewer]
    HOOK[Hooks<br/>10 event types] -.->|enforce scope + commands| COORD
    COORD -->|writes| METRIC[.orchestrator/metrics/<br/>sessions · learnings · events]

Skills (46 user-facing)

  • Lifecycle: session-start, session-plan, wave-executor, session-end, quality-gates, using-orchestrator
  • Authoring: skill-creator, mcp-builder, hook-development, frontmatter-guard, contract-version-bump
  • Planning & discovery: plan, discovery, repo-audit, brainstorm, write-executable-plan, debug, claude-md-drift-check, grill
  • Architecture: architecture, domain-model, ubiquitous-language
  • Cross-session: evolve, convergence-monitoring, memory-cleanup, reconcile, sunset-review, eval
  • Vault & docs: vault-sync, vault-mirror, daily, docs-orchestrator
  • Ecosystem: bootstrap, gitlab-ops, gitlab-portfolio, ecosystem-health, mode-selector, autopilot, dispatcher, spinout, npm-publish
  • Testing: test-runner, playwright-driver, peekaboo-driver
  • Content review: persona-panel
  • Visualization: tmux-layout (opt-in operator side-channel — ADR-0007)

Commands (25)

/session, /go, /close, /discovery, /plan, /evolve, /bootstrap, /harness-audit, /autopilot, /autopilot-multi, /repo-audit, /test, /memory-cleanup, /portfolio, /brainstorm, /debug, /persona-panel, /grill, /sunset-review, /templates-ack, /dispatcher, /reconcile, /spinout, /eval, /contract-version-bump.

Agents (15 typed sub-agents)

code-implementer, test-writer, ui-developer, db-specialist, security-reviewer, session-reviewer, docs-writer, architect-reviewer, qa-strategist, analyst, ux-evaluator, dialectic-deriver, memory-proposal-collector, skill-applied-judge, eval-judge.

Custom agents live in agents/ (plugin) or .claude/agents/ (project) as Markdown with YAML frontmatter. The authoring spec — required fields, body conventions, validation commands — is in agents/AGENTS.md, following the canonical code.claude.com/sub-agents contract.

Hook event types (10)

The full Claude wiring uses: SessionStart (banner + init), SessionEnd (close events), PreToolUse/Edit|Write (scope enforcement), PreToolUse/Bash (destructive-command guard + enforce-commands + templates-first + staging-fence + memory-propose audit), PostToolUse (edit validation + opt-in frontend-slop detection + loop-guard), Stop (session events), SubagentStop (telemetry), PostToolUseFailure (corrective context), PostToolBatch (wave signal + operator-steer), SubagentStart (telemetry), CwdChanged (cwd-change record).

Codex uses the curated six-event project subset SessionStart, PreToolUse, PostToolUse, SubagentStart, SubagentStop, and Stop. Claude-only events are not exposed there, and Claude Edit/Write handlers remain unwired until a real adapter translates Codex's canonical apply_patch payload. The manifest uses native ${PLUGIN_ROOT} while exporting CODEX_PLUGIN_ROOT plus SO_PLATFORM=codex for shared compatibility code.

Other surfaces

  • Output Styles (3): session-report, wave-summary, finding-report.
  • Policy & rules: .orchestrator/policy/blocked-commands.json (destructive-command rules); .claude/rules/parallel-sessions.md (PSA-001..PSA-004).
  • Codex: .codex-plugin/plugin.json (tracked +codex.<UTC timestamp> version), compatibility config, agent role definitions, and the public marketplace/add/list lifecycle implemented by scripts/codex-install.mjs. Every run refreshes via plugin add; hook trust remains an operator decision in a fresh task through /hooks.
  • Pi: package.json pi manifest, pi/extensions/session-orchestrator.ts bridge, hooks/hooks-pi.json, scripts/pi-install.mjs.
  • Scripts: deterministic CLI tools (parse-config, run-quality-gate, validate-wave-scope, validate-plugin, token-audit, autopilot) plus shared lib under scripts/lib/*.mjs, all covered by the vitest suite.

/harness-audit — Anthropic large-codebase rubric

scripts/harness-audit.mjs runs 9 deterministic categories / 38 checks over a repo and emits .orchestrator/metrics/audit.jsonl. Category 8 ("Large-Codebase Readiness") operationalises Anthropic's Claude Code large-codebase best-practices checklist — layered CLAUDE.md (or AGENTS.md), codebase-map presence, LSP/code-intelligence wiring, scoped test/lint commands, permissions.deny, and root-file leanness — as scored signals you can run on yourself and on consumer repos. Category 9 ("Skill-Health Surfacing") surfaces the #648 per-skill health pipeline — telemetry hygiene, scorer wiring, and an advisory-only verdict tally that never affects points; non-adoption always scores full points. These checks are intentionally orthogonal to repo-audit's baseline-compliance pass/fail; both surfaces ship.

Comparison vs. maestro-orchestrate

Both maestro-orchestrate and session-orchestrator coordinate multi-agent work in long-running AI coding sessions. They differ in scope and execution model:

Axissession-orchestratormaestro-orchestrate
Execution model5 typed waves (Discovery → Impl-Core → Impl-Polish → Quality → Finalization) with inter-wave quality gates and confidence-scored session-reviewer4-phase sequential model with parallel subagents
Runtime coverageClaude Code + Codex CLI + Cursor IDE + Pi (4)Gemini CLI + Claude Code + Codex + Qwen Code (4)
VCS integrationGitLab + GitHub (auto-detected); hook events + commands wire to bothRuntime-agnostic; VCS work delegated to user
Cross-session learningConfidence-scored entries surfaced at session-start; opt-in /evolve reviewSession archival without explicit learning extraction
Specialist agents15 typed agents39 specialist agents across design/impl/review/debugging/security/compliance

The two plugins are complementary rather than competing: session-orchestrator focuses on a single wave-based lifecycle with VCS + learning integration, while maestro-orchestrate optimises for multi-runtime parallel specialist delivery.