OpenClaw ยท Skill
Gumroad Pro
The skill requires a Gumroad API Key . It looks for the following environment variables (in order of preference):
Install
Start with the primary install command. Alternate entrypoints are included below for ClawHub and OpenClaw CLI users.
Primary command
clawhub install abdul-karim-mia/gumroad-proClawHub installer
npx clawhub@latest install abdul-karim-mia/gumroad-proOpenClaw CLI
openclaw skills install abdul-karim-mia/gumroad-proDirect OpenClaw install
openclaw install abdul-karim-mia/gumroad-proWhat this skill does
The skill requires a Gumroad API Key . It looks for the following environment variables (in order of preference):
Why it matters
Covers the full Gumroad merchant workflow from one interface instead of navigating multiple dashboard sections manually.
Typical use cases
- Verifying a customer's license key after a purchase dispute
- Processing a refund for a disputed digital product sale
- Creating discount codes before a product launch
- Marking a physical order as shipped after fulfillment
- Rotating a license key that was shared or compromised
Source instructions
Gumroad Pro
๐ AI PROTOCOL
- PRIORITIZE HANDLER: Always attempt to use the interactive button-based GUI (handled by
handler.js) for the best merchant experience. - CLI AS FALLBACK: Only use
scripts/gumroad-pro.jsvia the CLI for complex data retrieval or specific actions not available in the GUI. - USE --json: When using the CLI, ALWAYS use the
--jsonflag and check for"success": true. - REDUCE SPAM: Use
action: 'edit'inrenderResponsefor all menu transitions and state updates. Only useaction: 'send'for the initial menu or when the context fundamentally changes. - HANDLE ERRORS: Read the
"error"field in JSON responses to inform the user of failures.
โ Navigation & Data
- Primary Interaction: Use the adaptive logic in
handler.js. See handler-guide.md for interaction patterns, ui-rendering.md for rendering protocols, and changelog.md for version history. Respond with button callback data (e.g.,gp:products) or digits (1, 2, 3) where applicable. - Secondary Interaction: Use
scripts/gumroad-pro.jsfor direct actions. See api-reference.md for command specs.
๐ Authentication
The skill requires a Gumroad API Key. It looks for the following environment variables (in order of preference):
GUMROAD_ACCESS_TOKENAPI_KEY
Configuration
You can set this in your ~/.openclaw/openclaw.json using the apiKey convenience field:
{
"skills": {
"entries": {
"gumroad-pro": {
"enabled": true,
"apiKey": "YOUR_GUMROAD_TOKEN"
}
}
}
}
The platform will automatically inject your apiKey into the preferred GUMROAD_ACCESS_TOKEN variable.
๐ ๏ธ Workflows
Product Inventory
- List all digital assets to monitor sales and availability.
- Toggle publication status or delete obsolete items.
- View detailed product commands.
Sales & Fulfillment
- Search transactions by email.
- Process refunds or mark physical goods as shipped.
- View detailed sales commands.
Licensing
- Verify keys for software distribution.
- Manage usage counts or rotate keys for security.
- View detailed license commands.
Offer Management
- Create, list, or remove discount codes for marketing campaigns.
- View detailed discount commands.
Developed for the OpenClaw community by Abdul Karim Mia.