Documentation

Everything you need to ship with SpektS.

Quick start, deployment notes, and a tour of how the four agents debate your idea into a spec.

Get started

SpektS turns rough product ideas into rigorous project and implementation specs using a team of four AI agents (Explorer, Architect, Critic, Mediator). Submit an idea at the workbench or hit the REST API directly.

Minimum request

curl -X POST http://127.0.0.1:8000/api/runs \
  -H "Content-Type: application/json" \
  -d '{"mode":"idea_spec","idea":"A tool that organizes receipts and exports CSV"}'

With authentication

curl -X POST https://your-host/api/runs \
  -H "Authorization: Bearer $SPEKTS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"mode":"full","idea":"..."}'

Pipeline modes

  • idea_spec — project scope & architecture only. Fastest.
  • full — project spec plus full implementation plan with debate.

Keep exploring

Pick a guide from the sidebar for deep dives on local testing, architecture, and deployment.