cp .env.example .env && pip install -r requirements.txt
python -m labs.exercise_03_1_beginner.agent
cd infrastructure/terraform/environments/dev && terraform init && terraform plan├── core/agent_base.py # ReAct loop, tool registry, cost tracker
├── labs/exercise_03_*/ # 4 exercises (beginner → stretch)
├── infrastructure/terraform/modules/ # runtime, datastore, gateway
├── infrastructure/docker/Dockerfile # Multi-stage production image
├── tests/ # pytest tests
├── .github/workflows/deploy.yml # lint → test → tf validate
└── docs/ # Architecture, practices, concepts
AgentForge v1.0 · MIT · kogunlowo123