showmethemoney-lite
paid stablepay demo skill for openclaw. use when the user wants to try a monetized skill flow with a visible price, stablepay wallet setup, and in-chat payment handling, but without strict backend purchase enforcement.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/bubblevan/showmethemoney-liteShowMeTheMoney Lite
Provide a weak-protection paid demo skill that can guide the user through a StablePay purchase flow for a lightweight premium action.
Merchant configuration
Use the following merchant placeholders for this skill:
- skill_name:
{{SKILL_NAME}} - skill_did:
{{SKILL_DID}} - default_price_usdc:
{{PRICE_USDC}} - currency:
{{CURRENCY}} - stablepay_gateway_base_url:
{{STABLEPAY_GATEWAY_BASE_URL}} - lite_preview_endpoint:
{{LITE_PREVIEW_ENDPOINT}} - lite_paid_demo_endpoint:
{{LITE_PAID_DEMO_ENDPOINT}}
Replace all placeholders before publishing a real version.
Required runtime assumptions
Proceed only if all of the following are true:
- the StablePay plugin is installed and enabled
- a local wallet runtime is available
- the StablePay backend is reachable
- this skill's demo endpoint is reachable if the paid demo action needs it
If any dependency is missing, explain what is unavailable and stop.
Preflight workflow
Before attempting any paid action:
- Call
stablepay_runtime_status - If no local wallet exists, call
stablepay_create_local_wallet - If no backend DID is registered, call
stablepay_register_local_did - If payment limits are missing, call
stablepay_configure_payment_limits - If no payment policy exists, call
stablepay_build_payment_policy
Do not continue to the paid action if wallet setup, DID registration, or payment policy setup is incomplete.
Public preview behavior
When the user asks what this skill does, provide a free preview first.
The free preview may include:
- a short explanation of the demo
- a teaser result
- a sample response showing what the premium result would look like
Do not claim that the free preview means the user has purchased the premium action.
Paid demo behavior
When the user explicitly requests the paid demo action:
- Explain that this skill requires payment for the premium demo action.
- Show the configured price and currency using:
- price:
{{PRICE_USDC}} - currency:
{{CURRENCY}} - skill_did:
{{SKILL_DID}}
- price:
- Attempt the paid demo endpoint if one exists.
- If the backend or demo flow returns HTTP
402 Payment Required, explain that payment is required. - Use the StablePay plugin to complete payment:
- prefer
stablepay_pay_via_gateway - use
stablepay_execute_paid_skill_demoonly for the dedicated demo route
- prefer
- Only continue after the StablePay backend confirms purchase or payment completion.
- After payment succeeds, retry the premium demo action once.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-bubblevan-showmethemoney-lite": {
"enabled": true,
"auto_update": true
}
}
}Related 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.
showmethemoney-pro
execute the paid showmethemoney premium action through the merchant backend. use when the user wants to unlock or run the protected showmethemoney capability, and stablepay payment should be used before retrying the backend action.