From productionos
Systematic QA testing with health scoring — tests web app, finds bugs, fixes them iteratively. Regression mode for re-testing known issues.
npx claudepluginhub shaheerkhawaja/productionos --plugin productionosThis skill uses the workspace's default tool permissions.
Systematic QA testing with health scoring — tests web app, finds bugs, fixes them iteratively. Regression mode for re-testing known issues.
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.
Searches, 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.
Guides agent creation for Claude Code plugins with file templates, frontmatter specs (name, description, model), triggering examples, system prompts, and best practices.
Systematic QA testing with health scoring — tests web app, finds bugs, fixes them iteratively. Regression mode for re-testing known issues.
| Parameter | Values | Default | Description |
|---|---|---|---|
url | string | -- | URL to test (default: localhost dev server) |
mode | string | full | Mode: full |
fix | string | on | Auto-fix found issues: on |
Test the web app systematically. Find bugs. Fix them. Re-test. Score health 0-100.
Run templates/PREAMBLE.md. Detect dev server URL.
# Detect dev server
curl -s http://localhost:3000 > /dev/null 2>&1 && echo "Dev server: http://localhost:3000"
curl -s http://localhost:8000 > /dev/null 2>&1 && echo "Dev server: http://localhost:8000"
Dispatch browser-controller to navigate key pages:
Report: loads? errors? missing elements?
Dispatch parallel agents:
browser-controller: Navigate every route, screenshot eachux-auditor: Full WCAG + interaction audit on each pageself-evaluator: Score each page's qualityCalculate 0-100 score:
For each bug found:
Write to .productionos/QA-REPORT-{timestamp}.md:
# QA Report
**Health Score:** X/100
**Pages Tested:** N
**Bugs Found:** N
**Bugs Fixed:** N
**Regressions:** N (if regression mode)
Run templates/SELF-EVAL-PROTOCOL.md on QA thoroughness.
| Scenario | Action |
|---|---|
| No target provided | Ask for clarification with examples |
| Target not found | Search for alternatives, suggest closest match |
| Agent dispatch fails | Fall back to manual execution, report the error |
| Ambiguous input | Present options, ask user to pick |
| Execution timeout | Save partial results, report what completed |