Borrowing it
Nothing to install: this file belongs to petrkindlmann/qa-skills. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/petrkindlmann/qa-skills/main/AGENTS.mdgit clone --depth 1 https://github.com/petrkindlmann/qa-skillsWrote 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.
[](https://agentmods.dev/instructions/petrkindlmann/qa-skills/agents-md)<a href="https://agentmods.dev/instructions/petrkindlmann/qa-skills/agents-md"><img src="https://agentmods.dev/badge/instructions/petrkindlmann/qa-skills/agents-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.02387 | $0.02387 |
| Opus 5 | $0.01193 | $0.01193 |
| Sonnet 5 | $0.00477 | $0.00477 |
| Haiku 4.5 | $0.00239 | $0.00239 |
Grade A, and why
qa-skills AGENTS.md 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 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.
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.
How it starts
The opening of the file, as written. The whole thing — 116 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Behavior Specification
How AI agents should discover, load, and use skills from this repository.
Skill Discovery
On first skill use per session:
- Check for
.agents/qa-project-context.mdin the user's project root- If exists: read it and use as context for all subsequent skill interactions
- If not: suggest the user creates one using the
qa-project-contextskill
- Read the activated skill's
SKILL.mdfromskills/<skill-name>/SKILL.md - Follow the skill's Discovery Questions, skip any already answered by qa-project-context
- Load files from
references/only when deeper detail is needed — do not read all reference files upfront
Cross-Skill References
- Skills reference each other with: "For [topic], see
skill-name" - Workflow steps that span skills include direct references at the relevant step
- The
qa-project-contextskill is the universal dependency — every skill checks for it first
Description Quality
Each skill's YAML frontmatter description must be specific enough to match the right skill without fuzzy boundaries. Descriptions include what the skill does, when to use it, trigger phrases, and cross-references to related skills.
Picking between overlapping skills
When two skills could plausibly match a request, use these disambiguation rules. The skill descriptions also carry explicit "Not for: X — use Y" anti-triggers; treat those as authoritative.
- Strategy vs planning vs risk: Use
risk-based-testingfirst to produce the risk matrix. Usetest-strategyfor multi-quarter QA direction. Usetest-planningfor a single sprint or release. - Bootstrapping vs onboarding: Use
qa-startwhen starting QA on a brand-new project (no QA exists yet). Useqa-project-bootstrapwhen onboarding a QA engineer to an existing codebase. - AI cluster: Use
ai-test-generationwhen AI writes test code for you. Useai-system-testingwhen AI/LLM features in your product are the thing being tested (and for LLM-layer attacks: indirect prompt injection, defend-the-tester, OWASP LLM Top 10). Useai-qa-reviewto review existing test code. Useai-bug-triageto classify CI failures. Usebug-reproductionto turn a defect report into a verified minimal repro and a failing regression test (it executes;ai-bug-triageonly classifies). Useagentic-browser-testingfor goal-driven E2E where a browser agent explores without a script (scripted Playwright stays inplaywright-automation). - Production trio: Use
testing-in-productionfor safe rollout techniques (flags, canary) during release. Usesynthetic-monitoringfor scheduled probes that run after release. Useobservability-driven-testingwhen prod telemetry is the input to designing new tests. - Selector maintenance: Use
test-reliabilityfor runtime per-test healing when one test goes flaky. Useselector-drift-recoveryfor offline bulk regeneration after a UI refactor or redesign breaks many selectors. - Test-case vs test-suite work: Use
test-case-managementto author/maintain MANUAL cases in TestRail/Xray/Zephyr/Qase (not test code — that'sai-test-generation). Usetest-suite-curationto prune/restructure a whole regression suite ("should this test exist"); useai-qa-reviewto judge whether an individual test is well-written ("is this test good"). - Specialized-flow testing: Use
email-testingfor inbox-capture flows (signup/reset/OTP). Usepayment-testingfor PSP-sandbox checkout/3DS/webhooks. Useanalytics-tracking-testingto verify GA4/dataLayer/pixel data is CORRECT (whether tracking is ALLOWED under consent law iscompliance-testing). All three defer generic endpoint contracts toapi-testing. - Last resort: Use
qa-doONLY when the request doesn't match any other skill's trigger phrases. If the request clearly matches another skill, invoke that skill directly.
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.
- 8d ago First seen · 116 lines · 2,387 tokens per session scan A b991b3062780
qa-skills AGENTS.md is an instructions file published in the GitHub repository petrkindlmann/qa-skills (113 stars, last pushed 2mo ago), licensed MIT. It adds 2,387 tokens to every session, about $0.0119 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-30.
Other instructions, from other repositories
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.