Multi-agent security review running daily in production: architecture and findings

Architecture details
The security agent runs on a daily cron via launchd. It receives a diff of recent commits plus full codebase access. It checks against a structured vulnerability checklist that includes:
- IDOR
- Auth bypasses
- Injection vectors
- Secrets exposure
- Overly permissive routes
The agent files findings as P0/P1/P2 tasks in the work queue. A separate coding agent picks them up, fixes them, commits the changes, and deploys.
Coordination challenges and solutions
After 3 weeks running in production, the most interesting coordination challenge was conflict between the security agent and coding agent. Security flags something, coding fixes it, but then introduces a pattern in the next commit that security hasn't reviewed yet.
The solution implemented: daily-only runs (not per-commit) plus a "reviewed_through" marker so findings have commit context.
Performance observations
Claude was noted as unusually good at distinguishing "this looks vulnerable" from "this is definitely exploitable in this context." The false positive rate stayed manageable.
The system is part of a larger multi-agent setup at ultrathink.art that includes design, coding, marketing, ops, social, and the dedicated security agent.
📖 Read the full source: r/clawdbot
👀 See Also

User reports using Claude Cowork for tax preparation with complex self-employment returns
A Reddit user with self-employment experience used Claude Cowork to process 1099s and profit/loss statements, completing tax forms in minutes. They turned off data sharing and omitted SSNs for privacy.

Local Multi-Agent AI Setup on WSL Using OpenClaw and Ollama
A developer shares their architecture for running a multi-agent AI system on WSL Ubuntu 24.04 using OpenClaw as a gateway, with four specialized agents including one running locally on Ollama for zero API costs.

Developer Ships HTML5 Game Using Claude Chat Free Version
A developer with 20-year-old C game programming experience used Claude Chat's free version to build a modern HTML5 space shooter game over 30 days, working about an hour daily. The game includes procedural sounds, enemy AI, upgrade systems, and wave mechanics.

73-Year-Old Cardiac Patient Builds Health Tracking PWA with Claude AI
A 73-year-old with no coding experience and multiple cardiac conditions built ClinBridge, a Progressive Web App for health tracking, using Claude AI. The app tracks blood pressure, fluid intake, weight, heart rate, symptoms, meals, and activities, works completely offline, and is open source.