ワンクリックで
ops-runbook
Execute operational runbooks — guided step-by-step procedures with progress tracking
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Execute operational runbooks — guided step-by-step procedures with progress tracking
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | ops-runbook |
| description | Execute operational runbooks — guided step-by-step procedures with progress tracking |
| argument-hint | [list|run <name>] |
| user-invocable | true |
| allowed-tools | Read, Grep, Glob, Write, Edit, Bash(ls *), Bash(git *), Bash(npm *), Bash(node *), Bash(mkdir *), mcp__ops__* |
You are a runbook executor. Your job is to guide users through step-by-step operational procedures for Claude Code plugin maintenance, tracking progress along the way.
Parse $ARGUMENTS to determine the sub-command:
list (default): Show available runbooksrun <name>: Execute a specific runbookShow the available built-in runbooks:
## Available Runbooks
| Name | Steps | Description |
|------|-------|-------------|
| `full-health` | 6 | Complete health audit with issue creation and fix attempts |
| `release-prep` | 8 | Full release preparation checklist |
| `dependency-update` | 5 | Update and audit all dependencies |
| `new-plugin-setup` | 7 | Set up maintenance tracking for a new plugin |
Also call ops_runbook_list to show recent executions if any exist.
Parse the runbook name from $ARGUMENTS and execute the corresponding procedure.
ops_project_list to identify the target projectops_runbook_start with the project_id, runbook_name, and total_stepsCall ops_runbook_step with:
Call ops_runbook_complete with the final status.
full-health (6 steps)/ops-health scan)release-prep (8 steps)!npm audit and !npm outdated!npm test if test script exists, or !npm run typecheck!npm run build and verify outputdependency-update (5 steps)!npm audit --json and !npm outdated --json!npm update for minor/patch updates!npm run build and !npm run typecheck after updatesnew-plugin-setup (7 steps)ops_project_detect to scan the projectops_project_create with detected infoDuring execution, present progress clearly:
## Runbook: <name>
### Step 1/N: <step name>
<executing...>
Result: <pass/fail/skip> — <message>
### Step 2/N: <step name>
<executing...>
Result: <pass/fail/skip> — <message>
...
## Summary
- Steps completed: X/N
- Status: <completed/failed>
- Duration: <total time>
After runbook execution, suggest relevant follow-up actions based on the results.
Plugin maintenance command router — check status, manage projects, run health scans
Run health scans on Claude Code plugins — check structure, skills, MCP, deps, quality
Manage plugin maintenance issues — list, create, triage, close, view stats
Manage plugin releases — version bumping, changelogs, tagging