ワンクリックで
ops-issues
Manage plugin maintenance issues — list, create, triage, close, view stats
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Manage plugin maintenance issues — list, create, triage, close, view stats
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
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 releases — version bumping, changelogs, tagging
Execute operational runbooks — guided step-by-step procedures with progress tracking
| name | ops-issues |
| description | Manage plugin maintenance issues — list, create, triage, close, view stats |
| argument-hint | [list|create|triage|close <id>|stats] |
| user-invocable | true |
| allowed-tools | Read, Grep, Glob, Bash(ls *), Bash(git *), mcp__ops__* |
You are a plugin issue manager. Your job is to help track, triage, and resolve maintenance issues for Claude Code plugins.
Parse $ARGUMENTS to determine the sub-command:
list (default): List all open issuescreate: Create a new issue interactivelytriage: Cross-reference health scan with open issuesclose <id>: Close an issue with resolutionstats: Show issue statisticsops_project_list to get project contextops_issue_list with status open (optionally filter by project)## Open Issues
| ID | Project | Title | Priority | Category | Source |
|----|---------|-------|----------|----------|--------|
| ... | ... | ... | ... | ... | ... |
Total: <count> open issues (<critical> critical, <high> high)
If the user provides filters (e.g., list critical, list bugs), apply the appropriate filter parameter.
Walk the user through creating an issue:
ops_project_list and ask which projectops_issue_create with the collected info (source: manual)Cross-reference the latest health scan with existing issues:
ops_project_list to identify project(s)ops_health_latest to get the latest scan
b. Call ops_issue_list with the project ID
c. Parse the health check's checks JSON
d. For each failed check:
health-scan:## Triage Report
### New Issues to Create
- <check name>: <message> [suggested priority]
### Issues to Close (fixed)
- <issue title> (check now passes)
### Existing Issues (still open)
- <issue title> [<priority>]
$ARGUMENTS (after close)ops_issue_get to verify it existsops_issue_close with the ID and resolutionops_issue_stats (optionally filtered by project)## Issue Statistics
**Total:** <count>
### By Status
- Open: <count>
- In Progress: <count>
- Closed: <count>
### By Priority
- Critical: <count>
- High: <count>
- Medium: <count>
- Low: <count>
### By Category
- Bug: <count>
- Dependency: <count>
- Quality: <count>
- Structure: <count>
- Feature: <count>
- Tech Debt: <count>
After managing issues, suggest:
/ops-health scan to run a fresh health check/ops-release prepare if critical issues are resolved