{
  "name": "yuzool-agent-examples",
  "version": "1.0.0",
  "base_url": "https://www.yuzool.com",
  "auth": {
    "header": "Authorization: Bearer <AGENT_KEY>"
  },
  "examples": [
    {
      "id": "intent_invoice_draft",
      "description": "Route a natural-language invoice command into draft/confirm flow.",
      "method": "POST",
      "path": "/api/agents/intent",
      "body": {
        "command": "invoice a client Momentum Labs for 1200 usd tax 10% due 2026-05-30 billing@momentumlabs.com"
      }
    },
    {
      "id": "widgets_generate_landing",
      "description": "Generate standalone landing page code from prompt.",
      "method": "POST",
      "path": "/api/agents/widgets/generate",
      "body": {
        "prompt": "make a landing page for my AI bookkeeping studio",
        "mode": "pagemint"
      }
    },
    {
      "id": "widgets_revise_patch",
      "description": "Patch specific fields on generated output without full regeneration.",
      "method": "POST",
      "path": "/api/agents/widgets/revise",
      "body": {
        "instruction": "Tighten hero CTA",
        "mode": "widget",
        "source_html": "<section class=\"yz-launch-widget\"><h3 class=\"yz-launch-title\">Old</h3><p class=\"yz-launch-sub\">Old sub</p><a class=\"yz-launch-btn\" href=\"/waitlist\">Join waitlist</a></section>",
        "section_patches": [
          { "field": "title", "value": "Launch this week" },
          { "field": "subtitle", "value": "Limited early access" },
          { "field": "button_label", "value": "Start Free" },
          { "field": "button_url", "value": "/start" }
        ]
      }
    }
  ]
}
