qa-skills: Instructions file for Codex

AGENTS.md

qa-skills AGENTS.md is an instructions file for Codex, OpenCode from petrkindlmann/qa-skills. It costs 2,387 tokens per session, scanned A, original, MIT.

Guidance for AI agents working with skills in the qa-skills repository. It explains how to discover skills, read their instructions, and handle references between related skills.

In plain words
What is it for?
Setting agent behavior, discovering available skills, checking project context, following skill instructions, and documenting links between skills.
Why use it?
It gives agents a consistent way to choose and load the right instructions. It also helps maintain clear skill descriptions when several skills overlap.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md.

This is petrkindlmann/qa-skills's own configuration. It tells Codex and OpenCode how to work on qa-skills itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything qa-skills configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/petrkindlmann/qa-skills/main/AGENTS.md
Clone the repo
git clone --depth 1 https://github.com/petrkindlmann/qa-skills

Made for: Codex, OpenCode.

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 AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/petrkindlmann/qa-skills/agents-md.svg)](https://agentmods.dev/instructions/petrkindlmann/qa-skills/agents-md)
Your own site
<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>
Per session 2,387 This file is loaded in full into every session.
When invoked 2,387 The same file — it is already loaded in full.
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.02387 $0.02387
Opus 5 $0.01193 $0.01193
Sonnet 5 $0.00477 $0.00477
Haiku 4.5 $0.00239 $0.00239

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

Security

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.

AGENTS.md · 116 lines

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:

  1. Check for .agents/qa-project-context.md in 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-context skill
  2. Read the activated skill's SKILL.md from skills/<skill-name>/SKILL.md
  3. Follow the skill's Discovery Questions, skip any already answered by qa-project-context
  4. 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-context skill 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-testing first to produce the risk matrix. Use test-strategy for multi-quarter QA direction. Use test-planning for a single sprint or release.
  • Bootstrapping vs onboarding: Use qa-start when starting QA on a brand-new project (no QA exists yet). Use qa-project-bootstrap when onboarding a QA engineer to an existing codebase.
  • AI cluster: Use ai-test-generation when AI writes test code for you. Use ai-system-testing when 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). Use ai-qa-review to review existing test code. Use ai-bug-triage to classify CI failures. Use bug-reproduction to turn a defect report into a verified minimal repro and a failing regression test (it executes; ai-bug-triage only classifies). Use agentic-browser-testing for goal-driven E2E where a browser agent explores without a script (scripted Playwright stays in playwright-automation).
  • Production trio: Use testing-in-production for safe rollout techniques (flags, canary) during release. Use synthetic-monitoring for scheduled probes that run after release. Use observability-driven-testing when prod telemetry is the input to designing new tests.
  • Selector maintenance: Use test-reliability for runtime per-test healing when one test goes flaky. Use selector-drift-recovery for offline bulk regeneration after a UI refactor or redesign breaks many selectors.
  • Test-case vs test-suite work: Use test-case-management to author/maintain MANUAL cases in TestRail/Xray/Zephyr/Qase (not test code — that's ai-test-generation). Use test-suite-curation to prune/restructure a whole regression suite ("should this test exist"); use ai-qa-review to judge whether an individual test is well-written ("is this test good").
  • Specialized-flow testing: Use email-testing for inbox-capture flows (signup/reset/OTP). Use payment-testing for PSP-sandbox checkout/3DS/webhooks. Use analytics-tracking-testing to verify GA4/dataLayer/pixel data is CORRECT (whether tracking is ALLOWED under consent law is compliance-testing). All three defer generic endpoint contracts to api-testing.
  • Last resort: Use qa-do ONLY when the request doesn't match any other skill's trigger phrases. If the request clearly matches another skill, invoke that skill directly.

Read the full file on GitHub · 116 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 · 116 lines · 2,387 tokens per session scan A b991b3062780

Subscribe to this mod's changes

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.

Related

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.

openai/codex · 5,182 tokens

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).

microsoft/vscode · 6,785 tokens

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.

vercel/next.js · 7,296 tokens

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.

langchain-ai/langchain · 4,469 tokens

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).

microsoft/vscode · 5,001 tokens

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.

github/spec-kit · 7,104 tokens