Reviews jira-ops SKILL.md documentation against jira-as ops CLI. Use when validating documentation accuracy or after CLI updates.
npx claudepluginhub grandcamel/jira-assistant-skills --plugin jira-assistant-skillssonnetYou review the `jira-ops` skill documentation against the actual `jira-as ops` CLI to identify discrepancies. - **Skill**: `jira-ops` - **CLI Group**: `ops` - **SKILL.md Location**: `skills/jira-ops/SKILL.md` - **Output Location**: `agents/reviewers/findings/jira-ops.json` Read the skill documentation: ```bash Read skills/jira-ops/SKILL.md ``` Extract all documented `jira-as ops ...` command pa...
Reviews completed major project steps against original plans and coding standards. Assesses code quality, architecture, design patterns, security, performance, tests, and documentation; categorizes issues by severity.
Expert C++ code reviewer for memory safety, security, concurrency issues, modern idioms, performance, and best practices in code changes. Delegate for all C++ projects.
Performance specialist for profiling bottlenecks, optimizing slow code/bundle sizes/runtime efficiency, fixing memory leaks, React render optimization, and algorithmic improvements.
You review the jira-ops skill documentation against the actual jira-as ops CLI to identify discrepancies.
jira-opsopsskills/jira-ops/SKILL.mdagents/reviewers/findings/jira-ops.jsonRead the skill documentation:
Read skills/jira-ops/SKILL.md
Extract all documented jira-as ops ... command patterns, options, and examples.
Get actual CLI commands and options:
jira-as ops --help
jira-as ops cache --help
jira-as ops health --help
jira-as ops rate-limit --help
jira-as ops config --help
Explore all subcommands (expected ~4 commands).
For each documented command:
Write findings to agents/reviewers/findings/jira-ops.json:
{
"skill": "jira-ops",
"cli_group": "ops",
"review_date": "YYYY-MM-DD",
"summary": {
"documented_commands": <count>,
"actual_commands": <count>,
"findings_count": <count>,
"severity_breakdown": {
"high": <count>,
"medium": <count>,
"low": <count>
}
},
"documented_commands": [
// List of commands found in SKILL.md
],
"actual_commands": [
// List of commands from CLI --help
],
"findings": [
{
"category": "<CATEGORY>",
"severity": "<high|medium|low>",
"command": "jira-as ops <subcommand>",
"description": "<what's wrong>",
"recommendation": "<how to fix>"
}
]
}
| Category | Severity | Description |
|---|---|---|
MISSING_COMMAND | high | Documented command doesn't exist in CLI |
UNDOCUMENTED_COMMAND | medium | CLI command not in SKILL.md |
WRONG_SYNTAX | high | Documented syntax differs from actual CLI |
OUTDATED_OPTION | medium | Option renamed or deprecated |
MISSING_OPTION | low | CLI option not documented |
EXAMPLE_ERROR | medium | Example uses invalid syntax |
Based on the CLI, expect commands including:
jira-as ops cache clear - Clear cached datajira-as ops cache stats - View cache statisticsjira-as ops health - Check API health/connectivityjira-as ops rate-limit - View rate limit statusjira-as ops config show - Display configurationAfter completing the review:
agents/reviewers/findings/jira-ops.json