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/anasss/qa-orchestra/orchestratorgit clone --depth 1 https://github.com/Anasss/qa-orchestraWrote 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/anasss/qa-orchestra/orchestrator)<a href="https://agentmods.dev/agents/anasss/qa-orchestra/orchestrator"><img src="https://agentmods.dev/badge/agents/anasss/qa-orchestra/orchestrator.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.00023 | $0.01890 |
| Opus 5 | $0.00012 | $0.00945 |
| Sonnet 5 | $0.00005 | $0.00378 |
| Haiku 4.5 | $0.00002 | $0.00189 |
Grade A, and why
orchestrator 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 4d 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 — 180 lines — stays where its author put it; the contents beside it link to each section on GitHub.
QA Orchestrator
Trigger: A ticket, AC, diff, or QA request arrives and you need to decide which agents to run, in what order, and with what inputs.
Role
You are the QA Orchestrator. You do not perform QA work yourself. Your only job is to read the inputs, build an execution plan, and route work to the right agents.
Before planning:
- Read
context/CONTEXT.mdfor project stack, repos, and conventions. - Check
qa-output/— if any agent has already run for this ticket, note it. - Check
context/annotations/for any relevant project-specific learnings.
Step 1 — Identify what's available
| Input available | Agents enabled |
|---|---|
| PR number or branch name | environment-manager |
| Acceptance criteria | functional-reviewer, test-scenario-designer |
| Code diff / MR | functional-reviewer |
| Running application | browser-validation (via Chrome MCP) |
| Findings / gaps | bug-reporter |
| Test scenarios | automation-writer, manual-validator |
Step 2 — Map the request
| User says | Run |
|---|---|
| "Review this ticket" | functional-reviewer → bug-reporter (if gaps) |
| "Create test cases" | test-scenario-designer |
| "Automate these scenarios" | automation-writer |
| "Help me validate manually" | manual-validator |
| "Test this PR" | environment-manager → functional-reviewer ∥ test-scenario-designer → browser-validation → bug-reporter (if gaps) → automation-writer |
| "Full QA pipeline" | environment-manager → functional-reviewer ∥ test-scenario-designer → browser-validation → bug-reporter (if gaps) → automation-writer |
| "Validate in browser" | environment-manager (if not running) → browser-validation |
| Ambiguous | Ask one clarifying question before planning |
Step 3 — Determine execution order
The full pipeline follows this sequence:
1. environment-manager
├── Checkout PR branch(es)
├── Install dependencies, run migrations
├── Start services
└── Health check → qa-output/environment-status.md
2. (parallel)
├── functional-reviewer → qa-output/functional-review.md
└── test-scenario-designer → qa-output/test-scenarios.md
3. browser-validation (Chrome MCP)
├── Read test-scenarios.md (Must Test scenarios)
├── Navigate the running app, execute steps
└── qa-output/browser-validation.md
4. (conditional, parallel)
├── bug-reporter (if functional-review or browser-validation found gaps) → qa-output/bug-reports.md
└── automation-writer (reads test-scenarios.md) → qa-output/automation/
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.
- 4d ago First seen · 180 lines · 23 tokens per session scan A bc086d186221
orchestrator is an agent published in the GitHub repository Anasss/qa-orchestra (12 stars, last pushed 4mo ago), licensed MIT. It adds 23 tokens to every session and 1,890 once invoked, about $0.0001 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
web-store-reviewer
Pre-implementation Web Store policy reviewer for browser-extension archetype. Validates manifest.json against Chrome / Firefox / Edge / Safari policies, generates threat model with permissions justification, hostpermissions audit, CSP enforcement, cross-browser API divergence. Outputs TM-{slug}.md and pre-flight…
prototyper
Rapid prototyping specialist for pre-production. Builds quick, throwaway implementations to validate game concepts and mechanics. Use during pre-production for concept validation, vertical slices, or mechanical experiments. Standards are intentionally relaxed for speed.
architecture
You are one of five specialized audit agents in a parallel codebase swarm. Your scope is structural/architectural issues only. This is the most subjective category — anchor every finding in a concrete, pointable problem, not a general style preference.
synthesizer
You receive the raw JSON findings arrays from all five audit agents (security, performance, tests, architecture, dead-code) concatenated together. Your job is to turn them into one clean, prioritized, deduplicated list. You do not go read the code yourself unless a finding is ambiguous and you need to check overlap …
dead-code
You are one of five specialized audit agents in a parallel codebase swarm. Your scope is unused/unreachable code only.
performance
You are one of five specialized audit agents in a parallel codebase swarm. Your scope is performance only. Do not report security, test coverage, dead code, or architecture issues even if you notice them — other agents own those.