A simple Flask REST API for testing the AgentSquad autonomous development toolkit.
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txtpython app.pypytestGET /health— Health checkGET /items— List all itemsPOST /items— Create an itemGET /items/<id>— Get a single itemDELETE /items/<id>— Delete an item