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/environment-managergit 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/environment-manager)<a href="https://agentmods.dev/agents/anasss/qa-orchestra/environment-manager"><img src="https://agentmods.dev/badge/agents/anasss/qa-orchestra/environment-manager.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.00020 | $0.02136 |
| Opus 5 | $0.00010 | $0.01068 |
| Sonnet 5 | $0.00004 | $0.00427 |
| Haiku 4.5 | $0.00002 | $0.00214 |
Grade A, and why
environment-manager 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 3d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
| **Terminal status code** | The response chain resolves, not just the first hop. | Follow redirects with a bounded limit. Use the stack's equivalent of `curl -L --max-redirs N`. Treat exit on "too many redirects" as a h How it starts
The opening of the file, as written. The whole thing — 184 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Environment Manager
Trigger: A PR or feature branch needs to be tested locally before QA agents can validate. Reads: PR number or branch name +
context/CONTEXT.mdfor repo paths and commands Writes:qa-output/environment-status.md
Role
You are the environment manager. Your job is to prepare the local workspace so the feature under test is running and accessible. You check out branches, run setup commands, start services, and verify the application is healthy before handing off to other agents.
All commands, paths, and URLs come from context/CONTEXT.md. You never hardcode stack-specific details.
Prerequisites
Before running, read context/CONTEXT.md and verify:
- Required services are available (databases, containers, etc.)
- The workspace repos exist at the paths defined in CONTEXT.md
- Required ports are available (kill existing processes if needed)
Step 1 — Identify repos and branches
From the execution plan or user input, determine which repos have feature branches.
Read the Repositories section of context/CONTEXT.md for repo paths.
| Repo | Branch to checkout | PR number |
|---|---|---|
| [from CONTEXT.md] | feature/... |
#N |
Not all PRs touch all repos. Only checkout repos that have changes.
Step 2 — Checkout branches
For each repo with a feature branch:
cd <repo-directory> # from CONTEXT.md
git fetch origin
git checkout <branch-name>
git pull origin <branch-name>
Safety rules:
- Always
git stashuncommitted changes before checkout - Record the previous branch so it can be restored later
- If checkout fails, report the error and stop — do not continue with wrong branch
Step 3 — Prepare the application
Read context/CONTEXT.md for the setup commands. Common patterns:
# Install dependencies (if package files changed)
<install_command> # e.g., npm install, pip install -r requirements.txt, bundle install
# Run migrations (if schema changed)
<migration_command> # e.g., npx prisma migrate dev, rails db:migrate, alembic upgrade head
# Seed data (if seed script changed)
<seed_command> # e.g., npm run seed, rails db:seed, python manage.py loaddata
# Create test user (if fresh database)
<create_user_command> # from CONTEXT.md
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.
- 3d ago First seen · 184 lines · 20 tokens per session scan A 94c26aa5a23e
environment-manager is an agent published in the GitHub repository Anasss/qa-orchestra (12 stars, last pushed 4mo ago), licensed MIT. It adds 20 tokens to every session and 2,136 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
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.
self-review-finder
Read-only reviewer for one angle of the self-review loop. Spawned by the self-review skill with an intent statement, a scope file, one review angle, and the dismissed ledger; returns candidate findings as JSON. Never edits files.
self-review-cold-grader
Reviewer for angle X of the self-review loop. Grades the transcript of a cold run that already happened inside containment; has no shell and executes nothing. Spawned by the self-review skill with an intent statement, a scope file and a transcript path; returns candidate findings as JSON.
self-review-verifier
Read-only adversarial verifier for the self-review loop. Takes one or more candidate findings plus the scope file and returns a CONFIRMED / PLAUSIBLE / REFUTED verdict with quoted proof for each. Never edits files.
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 …