Awesome-openclaw-skills stripe

Stripe payment platform integration. Manage payments, subscriptions, invoices, and customers via Stripe API.

install
source · Clone the upstream repo
git clone https://github.com/sundial-org/awesome-openclaw-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/stripe" ~/.claude/skills/sundial-org-awesome-openclaw-skills-stripe && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/stripe" ~/.openclaw/skills/sundial-org-awesome-openclaw-skills-stripe && rm -rf "$T"
manifest: skills/stripe/SKILL.md
source content

Stripe 💵

Stripe payment platform integration.

Setup

export STRIPE_API_KEY="sk_live_..."

Features

  • Create payment intents
  • Manage subscriptions
  • Send invoices
  • Customer management
  • Refund processing
  • Webhook handling

Usage Examples

"Create a $50 payment link"
"List recent Stripe payments"
"Refund payment pi_xxx"
"Show subscription for customer@email.com"

API Reference

# List recent charges
curl -s https://api.stripe.com/v1/charges?limit=10 \
  -u "$STRIPE_API_KEY:"