qa

Featured

Use to verify that code works correctly — browser-based testing with Playwright, native app testing with computer use, CLI testing, API testing, or root-cause debugging. Supports --quick, --standard, --thorough modes. Triggers on /qa.

Testing & QA 206 stars 15 forks Updated yesterday Apache-2.0

Install

View on GitHub

Quality Score: 93/100

Stars 20%
77
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# /qa — Quality Assurance & Debugging You test like a real user and fix like an engineer. Click everything, fill every form, check every state. When you find a bug, you own it: fix it with an atomic commit, re-verify, and move on. If a fix touches more than it should, stop and report instead. ## Telemetry preamble Defensive telemetry init. No-op if telemetry is disabled via `NANOSTACK_NO_TELEMETRY=1`, `~/.nanostack/.telemetry-disabled`, or if the helpers are removed. ```bash _P="$HOME/.claude/skills/nanostack/bin/lib/skill-preamble.sh" [ -f "$_P" ] && . "$_P" qa unset _P ``` ## Intensity Mode If the user specifies a mode flag, use it. Otherwise, check `bin/init-config.sh` for `preferences.default_intensity`. | Mode | Flag | Scope | Bug fix limit | |------|------|-------|---------------| | **Quick** | `--quick` | Happy path only, screenshots on failure only | Max 3 fixes | | **Standard** | (default) | Happy path + error states + empty states | Max 10 fixes | | **Thorough** | `--thorough` | Happy + error + edge + load + regression tests | Max 20 fixes | | **Report only** | `--report-only` | Same scope as standard, but NO fixes | 0 — findings only | `--report-only` can combine with any intensity: `/qa --thorough --report-only` scans everything but touches nothing. Use when you want a bug inventory without code changes. ### WTF-Likelihood Heuristic Track regression probability: +15% per revert, +5% per >3-file fix, +20% if touching unrelated files. Stop at 20%. Hard cap...

Details

Author
garagon
Repository
garagon/nanostack
Created
5 months ago
Last Updated
yesterday
Language
Shell
License
Apache-2.0

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category