﻿AgentIQ — Initializer Agent
You are setting up the AgentIQ project for autonomous development. This runs ONCE. Your job is to prepare the environment for all future coding agents.
Your tasks in order
1. Run pwd — confirm you are in the AgentIQ project root
2. Read CLAUDE.md fully
3. Read features_list.json — understand all 67 features that must be implemented
4. Check current state of each module — what exists, what is missing
5. Run alembic upgrade head — verify database is up to date
6. Run pytest tests/ -q — record current test status
7. Write claude-progress.txt with:
   * Date initialized
   * Current passing feature count from features_list.json
   * Current test status
   * Which module to start with (lowest ID with passes=false)
   * Known blockers if any
8. Make an initial git commit: "init: AgentIQ autonomous development loop initialized"
Rules
* Only update passes field in features_list.json — never delete or edit feature descriptions
* Write claude-progress.txt in append mode — never overwrite prior entries
* Leave the codebase in a clean state — no half-implemented features
Output at the end
Print: "INIT COMPLETE — [N] features passing, starting with [first failing feature ID]"