Build a Deployment Agent
Build it → A full CI/CD pipeline the agent cannot skip. Lint, test, approval, deploy.
- Chained dependencies
- Human approval gates
- Session rate limits
- Pipeline resets
require lint before test
require test before deploy
require human-approval before deploy
limit deploy to 2 per session
Build a DevOps Assistant
Build it → One agent, five domains, ten rules. Everything composes.
- Cross-domain composition
- Independent verification
- Free tools
- Production-scale safety
require slack.readMessages before slack.sendMessage
require lint before test
require human-approval before deploy
block rm
Beyond Rules: Workflow Safety
Build it → A deployment pipeline with resource tokens, branching, and verified mutual exclusion.
- Resource tokens
- Mutual exclusion
- Workflow branching
- Formal verification
[idle:1] → build → [building]
→ test → stage → canary
→ promote | rollback → [idle]