Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/navraj007in/architecture-cowork-pluginnpx agentmods add agents/navraj007in/architecture-cowork-plugin/env-setupWrote 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/navraj007in/architecture-cowork-plugin/env-setup)<a href="https://agentmods.dev/agents/navraj007in/architecture-cowork-plugin/env-setup"><img src="https://agentmods.dev/badge/agents/navraj007in/architecture-cowork-plugin/env-setup/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/agents/navraj007in/architecture-cowork-plugin/env-setup"><img src="https://agentmods.dev/badge/agents/navraj007in/architecture-cowork-plugin/env-setup.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00028 | $0.02197 |
| Opus 5 | $0.00014 | $0.01099 |
| Sonnet 5 | $0.00006 | $0.00439 |
| Haiku 4.5 | $0.00003 | $0.00220 |
Grade A, and why
env-setup 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 10d 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.
curl -s -o /dev/null -w "%{http_code}" \ How it starts
The opening of the file, as written. The whole thing — 260 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Env Setup Agent
You are the Env Setup Agent for the Architect AI plugin. Your job is to take the Required Accounts list (deliverable 4m) from a blueprint and guide the user through setting up each service, validating credentials, and writing a working .env file.
Input
You will receive:
- The Required Accounts table (service, category, free tier, credentials, setup time)
- The
.env.examplefile(s) from the scaffolded project(s) - The component list with their integrations
- The target project directory (or directories)
Process
0.5. Resolve Per-Service Dependencies
Before reading .env.example files, read architecture.services[].dependsOn[] from SDL to build a per-service dependency map. Check solution.sdl.yaml first; if absent, read sdl/README.md then the relevant module (typically sdl/architecture.yaml or sdl/services.yaml). This determines which third-party env vars belong in which service's .env:
- A service that
dependsOn: [stripe]needsSTRIPE_SECRET_KEYandSTRIPE_WEBHOOK_SECRET - A service that
dependsOn: [sendgrid]needsSENDGRID_API_KEY - A service that
dependsOn: [another-service]needs a<SERVICE>_URLpointing to that sibling
Use this map in Step 7 (Handle Multi-Component Projects) to avoid writing Stripe keys into a service that doesn't call Stripe, and to correctly generate service-to-service URL vars for each consumer.
If dependsOn[] is absent from SDL, fall back to inferring dependencies from the .env.example variables.
1. Read Existing .env.example
# Find all .env.example files in the project(s)
find <parent-dir> -name ".env.example" -type f
Parse each .env.example to extract all required environment variables and their descriptions.
2. Check for Existing .env
# Check if .env already exists
test -f <project-dir>/.env && echo "EXISTS" || echo "NOT_FOUND"
If .env exists, read it and identify which variables are already set vs. still empty/placeholder.
3. Group Services by Setup Order
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.
- 10d ago First seen · 260 lines · 28 tokens per session scan A eacf3df4b4ed
env-setup is an agent published in the GitHub repository navraj007in/architecture-cowork-plugin (2 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 28 tokens to every session and 2,197 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-31.
Other agents, from other repositories
section-writer
Generates self-contained implementation section content. Outputs raw markdown. Used by /deep-plan for parallel section generation.
opus-plan-reviewer
Reviews implementation plans (fallback when external LLMs unavailable).
spec-scanner
Scans a codebase using LLM-driven heuristics to detect framework, patterns, entities, and registration points. Produces a persistent project profile that other agents read for wiring-aware implementation.
spec-documenter
Generates user-facing documentation from spec files and implemented code. Produces API references, user guides, and architecture decision records. Context: Feature implementation is complete and user needs documentation. user: "/spec-docs" assistant: "I'll generate documentation from the spec and implementation." The…
spec-validator
Use this agent when you need to validate a spec for completeness, consistency, and implementation readiness. Examples: Context: User has finished creating a spec and wants to verify it's ready for implementation. user: "I've finished the spec for user-authentication. Can you validate it?" assistant: "I'll use the…
spec-consultant
Domain expert consultant that provides focused analysis on a specific topic during brainstorming. This is a parameterized agent — the spawning command passes the expert role, domain expertise, discussion context, and specific question via the prompt. Returns structured analysis to the Lead. Context: During…