# Send Stripe CLI 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "stripe-cli",
    "name": "Stripe CLI",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/kesslerio/stripe-cli",
    "canonicalUrl": "https://clawhub.ai/kesslerio/stripe-cli",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/stripe-cli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=stripe-cli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "config/shapescale-presets.json",
      "package.json",
      "patterns/examples.md",
      "scripts/shapescale-ext.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "stripe-cli",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T12:23:15.751Z",
      "expiresAt": "2026-05-16T12:23:15.751Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=stripe-cli",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=stripe-cli",
        "contentDisposition": "attachment; filename=\"stripe-cli-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "stripe-cli"
      },
      "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/stripe-cli"
    },
    "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/stripe-cli",
    "downloadUrl": "https://openagent3.xyz/downloads/stripe-cli",
    "agentUrl": "https://openagent3.xyz/skills/stripe-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/stripe-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/stripe-cli/agent.md"
  }
}
```
## Documentation

### Stripe CLI Skill 🧾

A universal Moltbot skill wrapping Stripe CLI for payment processing, webhook testing, and API operations. Includes optional ShapeScale-specific extensions for clinic management.

### What It Does

Process payments, refunds, and subscriptions
Manage customers and invoices
Test webhooks locally
Execute generic API calls to Stripe
ShapeScale extensions (optional): Clinic presets, subscription plans, order integration

### 1. Install Stripe CLI

macOS:

brew install stripe/stripe-cli/stripe

Linux:

# Download from https://github.com/stripe/stripe-cli/releases
wget https://github.com/stripe/stripe-cli/releases/download/v1.34.0/stripe_1.34.0_linux_amd64.deb
sudo dpkg -i stripe_1.34.0_linux_amd64.deb

Authenticate:

stripe login

### 2. Set Environment Variable

export STRIPE_SECRET_KEY=sk_test_your_key_here

Or use 1Password:

op read "op://Stripe/Secret Key" --vault Personal

### 3. Clone to Skills

cd ~/.moltbot/skills/
git clone https://github.com/mkessler/stripe-cli-moltbot-skill.git stripe

### Universal Commands

InvocationDescriptionCreate a test customer for $50Creates customer + $50 payment intentList my recent paymentsLists last 10 payment intentsCheck payment status for pi_xxxRetrieves payment intent detailsRefund payment pi_xxxRefunds the full amountTrigger payment_intent.succeeded webhookSimulates webhook eventListen for webhooks for 30sForwards webhooks to localhostGet customer details for cus_xxxRetrieves customer record

### ShapeScale Extensions (Optional)

Requires config/shapescale-presets.json:

InvocationDescriptionCreate clinic deposit for PracticeXYZCreates customer + deposit templateCreate monthly subscription for clinicCreates recurring payment from presetsGenerate invoice for order #1234Creates invoice from templateCheck order status 1234Cross-references with shapescale-db

### Universal

No config required. Uses STRIPE_SECRET_KEY environment variable.

### ShapeScale Presets (Optional)

Create config/shapescale-presets.json:

{
  "clinic_templates": {
    "standard": { "deposit": 5000, "terms": "net30" },
    "premium": { "deposit": 10000, "terms": "net30" }
  },
  "subscription_plans": {
    "monthly": { "amount": 39900, "interval": "month" },
    "annual": { "amount": 399000, "interval": "year" }
  },
  "tax_rate": 0.0875,
  "default_currency": "usd"
}

### Environment Variables

VariableRequiredDescriptionSTRIPE_SECRET_KEYYesStripe secret key (test or live)STRIPE_WEBHOOK_ENDPOINTNoWebhook forwarding URL (default: http://localhost:4242)SHAPESCALE_PRESETS_PATHNoPath to shapescale-presets.json

### File Structure

stripe/
├── SKILL.md                    # This file
├── scripts/
│   ├── stripe.sh               # Universal CLI wrapper
│   └── shapescale-ext.sh       # ShapeScale extensions (optional)
├── config/
│   └── shapescale-presets.json # Clinic/subscription templates
├── patterns/
│   └── examples.md             # Usage examples
└── README.md                   # Installation guide (auto-generated)

### State

Stateless — Pure function of inputs. All state lives in Stripe.

### Integration with Other Skills

SkillIntegrationshapescale-crmLink Stripe customer ID to CRM recordsshapescale-salesOrders → Payment intent creationcampaign-orchestratorFailed payment → Follow-up campaignshapescale-dbMatch payments to database orders

### Publishing

This skill is published to ClawdHub and available at:
https://github.com/mkessler/stripe-cli-moltbot-skill

### License

MIT License - see LICENSE file for details.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: kesslerio
- Version: 1.0.0
## 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-05-09T12:23:15.751Z
- Expires at: 2026-05-16T12:23:15.751Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/stripe-cli)
- [Send to Agent page](https://openagent3.xyz/skills/stripe-cli/agent)
- [JSON manifest](https://openagent3.xyz/skills/stripe-cli/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/stripe-cli/agent.md)
- [Download page](https://openagent3.xyz/downloads/stripe-cli)