Initialize the AA Explorer project, install dependencies, and verify the setup
Trigger: "bootstrap", "setup", "init", "environment setup" Scope: project initialization + dependency installation + verification Time: ~10 minutes
node --version # >= 18 required
python --version # >= 3.11 required
which poetry && poetry --version
which pnpm && pnpm --version
mkdir -p aa-explorer/{backend/{app/{routers,services,models},tests,migrations},frontend,docs/bets,.claude/{skills,agents},.codex/agents}
cd aa-explorer
git init
cd backend
poetry env use python3.11
poetry install --with dev
poetry run python -c "import fastapi; import web3; print('✅ Backend deps OK')"
cd ../frontend
npx create-next-app@14 . --typescript --tailwind --eslint --app --src-dir --no-import-alias
npm install recharts swr clsx
npx next build 2>&1 | tail -3
cd ../backend
poetry run pytest -q
cd ..
# Copy files into .claude/skills/
# Copy files into .claude/agents/
# Copy files into .codex/agents/