qa-skills-setup

qa-skills-setup is a skill for Claude Code from dangnhit/qa-tester. It costs 59 tokens per session (1,348 once invoked), scanned A, original, Apache-2.0.

A setup tool for installing and checking a project's QA Skills runtime. QA means checking that software meets its requirements and works correctly.

In plain words
What is it for?
Use it when setting up QA Skills, when the QA command is missing, or when its project integration is broken.
Why use it?
It makes the project's standard QA tools available and confirms that the installed files match the runtime that created them.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths; mentions Claude Code.

Part of the qa-skills-bootstrap plugin — 1 skill shipped together

Good fit Use it when setting up QA Skills, when the QA command is missing, or when its project integration is broken.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dangnhit/qa-tester/qa-skills-setup
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add dangnhit/qa-tester --skill qa-skills-setup
Clone the repo
git clone --depth 1 https://github.com/dangnhit/qa-tester

Made for: Claude Code.

Or install qa-skills-bootstrap, the plugin that ships this one along with the rest of its 1 skill.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for qa-skills-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/dangnhit/qa-tester/qa-skills-setup/github.svg)](https://agentmods.dev/skills/dangnhit/qa-tester/qa-skills-setup)
Your own site
<a href="https://agentmods.dev/skills/dangnhit/qa-tester/qa-skills-setup"><img src="https://agentmods.dev/badge/skills/dangnhit/qa-tester/qa-skills-setup/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for qa-skills-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/dangnhit/qa-tester/qa-skills-setup"><img src="https://agentmods.dev/badge/skills/dangnhit/qa-tester/qa-skills-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,348 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00059 $0.01348
Opus 5 $0.00030 $0.00674
Sonnet 5 $0.00012 $0.00270
Haiku 4.5 $0.00006 $0.00135

Measured 9d ago against content hash d484f5fddd66, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

qa-skills-setup scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/qa-skills-bootstrap/skills/qa-skills-setup/SKILL.md · 118 lines

How it starts

The opening of the file, as written. The whole thing — 118 lines — stays where its author put it; the contents beside it link to each section on GitHub.

QA Skills setup

This skill installs a runtime, not skills of its own. The eight QA skills — qa-tester, requirement-analyzer, testcase-designer, test-data-manager, browser-test-executor, evidence-collector, bug-reporter, qa-report-generator — are written into the project by qa-skill skills install, checksummed, and bound to the exact runtime binary that wrote them (ADR-0011). This plugin carries no copy of them: a second copy could not be checked by qa-skill skills verify and would drift from the canonical bundle silently.

Run the four steps below in order. Stop at the first one that does not succeed and report what it said — do not work around a refusal, and do not continue to the next step on a non-zero exit.

1. Resolve the runtime

In this exact order: ./node_modules/.bin/qa-skill, then qa-skill on PATH.

QA_SKILL="${PWD}/node_modules/.bin/qa-skill"; [ -x "$QA_SKILL" ] || QA_SKILL="$(command -v qa-skill)" || exit 1

PowerShell:

$QaSkill = Join-Path $PWD "node_modules/.bin/qa-skill.cmd"
if (-not (Test-Path $QaSkill)) { $QaSkill = (Get-Command qa-skill -ErrorAction Stop).Source }

Never use npx against a remote registry, a globally cached binary of unknown origin, or any substitute runtime. The QA Runtime's guarantees rest on the caller having reviewed the exact binary that executes the run.

If neither path resolves, stop and give the user this setup, then wait — do not install packages on their behalf:

npm install --save-dev @gwinnguyen/qa-skills
npx playwright install chromium

Node.js 22 or 24 is required. Chromium must be installed at setup time; QA execution never downloads a browser or a package implicitly.

2. Verify the runtime version range

"$QA_SKILL" runtime verify --range ">=1.0.0 <2.0.0"

Prints JSON with executable, version, range, compatible. If compatible is false, the installed package does not satisfy the v1 contract — report the printed version and stop. Do not widen the range to make it pass.

Read the full file on GitHub · 118 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 118 lines · 59 tokens per session scan A d484f5fddd66

Subscribe to this mod's changes

qa-skills-setup is a skill published in the GitHub repository dangnhit/qa-tester (2 stars, last pushed 29d ago), licensed Apache-2.0. It adds 59 tokens to every session and 1,348 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

qawolf-cli

Manage QA Wolf through the qawolf CLI. Use when asked to create, update, or list coverage requests, bug reports, or maintenance reports; start a run of flows or tags on the QA Wolf platform or read a run's results; list, set, or delete environment variables; manage environments, flows, or tags; request automation of…

qawolf/cli · 118 tokens

test-review

A review checklist for newly written or changed automated tests using TypeScript and Playwright. Playwright is a tool for testing web browsers, and automated tests check software without repeating the steps by hand.

akovalion/paranoid-qa · 119 tokens

playwright-expert

Expert in Playwright E2E testing framework, auto-waiting mechanisms, test generation, trace viewer, and CI/CD integration. Use when the user mentions testing, end-to-end tests, QA, automation, end-to-end testing, or test automation, or when the task involves Playwright Framework, Test Organization, Advanced Features…

personamanagmentlayer/pcl · 77 tokens

bug-report

A guided process for creating a bug report in Jira, a tool for tracking software work and defects.

akovalion/paranoid-qa · 41 tokens

improve

Meta-skill that improves other skills based on real usage failures. When an SDT reports a skill produced incorrect or unexpected output, this skill analyzes the root cause, generates a structured improvement proposal, applies the fix following CONTRIBUTING.md guidelines, and offers to create a PR or apply locally.…

TimothyHan/qa-buddy-skills · 169 tokens

interview

A structured interview process for turning an informal software request into clear requirements and acceptance checks.

akovalion/paranoid-qa · 52 tokens