File size: 506 Bytes
0e3d4b8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | """AI Agents package — 5 persistent agents that work on goals and projects.
Agents:
- PlannerAgent: breaks goals into steps, generates execution plans
- CoderAgent: writes code, creates files, debugs
- ResearcherAgent: gathers information, analyzes topics
- ReviewerAgent: reviews work, validates quality, finds issues
- ExecutorAgent: executes commands, runs tools, deploys
All agents run persistently in background threads, picking up goals
from the goal memory and working on them continuously.
"""
|