Agent Skills

Yuzool For Agents

Use Yuzool as an outcome engine for creator workflows: invoices, widgets, landing builds, and intent routing.

Use natural language exactly like the dashboard: for example, “invoice a client Momentum” or “build a launch widget”.

Open API + Agents page · Manage Agent Keys

Core Endpoints

POST /api/agents/invoice/create create invoice + PDF + optional payment link

POST /api/agents/invoice/draft + POST /api/agents/invoice/confirm for safe draft/confirm/send invoice flow

POST /api/agents/widgets/generate generate widget/page output from prompt

POST /api/agents/widgets/revise apply targeted section patches without full regeneration

POST /api/agents/storefront/build generate full product page + cart/checkout ops payload

POST /api/agents/content/repurpose one prompt to blog, LinkedIn, email, X thread, page sections, and promo graphics briefs

POST /api/agents/membership/build build course/membership mini-site + Stripe subscription + onboarding drip plan

POST /api/agents/clips/factory turn long-form videos into Shorts/Reels/TikTok clip packs with captions + thumbnail briefs

POST /api/agents/directory/build create searchable directories with submission forms and monetized featured listings

POST /api/agents/outreach/build build automated outreach campaigns with lead list, personalization, send cadence, reply triage, and CRM sync

POST /api/agents/business-box/build launch complete business systems (coaching, agency lead gen, digital shop, newsletter, local service) in one command

POST /api/agents/business-box/revise revise a business system with targeted focus areas without regenerating the full plan

POST /api/agents/intent route natural-language command to a Yuzool tool

GET /api/agents/status/:jobId check job status

GET /api/agents/mcp discover MCP tool definitions

MCP aliases: create_landing_page, send_invoice, get_invoice_status, build_storefront, create_checkout_flow, repurpose_content, build_membership_site, youtube_clip_factory, build_directory_marketplace, build_outreach_campaign, build_business_in_a_box, revise_business_in_a_box.

Quota behavior: hard cap. If exceeded, API returns 429 RATE_LIMIT_EXCEEDED with overage_policy and upgrade metadata.

Get Started

1) Activate Agent Starter plan.

2) Open Agent Keys to create a scoped key.

3) Give your agent that key and let it call Yuzool endpoints directly.

Natural-Language Examples

Try these commands in your agent:

invoice a client Momentum Labs for $2,400

build a launch widget for my homepage

make a landing page for my AI bookkeeping studio

build a storefront and checkout for my digital products

repurpose this product launch into blog, LinkedIn, email, X thread, and page sections

build a course membership mini-site with Stripe subscriptions and onboarding drip

clip this podcast into YouTube Shorts and Reels with captions and hooks

build a searchable directory with submission form and monetized listings

build an automated outreach campaign with lead list, personalization, cadence, reply triage, and CRM sync

launch a business-in-a-box for a newsletter biz

Copy-Paste Agent Calls

Route natural language:

{
  "command": "invoice a client Momentum"
}

Create invoice outcome:

{
  "client": { "name": "Momentum Labs", "email": "ops@momentum.test" },
  "items": [
    { "description": "Design sprint", "quantity": 2, "unit_price": 800 },
    { "description": "Landing page build", "quantity": 1, "unit_price": 1200 }
  ],
  "stripe": { "create_payment_link": true }
}

Generate widget outcome:

{
  "prompt": "build a conversion-focused launch announcement widget"
}

Build storefront + checkout outcome:

{
  "prompt": "build a storefront and checkout for my digital products",
  "store_name": "Yuzool Launch Store",
  "products": [
    { "name": "Starter Pack", "description": "20 templates", "price": 79, "currency": "USD" },
    { "name": "Pro Pack", "description": "60 templates + playbook", "price": 199, "currency": "USD" }
  ]
}

Build Business-in-a-Box outcome:

{
  "prompt": "launch a business-in-a-box for a coaching business",
  "template": "coaching_business"
}

Revise Business-in-a-Box outcome:

{
  "prompt": "launch a digital product shop for creator templates",
  "template": "digital_product_shop",
  "instruction": "Increase conversion with stronger upsell and retention loops",
  "focus_areas": ["pricing presentation", "upsell sequencing", "email recovery"]
}

Try It Now

Paste your scoped key and run one request directly from this page.

No request yet.

Claude System Prompt

You are an autonomous workflow agent connected to Yuzool.
Use natural language requests and route them through Yuzool endpoints.

Auth:
- Always send Authorization: Bearer <AGENT_KEY>
- If 402 PAYMENT_REQUIRED: ask user to activate Agent Starter
- If 403 SCOPE_DENIED: ask user for broader scoped key

Flow:
1) For natural language, call POST /api/agents/intent first
2) For invoice outcomes, call POST /api/agents/invoice/create
3) For widgets, call POST /api/agents/widgets/generate
4) For storefront + checkout, call POST /api/agents/storefront/build
5) If needed, check GET /api/agents/status/:jobId

Output:
- Return concise result summaries + URLs
- Explain errors in plain language with next action

Cursor Instructions

Base URL: https://www.yuzool.com

Primary endpoints:
- POST /api/agents/intent
- POST /api/agents/invoice/create
- POST /api/agents/widgets/generate
- POST /api/agents/storefront/build
- GET /api/agents/mcp

Rules:
- Start with intent routing for natural-language requests
- Use Authorization: Bearer <AGENT_KEY>
- Reuse Idempotency-Key for safe retries
- Surface result URLs clearly

Quick Agent Prompt

"Create an invoice for Momentum Labs with 2 line items, return the PDF URL and payment link."

OpenAI Agents SDK Pack

Use the full OpenAI workflow + recovery examples at:

api/agents/examples/prompts/openai-agents-sdk.md

Copied