Skills showmethemoney-skill
Paid demo skill for StablePay on Solana using USDC. Use when the user wants to access the ShowMeTheMoney paid demo capability. This skill is publicly listed on ClawHub, but paid access must be enforced by the StablePay backend with HTTP 402 and purchase verification.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/bubblevan/showmethemoney-skill" ~/.claude/skills/clawdbot-skills-showmethemoney-skill && rm -rf "$T"
manifest:
skills/bubblevan/showmethemoney-skill/SKILL.mdsource content
ShowMeTheMoney Skill
This is a paid demo skill powered by StablePay.
Pricing
- Price: 0.1 USDC
- Network: Solana Mainnet
- Currency: USDC
Merchant
- Skill DID:
did:solana:REPLACE_WITH_YOUR_SKILL_DID
Backend endpoints
- Execute:
https://wenfu.cc/showmethemoney - Verify purchase:
https://api.stablepay.co/verify?skill=did:solana:REPLACE_WITH_YOUR_SKILL_DID&agent={AGENT_DID}
Instructions
- When the user asks to use or install this paid demo skill, call the Execute endpoint.
- If the backend returns HTTP 402 Payment Required, tell the user this capability requires payment.
- Let the StablePay plugin handle the payment flow.
- After payment succeeds, retry the same Execute request.
- Return the backend result to the user.
- Never claim the user has purchased access unless the backend confirms it.
- Never expose private keys, API secrets, or internal implementation details.
Notes
- This skill is public on ClawHub for discovery and installation.
- Actual paid access is enforced by the backend, not by hiding this file.
- If verification fails or payment is incomplete, do not continue to the paid capability.