gitextract_tdw_7erc/ ├── .gitignore ├── .python-version ├── CLAUDE.md ├── README.md ├── backend/ │ ├── __init__.py │ ├── config.py │ ├── council.py │ ├── main.py │ ├── openrouter.py │ └── storage.py ├── frontend/ │ ├── .gitignore │ ├── README.md │ ├── eslint.config.js │ ├── index.html │ ├── package.json │ ├── src/ │ │ ├── App.css │ │ ├── App.jsx │ │ ├── api.js │ │ ├── components/ │ │ │ ├── ChatInterface.css │ │ │ ├── ChatInterface.jsx │ │ │ ├── Sidebar.css │ │ │ ├── Sidebar.jsx │ │ │ ├── Stage1.css │ │ │ ├── Stage1.jsx │ │ │ ├── Stage2.css │ │ │ ├── Stage2.jsx │ │ │ ├── Stage3.css │ │ │ └── Stage3.jsx │ │ ├── index.css │ │ └── main.jsx │ └── vite.config.js ├── main.py ├── pyproject.toml └── start.sh