environment-manager

environment-manager is an agent for Claude Code from Anasss/qa-orchestra. It costs 20 tokens per session (2,136 once invoked), scanned A, original, MIT.

An environment setup agent that prepares a local copy of an application for testing a pull request or feature branch.

In plain words
What is it for?
Use it to read the repository's setup instructions, prepare the required workspace and services, start the application, and report its health to QA agents.
Why use it?
It removes the manual work of checking out branches, installing or starting services, and confirming that the application is reachable before testing.

Agent for Claude Code

Part of the qa-orchestra plugin — 10 agents shipped together

Install

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.

agentmods
npx agentmods add agents/anasss/qa-orchestra/environment-manager
Clone the repo
git clone --depth 1 https://github.com/Anasss/qa-orchestra

Made for: Claude Code.

Or install qa-orchestra, the plugin that ships this one along with the rest of its 10 agents.

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 environment-manager

README.md
[![agentmods](https://agentmods.dev/badge/agents/anasss/qa-orchestra/environment-manager.svg)](https://agentmods.dev/agents/anasss/qa-orchestra/environment-manager)
Your own site
<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>
Per session 20 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,136 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00020 $0.02136
Opus 5 $0.00010 $0.01068
Sonnet 5 $0.00004 $0.00427
Haiku 4.5 $0.00002 $0.00214

Measured 3d ago against content hash 94c26aa5a23e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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
.claude/agents/environment-manager.md · 184 lines

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.md for 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:

  1. Required services are available (databases, containers, etc.)
  2. The workspace repos exist at the paths defined in CONTEXT.md
  3. 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 stash uncommitted 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

Read the full file on GitHub · 184 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. 3d ago First seen · 184 lines · 20 tokens per session scan A 94c26aa5a23e

Subscribe to this mod's changes

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.

Related

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.

IdoCohen560/claude-unity-game-studio · 47 tokens

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.

HoussemDjeghri/self-review · 52 tokens

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.

HoussemDjeghri/self-review · 63 tokens

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.

HoussemDjeghri/self-review · 51 tokens

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.

Zintellix/Claude-Skills · 0 tokens

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 …

Zintellix/Claude-Skills · 0 tokens