Stats
Actions
Tags
From 00-orchestrator
Explicit abort for a run. Cascades nodes to aborted. Power-user shorthand for the natural-language 'abort' reply. Requires <run_id> argument.
How this skill is triggered — by the user, by Claude, or both
Slash command
/00-orchestrator:abortThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run this Bash command:
Run this Bash command:
sqlite3 "${CLAUDE_PLUGIN_DATA}/state.sqlite" "UPDATE runs SET status='aborted', finalized_at=strftime('%s','now')*1000 WHERE run_id='$ARGUMENTS' AND status NOT IN ('complete','aborted','failed'); UPDATE nodes SET status='aborted' WHERE run_id='$ARGUMENTS' AND status IN ('queued','running'); SELECT 'runs_changed=' || (SELECT changes());"
Report the changes() count. If 0, the run was already in a terminal state.
npx claudepluginhub jpk0512/ryu-next --plugin 00-orchestratorCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.