Getting Started
Use the public demo, Agentic Studio, or a workspace project.
Agentic Studio (configure packs)
- Log in → open Studio
- Models — bind OpenAI, Anthropic, or a custom OpenAI-compatible endpoint
- Skills — write prompt overlays and tool allowlists
- Agents — pick a model, attach skills, set role/prompt
- Workflows — create a pack (pdlc / sdlc / custom) or clone the system PDLC pack
- Open the graph editor — add agent/gate/branch nodes, link edges, save
- Click Run to open a workspace bound to that pack
Public demo (no login)
- Open Agentic AI Platform
- Click a PDLC stage and chat via
POST /agent/demo
Workspace (run packs)
- Dashboard → create or open a project → workspace
- AI Chat tab → choose a workflow pack from the dropdown
- Use the stage strip or Advance stage
- Link to Studio from the workflow bar to edit packs
Example: build a todo app (seeded PDLC)
| 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" |
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"}'
# List packs (auth)
curl http://localhost:8000/agent/workflows
# Studio — create a skill (auth cookie/session)
curl -X POST http://localhost:8000/studio/api/skills \
-H "Content-Type: application/json" \
-d '{"name":"Review","prompt_md":"Review code for bugs.","tool_allowlist":["list_files","read_file"]}'
See API Reference for Studio and agent endpoints.