PM, ops, and delivery workflow system

10 workflows / 57 examples / live Claude / exports ready

Menu and accountOpen or close

Navigate the product

You are here

HomeProduct page

Use the highlighted action paths in the header to keep moving through the product.

API docs

Use the toolkit programmatically from your own apps and automations.

The public API is available on the Advisory plan and returns structured sections for every supported workflow, making it suitable for internal PM tools, reporting automation, and workflow orchestration.

Endpoint

POST /api/v1/generate

  • - Authentication: `Authorization: Bearer <api-key>`
  • - Body: `moduleSlug`, `userInputs`, `exportFormat`, optional `promptOverrides`
  • - Response: structured sections, raw text, and persisted generation identifiers
  • - Access: Advisory plan only

Example request

curl -X POST "$APP_URL/api/v1/generate" \
  -H "Authorization: Bearer aipot_live_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "moduleSlug": "weekly-status-pack",
    "exportFormat": "json",
    "userInputs": {
      "project_updates": "Sprint 14 finished checkout hardening, bug burn-down improved, and release sign-off is pending security confirmation."
    }
  }'

Example response

{
  "module": {
    "slug": "weekly-status-pack",
    "title": "Weekly Status Pack"
  },
  "sections": [
    { "key": "overall_progress", "label": "Overall Progress", "content": "..." }
  ],
  "text": "## Overall Progress\n...",
  "savedOutputId": "uuid",
  "generationId": "uuid"
}

Best fit integrations

  • - Internal PM or delivery dashboards
  • - CRM or support tooling that needs structured summaries
  • - Reporting pipelines that standardize stakeholder or OKR outputs

What the response includes

  • - Structured section array keyed to the workflow schema
  • - The raw markdown text for direct export or audit
  • - Saved output and generation identifiers for internal tracing

Before you go live

  • - Issue a dedicated API key from account settings.
  • - Start with one workflow in a staging integration first.
  • - Add your own logging and secret rotation process around the API key.