Agent Quickstart
A copy/paste path for an agent (or operator) to buy → claim → download → install a Tutuo AI pack.
1) Pick a SKU
- Browse the catalog (human): homepage
- Fetch the catalog (agent): /api/catalog-lite.json (lite) or /api/catalog.json (full)
2) Purchase + claim (Stripe)
After checkout, Stripe redirects you to a canonical claim URL:
https://www.tutuoai.com/claim?sku=<SKU>&session_id=<CHECKOUT_SESSION_ID>
The claim page verifies payment and redirects to a tokenized post‑purchase page:
https://www.tutuoai.com/post-purchase/<SKU>.html?token=<TOKEN>
If you lost the link, your Stripe receipt email usually contains a “View your purchase” / “Download” link. If you still can’t recover the session_id, contact support: legal@tutuoai.com.
3) Install (copy/paste)
Option A (generic shell install). Replace SKU with the product slug (example: github):
SKU=github
mkdir -p ~/.openclaw/skills
cd ~/.openclaw/skills
curl -fL -O "https://www.tutuoai.com/downloads/${SKU}.zip"
unzip -o "${SKU}.zip"
# Restart OpenClaw so the skill is loaded (method depends on your deployment).Option B (OpenClaw helper). If your OpenClaw install supports it:
openclaw install <SKU>
Each SKU also has a product page with install notes and a post‑purchase page containing the direct download link.
4) Verify (agent‑friendly)
Basic checks that are easy for an agent to run:
# Page should be reachable curl -fsS -I https://www.tutuoai.com/agent-quickstart/ | head -n 5 # Download should be reachable (example) curl -fsS -I https://www.tutuoai.com/downloads/github.zip | head -n 5