Getting Started
Use the Agentic AI Platform from the product page demo or inside a workspace project.
Public demo (no login)
- Open Agentic AI Platform
- Click a PDLC stage in the cycle (Discover → Iterate)
- Use a suggestion chip or type a request
- The agent responds in context of that stage via
POST /agent/demo
Workspace (full experience)
- Register or log in → Dashboard
- Create a project — any language/template
- Open workspace —
/workspace/{slug} - Open AI Chat — toggle the right panel → AI Chat tab
- Use the PDLC stage strip — click a stage or use Advance stage
- Describe your goal — the agent follows the active stage's role and tools
Example flow: build a todo app
| Step | Stage | Prompt example |
|---|---|---|
| 1 | Discover | "Discover requirements for a personal todo app" |
| 2 | Design | "Design the architecture and UX" |
| 3 | Develop | "Implement the todo app with localStorage" |
| 4 | Test | "Run the app and fix any issues" |
| 5 | Deploy | "Publish a preview" |
| 6 | Iterate | "Add due dates to the backlog for next cycle" |
Switching domains
Use the domain dropdown in workspace AI Chat to switch between PDLC and expandable packs (Cyber Security, Product Research stubs).
API quick start
# Public demo
curl -X POST http://localhost:8000/agent/demo \
-H "Content-Type: application/json" \
-d '{"message":"Discover requirements for a todo app","domain":"pdlc","stage":"discover"}'
# Authenticated chat (requires project)
curl -X POST http://localhost:8000/agent/chat \
-H "Content-Type: application/json" \
-d '{"message":"What stage am I in?","project_slug":"my-app","domain":"pdlc","stage":"develop"}'
See API Reference for full endpoint details.