auto
Automatically converge from goal to A-grade Seed and execute it
List in-flight Ouroboros sessions and show the commands needed to re-attach after MCP disconnect
$ npx -y skills add Q00/ouroboros --skill resume-session --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/resume-sessionContext preview
The summary Claude sees to decide when to auto-load this skill.
List in-flight Ouroboros sessions and show the commands needed to re-attach after MCP disconnect
name: resume-session description: "List in-flight Ouroboros sessions and show the commands needed to re-attach after MCP disconnect"
Recover in-flight Ouroboros sessions after an unexpected MCP server disconnect.
Claude Code reserves `/resume` for its built-in session picker. This skill intentionally uses `resume-session` so it does not shadow that native command.
ooo resume-session ooo resume-session --all /ouroboros:resume-session
**Trigger keywords:** "in-flight Ouroboros sessions", "re-attach", "mcp disconnected", "lost Ouroboros execution"
`ooo resume-session` reads the EventStore directly (no MCP server required) and lists every session that is still in a `running` or `paused` state. The command is strictly read-only — it never creates the data directory, never writes schema, and never appends events. Its job is to surface the identifiers you need to re-attach.
When the user invokes this skill:
1. Run the CLI command:
ouroboros resume
This reads the configured runtime EventStore directly — the MCP server does **not** need to be running.
2. If sessions are listed, enter the number of the session you want to work with. The command prints both the `session_id` and the `exec_id`, along with the available re-attach paths.
3. Pick the right re-attach path:
ouroboros status execution <exec_id> --events
Reads the configured EventStore without starting an MCP server.
ouroboros tui monitor
Launches the TUI and lets you pick the session to inspect.
ouroboros run workflow --orchestrator --resume <session_id> <seed.yaml>
| Code | Meaning | |------|---------| | `0` | Success — sessions listed, or no sessions found | | `1` | Invalid user selection (non-numeric or out-of-range) | | `2` | EventStore exists but could not be opened or read |
If the command reports "No in-flight sessions found", the execution either completed, failed, was cancelled, or the EventStore has never been created. To browse historical sessions interactively, use the TUI monitor:
ouroboros tui monitor
User: ooo resume-session ┌─────────────────────── In-Flight Sessions ───────────────────────┐ │ # Session ID Execution ID Status Started │ │ 1 sess-abc123 exec-xyz789 running 2026-04-15 │ └───────────────────────────────────────────────────────────────────┘ Enter number to re-attach (1-1), or 'q' to quit: 1 ╭─ Re-attach ────────────────────────────────────────────────────────────────╮ │ Session ID: sess-abc123 │ │ Execution ID: exec-xyz789 │ │ │ │ Inspect (read-only interactive monitor): │ │ ouroboros tui monitor │ │ │ │ Resume execution (requires the original seed file): │ │ ouroboros run workflow --orchestrator --resume sess-abc123 seed-001 │ ╰────────────────────────────────────────────────────────────────────────────╯
After you have the identifiers:
Your final response MUST end with exactly one breadcrumb footer line:
◆ <current state> → next: <recommended action>
Derive `<current state>` from live session state via `ouroboros_session_status` when that MCP projection is available; otherwise derive it from this skill's actual outcome. Never use a linear `Step N of M` footer because Ouroboros is an evolutionary loop. When the next action is genuinely a choice, list 2-3 honest options in the `next:` clause. The breadcrumb line must be the last line of the response.
Agent OS: the agent gets smarter on its own. We just hold the line: Interview-gated, staged evaluation, budgeted evolution loop. MCP server, 14 runtimes: Claude Code, Codex CLI, Gemini CLI, OpenCode, Copilot, Kiro and more.
Repo: Q00/ouroboros
Automatically converge from goal to A-grade Seed and execute it
Scan and manage brownfield repository/worktree defaults for interviews
Open or drive the Ouroboros settings GUI (browser, TUI, or conversational fallback)
Evaluate execution with three-stage verification pipeline