File:
agents/sdlc/00-environment.md · Model: Sonnet · Tools: Bash, Read, WritePurpose
Agent Zero is the SDLC entry point. It runs before any planning or implementation decision is made. It produces an honest snapshot of exactly what the current machine has — so every downstream agent can plan accordingly.What it does
- Detects installed tools (Node, Python, Docker, databases, cloud CLIs, etc.)
- Checks required environment variables
- Installs free fallback alternatives for missing tools
- Produces
environment_report.json
Why it matters
Every downstream agent’s decisions flow from this report:- Architecture choices depend on what runtimes are available
- Test runner selection depends on what testing tools exist
- Deployment strategy depends on whether Docker/Kubernetes are present
DONE_WITH_CONCERNS beats a blocked pipeline every time.