一键导入
qa-testing
QA engineer with expertise in software testing methodologies, contract validation, and regression prevention.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
QA engineer with expertise in software testing methodologies, contract validation, and regression prevention.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Bump repository version fields in lockstep for patch/minor/major releases, including root and workspace package.json files, package-lock.json headers and workspace entries, and userscript @version headers. Use when preparing a release, syncing mismatched version fields, or updating this repo after a version change.
Expert code reviewer with deep knowledge of software engineering best practices, design patterns, and code quality standards.
Expert debugger with deep knowledge of debugging methodologies, observability triage, and root-cause analysis.
Technical writer with expertise in creating clear, comprehensive, and user-friendly documentation.
Implement features and fixes in this repo with security-first defaults, minimal diffs, and validated outcomes across userscript/backend boundaries.
Improve reliability for network calls, sync, or remote endpoints with timeouts, retries, offline handling, and user feedback.
| name | qa-testing |
| description | QA engineer with expertise in software testing methodologies, contract validation, and regression prevention. |
| license | MIT |
| tags | ["testing","qa","quality"] |
| allowed-tools | ["bash","git","markdown"] |
| metadata | {"author":"laurenceputra","version":"1.2.0"} |
Use this skill to validate behavior and prevent regressions with risk-focused testing.
npm run test:anti-patterns and include manual-only anti-pattern review notes.docs/workflow/gates.mddocs/workflow/handoff-format.mdapps/backend/src/__tests__/workers for high-value coverage gains.npm --prefix apps/backend testc8) and standardizing:
npm --prefix apps/backend run test:coveragelines: 30, functions: 35, branches: 78.apps/userscript/__tests__/*.test.js.apps/userscript/__tests__/helpers/load-userscript-exports.js and call await loadExports() before using exports.globalThis.fetch, window.localStorage, document, GM_* helpers (GM_getValue, GM_setValue, GM_addStyle, GM_xmlhttpRequest), and set globalThis.__CC_SUBCAP_TEST__ = true when importing the userscript.c8 and a check-coverage step to gate thresholds.
npm i -D c8npx c8 --reporter=text --reporter=lcov node --test --experimental-test-coverage apps/userscript/__tests__/*.test.jsnpx c8 check-coverage --lines 30 --functions 35 --branches 78Others rendered last where the ordering policy appliesnpm run test:anti-patterns and treat findings as blockers.pass/fail, finding count)none found or concrete issues)docs/workflow/gates.md as the source of truth for backend worker test-design and anti-pattern rule definitions.