orchestrator-session

Spawn a subagent per phase and collect structured phase reports.

Updated Mar 1, 2026
One-click install
npx skills add https://github.com/pelchers/SessionSaver --skill orchestrator-session
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: orchestrator-session
Source: https://github.com/pelchers/SessionSaver/tree/main/.codex/skills/orchestrator-session
Command: npx skills add https://github.com/pelchers/SessionSaver --skill orchestrator-session

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Manage a long-running session by delegating each phase to a new subagent, while the current chat acts as the orchestrator.

Core Features & Use Cases

  • Persistent orchestrator that spins up a fresh subagent per phase.
  • Requires a structured poke back after phase completion, including:
    • Completed tasks summary
    • Files changed (tree snippet)
    • Validation results
    • Commit + push confirmation
    • Next-phase readiness
  • Uses templates and references to standardize phase reviews, history updates, and artifact generation.

Quick Start

Kick off the orchestrator with the initial phase and let it spawn subsequent subagents as each phase advances.

Frequently Asked Questions about orchestrator-session

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I coordinate a multi-phase workflow with isolated subagents?

A multi-phase workflow uses an orchestrator session that spawns a fresh subagent for each phase, collecting phase reports to maintain history and control transitions. The orchestrator delegates work while managing the overall session state.

What is a structured poke back in subagent orchestration?

In subagent orchestration, a structured poke back is a required response after a phase completes. It includes a completed tasks summary, changed files snippet, validation results, commit and push confirmation, and next-phase readiness to trigger the orchestrator loop.

How do I automate phase transitions and history updates for long-running sessions?

Automate phase transitions for long-running sessions by using templates and references within the orchestrator session to standardize phase reviews, update phase history, and generate artifacts as each subagent completes its work and pokes back.

Does multi-phase orchestration require HTTPS push-based commit workflows?

Yes, multi-phase orchestration satisfies requirements for HTTPS push-based commit workflows by requiring commit and push confirmation during the structured poke back. This ensures code changes are validated and remotely stored before the next phase begins.

When should I use an orchestrator loop instead of a single session for workflow planning?

Use an orchestrator loop for workflow planning when a multi-phase workflow requires isolation, validation, and structured transitions between tasks. It prevents context overload by spinning up fresh subagents per phase rather than retaining everything in one session.