Resources / Agentic AI / Getting Started

Getting Started

Use the Agentic AI Platform from the product page demo or inside a workspace project.

Public demo (no login)

  1. Open Agentic AI Platform
  2. Click a PDLC stage in the cycle (Discover → Iterate)
  3. Use a suggestion chip or type a request
  4. The agent responds in context of that stage via POST /agent/demo

Workspace (full experience)

  1. Register or log in → Dashboard
  2. Create a project — any language/template
  3. Open workspace/workspace/{slug}
  4. Open AI Chat — toggle the right panel → AI Chat tab
  5. Use the PDLC stage strip — click a stage or use Advance stage
  6. 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.