Local task manager with AI-powered task management.
cd backend
pip install -r requirements.txtAdd your Anthropic API key to .env:
ANTHROPIC_API_KEY=your-actual-key
Run:
python main.pyBackend runs at http://localhost:8000
cd frontend
pnpm install
pnpm run devFrontend runs at http://localhost:5173
Type natural language commands in the chat:
- "Create a task to buy groceries"
- "Mark buy groceries as complete"
- "Delete the groceries task"
- Make changes to SQLAlchemy models as needed
- Run
alembic revision --autogenerate -m "description of my changes"