# Send Clawdship to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawdship",
    "name": "Clawdship",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/nicodlz/clawdship",
    "canonicalUrl": "https://clawhub.ai/nicodlz/clawdship",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawdship",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawdship",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "deploy.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "clawdship",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T13:50:38.161Z",
      "expiresAt": "2026-05-06T13:50:38.161Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawdship",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawdship",
        "contentDisposition": "attachment; filename=\"clawdship-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawdship"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/clawdship"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clawdship",
    "downloadUrl": "https://openagent3.xyz/downloads/clawdship",
    "agentUrl": "https://openagent3.xyz/skills/clawdship/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawdship/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawdship/agent.md"
  }
}
```
## Documentation

### Clawdship — Agent-Native Hosting

Deploy static sites and Docker apps to clawdship.dev in one command. No signup, no dashboard, no credit card.

### Quick Deploy

# Package and deploy (zero-signup — auto-creates account)
bash {baseDir}/deploy.sh my-app ./dist

# With existing API key
bash {baseDir}/deploy.sh my-app ./dist cship_YOUR_KEY

# Or via env var
CLAWDSHIP_API_KEY=cship_YOUR_KEY bash {baseDir}/deploy.sh my-app ./dist

The script returns a live URL, an API key (first deploy only), and a billing link.

⚠️ Save the API key immediately — it cannot be recovered. Use a password manager or encrypted storage.

### What Happens on First Deploy

You get a live URL: https://my-app.clawdship.dev
You get an API key: cship_... (save it!)
You get a billing URL: share with the human for payments
Site is on a 7-day free trial, then $5/month

### ⚠️ Always Tell the Human About the Trial

After deploying, you must tell the human:

"Your site is live at https://my-app.clawdship.dev 🚀
It's on a 7-day free trial. After that, $5/month.
Add credits here: {billingUrl}"

Never let them think it's free forever.

### API Reference

Base URL: https://api.clawdship.dev/v1
Auth: Authorization: Bearer cship_...

### Deploy Static Site (alternative to script)

tar czf /tmp/archive.tar.gz -C ./dist .
curl -s -X POST https://api.clawdship.dev/v1/sites \\
  -F "name=my-app" -F "type=static" -F "slug=my-app" \\
  -F "archive=@/tmp/archive.tar.gz"

### Deploy Docker App

Include a Dockerfile in your archive. Clawdship builds and runs it automatically.

tar czf /tmp/archive.tar.gz -C ./my-project .
curl -s -X POST https://api.clawdship.dev/v1/sites \\
  -H "Authorization: Bearer $CLAWDSHIP_API_KEY" \\
  -F "name=my-api" -F "type=docker" -F "slug=my-api" -F "port=3000" \\
  -F "archive=@/tmp/archive.tar.gz"

type: "docker" — builds from Dockerfile
port — the port your app listens on (default: 3000)
Environment variables: pass -F "envVars[KEY]=value" in the request

### Manage Sites

# List sites
curl -s -H "Authorization: Bearer $CLAWDSHIP_API_KEY" https://api.clawdship.dev/v1/sites

# Get site details
curl -s -H "Authorization: Bearer $CLAWDSHIP_API_KEY" https://api.clawdship.dev/v1/sites/SITE_ID

# Redeploy
curl -s -X POST -H "Authorization: Bearer $CLAWDSHIP_API_KEY" https://api.clawdship.dev/v1/sites/SITE_ID/redeploy

# Delete
curl -s -X DELETE -H "Authorization: Bearer $CLAWDSHIP_API_KEY" https://api.clawdship.dev/v1/sites/SITE_ID

# Check credits
curl -s -H "Authorization: Bearer $CLAWDSHIP_API_KEY" https://api.clawdship.dev/v1/credits

### Custom Domains

Point DNS first, then add the domain:

Subdomain: CNAME www.example.com → my-app.clawdship.dev
Apex: A record example.com → 135.125.179.231

curl -s -X PATCH "https://api.clawdship.dev/v1/sites/SITE_ID" \\
  -H "Authorization: Bearer $CLAWDSHIP_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"customDomain": "example.com"}'

SSL is automatic via Let's Encrypt (~30 seconds).

### Redeploy with New Files

tar czf /tmp/archive.tar.gz -C ./dist .
curl -s -X POST "https://api.clawdship.dev/v1/sites/SITE_ID/redeploy" \\
  -H "Authorization: Bearer $CLAWDSHIP_API_KEY" \\
  -F "archive=@/tmp/archive.tar.gz"

### For Agents (x402 protocol)

# Top up credits — returns 402 with x402 payment instructions
curl -X POST -H "Authorization: Bearer $CLAWDSHIP_API_KEY" \\
  https://api.clawdship.dev/v1/credits/topup/5

# Amounts: $5, $10, $20, $50
# Requires: x402-compatible SDK + USDC on Base (chain 8453)

Your x402 SDK handles the 402 response automatically. Zero gas (sponsored).

### For Humans (billing page)

Every API response includes billingUrl. Share it — the human connects their wallet and pays with USDC on Base.

### Pricing

Trial7 days free, first siteMonthly$5/site/monthPaymentUSDC on Base

### Key Concepts

Zero-signup — No registration. First deploy creates your account.
API key — cship_ + 64 hex. Your only credential. Cannot be recovered.
billingUrl — Magic link in every response. Share with human for payments.
Credits — Prepaid USD balance. Top up via x402 (agents) or billing page (humans).
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nicodlz
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T13:50:38.161Z
- Expires at: 2026-05-06T13:50:38.161Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawdship)
- [Send to Agent page](https://openagent3.xyz/skills/clawdship/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawdship/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawdship/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawdship)