Generates a comprehensive QA report in Markdown combining findings from all validation and audit skills, with executive summary, categorized findings, and prioritized recommendations. Trigger: generate QA report, full report, plugin report, qa summary.
From plugin-qanpx claudepluginhub javimontano/mao-plugin-qaThis skill is limited to using the following tools:
examples/sample-report.mdprompts/report-generation.mdreferences/report-format-spec.mdSearches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides agent creation for Claude Code plugins with file templates, frontmatter specs (name, description, model), triggering examples, system prompts, and best practices.
"What gets measured gets managed; what gets reported gets improved."
Aggregates findings from all 7 validation and audit skills into a single comprehensive Markdown report. Includes a 3-line TL;DR, categorized findings by dimension, summary statistics, and a Top 5 prioritized recommendations list.
Collect findings from all validation and audit skills -- check if validation/audit results are available from the current session. If not, inform the user that validation skills should be run first, or offer to run them. Gather results from:
validate-structurevalidate-manifestvalidate-componentsvalidate-hooksvalidate-cross-refsaudit-securityaudit-content-qualityCalculate summary statistics -- aggregate across all sources:
Build the TL;DR -- write exactly 3 lines summarizing:
Build Plugin Overview table -- a single table row with:
Write Findings by Category -- organize all findings into 7 sections:
[CRITICAL], [WARNING], [INFO]Build Summary Statistics table -- columns: Category, Critical, Warning, Info, Status (PASS/WARN/FAIL).
Write Top 5 Recommendations -- prioritized by impact:
Include Content Quality Scorecard -- if audit-content-quality results are available, embed the per-skill scorecard table and the plugin average score.
Save the report -- write the file as {plugin-name}_qa-report_{YYYY-MM-DD}.md in the current working directory. Confirm the file path to the user.
audit-content-quality results; if that skill was not run, the section is omitted with a note.Bad report excerpt:
## Findings
- Missing hooks
- Bad structure
- Security issue
Missing: no severity, no file paths, no categorization, no recommendations.
Good report excerpt:
## Structure
[WARNING] | skills/ | Directory absent. Plugin description implies skill-based functionality. | Add skills/ directory with at least one SKILL.md.
## Security
[CRITICAL] | hooks/post-install.sh:7 | Hardcoded API key matching `sk-proj-*` pattern. | Remove the key, rotate immediately, use environment variables.
Includes: severity icon, file path with line, description, actionable recommendation, proper categorization.