API process
src/main.py and generated routes.
Opinionated scaffolds for agent-assisted projects.
Starter repos for humans and agents.
Files, commands, tests, docs, and boundaries from one project intent.
kickstart create service api --lang python --database postgres --cache redis --auth jwt
./Dockerfile
./Makefile
./pyproject.toml
./requirements.txt
./.env.example
./src/main.py
./src/routes/health.py
./src/routes/users.py
./src/clients/database.py
./src/clients/cache.py
./src/handler/auth.py
./src/model/repository.py
./migrations/001_initial.sql
./tests/test_smoke.py
./.kickstart/scaffold.json
./AGENTS.md
./docs/architecture/README.md
./docs/contracts/README.md
./docs/operations/README.md
./docs/decisions/README.md
Writes a Python API with Dockerfile, Postgres/Redis clients, JWT hook, migrations, docs, and tests.
src/main.py and generated routes.
src/clients/database.py plus migration SQL.
src/clients/cache.py and dependency entries.
src/handler/auth.py extension hook.
Dockerfile builds the app; services are explicit.
Turns a stack profile into a deterministic starter repo.
Writes layout, docs, commands, and boundaries.
Same input, same starting shape.
It is intentionally narrow.
It does not design the domain model.
It does not run every dependency for you.
First supported release line for typed scaffolds, release assets, and Worker website deployment.