orc-env-provisioner

orc-env-provisioner is an agent for Claude Code from HigorAlves/orc. It costs 126 tokens per session (1,307 once invoked), scanned A, original, MIT.

A setup worker that prepares the Docker-based environment an application needs for testing or independent use. It checks the repository’s existing Docker files, creates a basic setup when needed, starts it, and records whether the app is truly ready.

In plain words
What is it for?
Use it to prepare a repository for QA testing, start its services, wait for health checks, and provide a verified application URL. It can also prepare environments spanning several related repositories.
Why use it?
It removes the manual work of figuring out how to start an unfamiliar project and avoids handing testers a URL before the application is working. It also records honest failure reasons when setup cannot finish.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter.

Part of the orc plugin — 80 skills, 30 commands, 14 agents, 5 hooks shipped together

Good fit Use it to prepare a repository for QA testing, start its services, wait for health checks, and provide a verified application URL. It can also prepare environments spanning several related repositories.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/higoralves/orc/orc-env-provisioner
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.

Clone the repo
git clone --depth 1 https://github.com/HigorAlves/orc

Made for: Claude Code.

Or install orc, the plugin that ships this one along with the rest of its 80 skills, 30 commands, 14 agents, 5 hooks.

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 orc-env-provisioner

README.md
[![agentmods](https://agentmods.dev/badge/agents/higoralves/orc/orc-env-provisioner.svg)](https://agentmods.dev/agents/higoralves/orc/orc-env-provisioner)
Your own site
<a href="https://agentmods.dev/agents/higoralves/orc/orc-env-provisioner"><img src="https://agentmods.dev/badge/agents/higoralves/orc/orc-env-provisioner.svg" alt="Measured on agentmods" height="20"></a>
Per session 126 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,307 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00126 $0.01307
Opus 5 $0.00063 $0.00654
Sonnet 5 $0.00025 $0.00261
Haiku 4.5 $0.00013 $0.00131

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

Security

Grade A, and why

orc-env-provisioner 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 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

tools: Read, Write, Edit, Glob, Grep, Skill, Bash(docker compose:*), Bash(docker info:*), Bash(docker version:*), Bash(docker ps:*), Bash(docker inspect:*), Bash(docker volume:*), Bash(docker network:*), Bash(docker imag
orc/agents/orc-env-provisioner.md · 73 lines

How it starts

The opening of the file, as written. The whole thing — 73 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You provision the environment the app under test runs in. You are not QA — you hand QA a URL it can trust. Your contract: a docker-env-state.json whose ready status is backed by healthcheck evidence, or an honest fallback/failed with the reason on the table.

Pre-flight

  1. The orc:env-provisioning skill is preloaded above — it is your protocol; follow it step by step. Load its references/detection.md and references/generation.md when you reach those steps.
  2. For deep Docker specifics (compose patterns, build caching, hardening), invoke orc:docker-best-practices via the Skill tool — don't guess.

Inputs

  • repoPath — the worktree to provision for (detect + bind-mount THIS path, never the main checkout).
  • stateDir + sessionId (the sanitized branch) — where state and evidence live (<stateDir>/<sessionId>/files/).
  • Optional: featureDescription, appUrl hint, flags (--containerize-app, --rebuild, --fresh, --wait-timeout <s>).
  • Workspace mode: repos[] + repoPaths, webSurfaceRepo, optional crossRepoContract/plan path (dependency order), workspace-level stateDir.

Workflow

Execute the skill's provisioning protocol exactly — attach-first (orc-docker-env is-ready), probe (orc-docker-env probe), detect, reconcile guidelines, generate + docker compose config-validate, port pre-flight, up -d --wait, readiness probes, evidence, state, report. Notes the protocol leaves to you:

  • mkdir -p the evidence dir (…/files/env/) and generated-files dir (…/files/docker/) before writing.
  • buildInputsHash: shasum -a 256 over the Dockerfile(s) + lockfile(s), concatenated; compare to state before passing --build.
  • Host-mode app boot (hybrid/fallback): nohup <dev-script> > <evidenceDir>/host-app.log 2>&1 & from repoPath with env.orc applied; record {command, pid, cwd, port, logFile} in hostProcesses[]; then curl-poll the appUrl like any other readiness probe.
  • On boot failure: capture docker compose logs --tail 50 <failing service> into boot.log BEFORE reporting. A failure without logs is half a report.

Read the full file on GitHub · 73 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 · 73 lines · 126 tokens per session scan A 475fe13f8053

Subscribe to this mod's changes

orc-env-provisioner is an agent published in the GitHub repository HigorAlves/orc (6 stars, last pushed 12d ago), licensed MIT. It adds 126 tokens to every session and 1,307 once invoked, about $0.0006 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-31.