qa

qa is a skill for Claude Code from Open-Agent-Tools/General-OAT-Skills. It costs 67 tokens per session (4,092 once invoked), scanned A, original, Apache-2.0.

A multi-agent quality audit skill that checks a project's code, architecture, error handling, tests, CI/CD, documentation, and security. It detects the programming languages, frameworks, tools, and CI system before starting the audit.

In plain words
What is it for?
Use it for pre-release validation, periodic project reviews, or focused audits of tests, security, documentation, or another selected area.
Why use it?
It combines broad project checks in one run, helping find release risks and quality gaps that separate checks may overlook.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md.

Part of the general-oat-skills plugin — 9 skills shipped together

Good fit Use it for pre-release validation, periodic project reviews, or focused audits of tests, security, documentation, or another selected area.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/open-agent-tools/general-oat-skills/qa
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 Open-Agent-Tools/General-OAT-Skills --skill qa
Clone the repo
git clone --depth 1 https://github.com/Open-Agent-Tools/General-OAT-Skills

Made for: Claude Code.

Or install general-oat-skills, the plugin that ships this one along with the rest of its 9 skills.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/open-agent-tools/general-oat-skills/qa/github.svg)](https://agentmods.dev/skills/open-agent-tools/general-oat-skills/qa)
Your own site
<a href="https://agentmods.dev/skills/open-agent-tools/general-oat-skills/qa"><img src="https://agentmods.dev/badge/skills/open-agent-tools/general-oat-skills/qa/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

Your own site · 80×15
<a href="https://agentmods.dev/skills/open-agent-tools/general-oat-skills/qa"><img src="https://agentmods.dev/badge/skills/open-agent-tools/general-oat-skills/qa.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,092 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00067 $0.04092
Opus 5 $0.00034 $0.02046
Sonnet 5 $0.00013 $0.00818
Haiku 4.5 $0.00007 $0.00409

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

Security

Grade A, and why

qa scanned grade A with 1 finding 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 8d 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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

commands (`os.system`, `subprocess` with `shell=True`, `exec`, etc.).
skills/qa/SKILL.md · 382 lines

How it starts

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

Multi-Agent QA Audit

Run a comprehensive quality audit of the current project. Auto-detect the language(s), framework(s), and tooling, then launch all audit agents in parallel for maximum speed.

Scope

If $ARGUMENTS is provided, narrow the audit to that area (e.g. "tests" → only test coverage, "security" → only security audit, "docs" → only documentation accuracy). Otherwise audit the full project.

Step 0 — Project Detection

Before any audit work, detect the project stack by reading the project root. Identify:

  1. Languages — check for: Cargo.toml (Rust), package.json (JS/TS), pyproject.toml/setup.py/requirements.txt (Python), go.mod (Go), pom.xml/build.gradle (Java/Kotlin), *.csproj/*.sln (C#/.NET), Gemfile (Ruby), mix.exs (Elixir), Package.swift (Swift), CMakeLists.txt/Makefile (C/C++).
  2. Frameworks — check for framework indicators in config files and imports (React, Vue, Angular, Django, Flask, FastAPI, Rails, Spring, Next.js, Nuxt, SvelteKit, Tauri, Electron, etc.).
  3. Build/lint/test tooling — identify available commands (npm/yarn/pnpm, cargo, uv/pip/poetry, go, make, gradle/maven, dotnet, mix, etc.).
  4. CI system — check for .github/workflows/, .gitlab-ci.yml, Jenkinsfile, .circleci/, bitbucket-pipelines.yml, etc.
  5. Project conventions — read CLAUDE.md, .editorconfig, linter configs, and any style guides present.

Store the detected stack context. All subsequent agents receive this context so they can tailor their checks to the actual languages and frameworks in use.

Step 1 — Build, Lint & Test (run first, blocking)

Based on the detected tooling, run the project's build, lint, and test commands in parallel using the Bash tool. Adapt to what exists — skip commands that don't apply. Examples by language:

Language Build Lint Test
Rust cargo build cargo clippy -- -D warnings cargo test
TypeScript npx tsc --noEmit npm run lint (if exists) npm test
Python uv build or skip ruff check . or flake8 pytest
Go go build ./... golangci-lint run go test ./...
Java ./gradlew build ./gradlew check ./gradlew test
C#/.NET dotnet build dotnet format --verify-no-changes dotnet test
Ruby skip rubocop bundle exec rspec
Elixir mix compile mix credo mix test

Read the full file on GitHub · 382 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. 8d ago First seen · 382 lines · 67 tokens per session scan A 5235e91038ec

Subscribe to this mod's changes

qa is a skill published in the GitHub repository Open-Agent-Tools/General-OAT-Skills (2 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 67 tokens to every session and 4,092 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). 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

solopi-ai

A command-line framework for testing Android apps and devices with SoloPi, including on-device or cloud AI decision models. It manages devices, test cases, recorded interactions, replays, performance history, and evidence.

alipay/SoloPi · 127 tokens

ios-simulator

Verify and debug native, React Native, Expo, or Flutter apps on an iOS Simulator with agent-device. Use when an agent needs to launch an app, inspect its live UI, tap, type, scroll, validate a code change, collect failure evidence, or reproduce a workflow on an iPhone or iPad Simulator.

callstack/agent-device · 69 tokens

dogfood

Systematically explore and test a mobile app on iOS/Android with agent-device to find bugs, UX issues, and other problems. Use when asked to dogfood, QA, exploratory test, find issues, bug hunt, or test this app on mobile.

callstack/agent-device · 55 tokens

atmos-validation

Validate Atmos projects, components, arbitrary JSON Schema inputs, EditorConfig, and GitHub Actions; use affected-file selection and native CI annotations.

cloudposse/atmos · 31 tokens

performing-api-fuzzing-with-restler

Uses Microsoft RESTler to perform stateful REST API fuzzing by automatically generating and executing test sequences that exercise API endpoints, discover producer-consumer dependencies between requests, and find security and reliability bugs. The tester compiles an OpenAPI specification into a RESTler fuzzing…

xalgorix/xalgorix · 123 tokens

smoke-test

Run smoke tests against a deployed or local app based on your git diff. Each test uses Skyvern browser tools (navigate, act, validate, screenshot) with Chrome DevTools MCP as fallback. Posts screenshot evidence as PR comments.

Skyvern-AI/skyvern · 50 tokens