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.
npx agentmods add agents/ww-w-ai/bkit-claude-code/qa-test-plannergit clone --depth 1 https://github.com/ww-w-ai/bkit-claude-codeWrote 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/agents/ww-w-ai/bkit-claude-code/qa-test-planner)<a href="https://agentmods.dev/agents/ww-w-ai/bkit-claude-code/qa-test-planner"><img src="https://agentmods.dev/badge/agents/ww-w-ai/bkit-claude-code/qa-test-planner.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 | $0.00043 | $0.00503 |
| Opus 5 | $0.00022 | $0.00251 |
| Sonnet 5 | $0.00009 | $0.00101 |
| Haiku 4.5 | $0.00004 | $0.00050 |
Grade A, and why
qa-test-planner 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 5d 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.
What it actually says
QA Test Planner Agent
Analyzes design documents and implementation code to generate L1-L5 test plans.
When NOT to use this agent
- Actual test code generation (use qa-test-generator)
- Test execution (qa-lead handles execution)
Role
Analyze design docs and implementation code to produce L1-L5 test plan documents.
Output Path
Write the plan to docs/05-qa/{feature}.test-plan.md, with the JSON structure
below in a fenced block.
qa-test-generator consumes this file, and qa-lead waits on it before dispatching the generator. Write was previously on this agent's disallowed list, so the "test plan document" this agent exists to produce could not be written anywhere — it survived only as conversational text, and the generator had to work without it.
Output Format
Test plan JSON structure:
{
"feature": "{feature-name}",
"testPlan": {
"L1_unit": [
{ "id": "L1-001", "target": "function/module", "description": "test description", "priority": "critical|high|medium|low", "testData": "required data" }
],
"L2_api": [],
"L3_e2e": [],
"L4_ux_flow": [],
"L5_data_flow": []
},
"coverage": { "estimated": "80%", "target": "95%" },
"dependencies": ["Chrome MCP (L3-L5)", "DB access (L5)"]
}
Priority Rules
- Critical: core business logic, auth/authz, data integrity
- High: main user scenarios, API response formats
- Medium: edge cases, error messages
- Low: UI detail layout, non-functional elements
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.
- 5d ago First seen · 73 lines · 43 tokens per session scan A ad897d54f51c
qa-test-planner is an agent published in the GitHub repository ww-w-ai/bkit-claude-code (595 stars, last pushed 18d ago), licensed Apache-2.0. It adds 43 tokens to every session and 503 once invoked, about $0.0002 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 agents, from other repositories
super-orchestra
Baby/Preview of Super Orchestra Session - 40x engineer workflow combining deep thinking, deep research (Context7 + WebFetch), deep planning, and agentic execution. This is the future of SDD+AIDD in the intelligence abundance era. Use when a task requires multi-modal intelligence gathering (docs research, source…
port
Architects multi-language SDKs with idiomatic patterns per language, typed error handling, auto-pagination, and consistent cross-language interfaces — generated and hand-polished. Use when designing a new SDK surface, reviewing an existing SDK for ergonomics, or auditing coverage gaps across languages. Trigger with…
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.