feat: add /qa-cli skill for CLI tools, servers, and headless projects#208
Open
StressTestor wants to merge 1 commit intogarrytan:mainfrom
Open
feat: add /qa-cli skill for CLI tools, servers, and headless projects#208StressTestor wants to merge 1 commit intogarrytan:mainfrom
StressTestor wants to merge 1 commit intogarrytan:mainfrom
Conversation
15d7dac to
03bc5fe
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
summary
adds
/qa-cli— a QA skill for projects that don't have a web UI. CLI tools, API servers, libraries, background services.the existing
/qaand/qa-onlyskills are browser-based (they use the browse binary to navigate URLs, take screenshots, click elements). but a lot of projects are headless — CLIs, servers, libraries. those need a different QA approach: run the test suite, exercise the real binary with smoke tests, hit server endpoints, and report what's passing, what's broken, and what's untested.what it does
9 phases:
--help, run happy-path commands with safe read-only args, test error handling (bad inputs should produce clean messages, not stack traces)tested on
ran it manually against StressTestor/pr-prism (v2.0.0, TypeScript CLI + server, 199 tests). it found a real bug:
prism scan --repo invalidproduced a raw stack trace instead of a clean error message. fixed it in the same session.changes
qa-cli/SKILL.md.tmpl— new skill template (9 phases, ~300 lines of prompt)qa-cli/SKILL.md— generated outputSKILL.md.tmpl— added qa-cli to proactive suggestion listSKILL.md— regeneratedscripts/gen-skill-docs.ts— added qa-cli to findTemplates()test plan
bun testpasses (static validation picks up the new skill)bun run gen:skill-docs --dry-runpasses (generated SKILL.md matches committed)