Resources
1Install
npx skillscat add omninode-ai/omniclaude/crash-recovery Install via the SkillsCat registry.
Crash Recovery
Announce at start: "I'm using the crash-recovery skill to show recent pipeline state."
Overview
Reads ~/.claude/pipelines/*/state.yaml files sorted by modification time and shows what was running before a crash. Use this after any unexpected session end to quickly orient yourself.
The skill scans all pipeline state directories, extracts ticket ID, current phase, branch name, and modification time, then presents them newest-first so the most recently active work is immediately visible. Combine with --in-progress to narrow down to pipelines that still need action.
Quick Start
# Show the 10 most recently modified pipelines
/crash-recovery
# Show only pipelines still in an active (non-terminal) phase
/crash-recovery --in-progress
# Show 5 pipelines in JSON format
/crash-recovery --count 5 --jsonSteps
1. Run the list-pipelines script
Execute the bundled script, passing any flags the user supplied directly through:
${CLAUDE_PLUGIN_ROOT}/skills/crash-recovery/list-pipelines [flags]Where [flags] is the verbatim set of arguments the user passed to /crash-recovery. Examples:
# No flags -- show default 10
${CLAUDE_PLUGIN_ROOT}/skills/crash-recovery/list-pipelines
# In-progress only
${CLAUDE_PLUGIN_ROOT}/skills/crash-recovery/list-pipelines --in-progress
# Custom count, JSON output
${CLAUDE_PLUGIN_ROOT}/skills/crash-recovery/list-pipelines --count 5 --json2. Display the output
- If
--jsonwas passed, display the raw JSON. - Otherwise, display the markdown table exactly as returned by the script.
3. Offer resume suggestions for in-progress tickets
For each ticket shown whose phase is not ready_for_merge or done, offer:
- "Use the
ticket-pipelineskill for OMN-XXXX to resume from where it stopped." - "Use the
ticket-workskill for OMN-XXXX if it was in theimplementphase and you want to continue coding."
Note: ticket-pipeline and ticket-work are skills, not slash commands. They are
invoked by asking Claude to use them (e.g., "use the ticket-pipeline skill for OMN-2367"),
not via a /command prefix.
Example follow-up after displaying the table:
OMN-2367 was in 'implement' phase. Ask Claude to use the ticket-pipeline skill for OMN-2367
to resume, or the ticket-work skill to continue implementation directly.Output Format
Default output is a fixed-width column table (newest first). Columns are space-padded, separated by a single space, with a dashed separator line — not standard markdown table syntax:
Ticket Title Phase Branch Age
-------------------- -------------------------------------------------------- ---------------------- ------------------------------- ----------
OMN-2371 fix: session-end feedback loop is no-op ready_for_merge omn-2371-fix-session-end 5m ago
OMN-2367 feat: delegation orchestrator implement omn-2367-delegation 12m ago
OMN-2355 fix: context injection timeout local_review omn-2355-context-inject 18m agoColumns:
| Column | Source |
|---|---|
Ticket |
ticket_id field from state file |
Title |
title field (or Linear issue title if state file omits it) |
Phase |
current_phase (newer schema) or status (older schema) |
Branch |
branch_name field |
Age |
Human-readable elapsed time since file mtime |
Schema Notes
Pipeline state files (~/.claude/pipelines/*/state.yaml) may follow one of two schemas:
Newer schema (preferred):
ticket_id: OMN-2371
current_phase: ready_for_merge
phase_history:
- phase: implement
completed_at: "2026-02-19T10:00:00Z"
- phase: local_review
completed_at: "2026-02-19T10:30:00Z"
branch_name: omn-2371-fix-session-end
title: "fix: session-end feedback loop is no-op"Older schema (legacy, still supported):
pipeline_state_version: "1.0.0"
status: ready_for_merge
ticket_id: OMN-2371
branch_name: omn-2371-fix-session-endThe list-pipelines script handles both schemas gracefully. If a required field is absent from an older file, the column is shown as —.
See Also
ticket-pipelineskill -- full pipeline orchestrator (implement → review → PR → merge)ticket-workskill -- jump directly into the implement phase for a ticketcheckpointskill -- per-phase checkpoint management for finer-grained resume