Lucky Gumroad Automation
/install lucky-gumroad
Gumroad Automation Skill
Authentication
Session is pre-authenticated. Never log in manually. Always reuse the saved Chrome profile.
Chrome Profile
Path: /home/openclaw/gumroad-profile
Rules (non-negotiable):
- Always use
--user-data-dir=/home/openclaw/gumroad-profile - Never clear cookies
- Never use incognito/guest mode
- Never run as root
Quick Session Test
timeout 20 google-chrome \
--user-data-dir=/home/openclaw/gumroad-profile \
--headless=new --no-sandbox --disable-gpu \
--disable-dev-shm-usage \
--dump-dom https://gumroad.com/dashboard \
> /tmp/gumroad-test.html 2>/dev/null
grep -E "Dashboard/Index|logged_in_user|current_seller" /tmp/gumroad-test.html | head
- If grep returns lines → session valid ✅
- If URL is
/login?next=%2Fdashboard→ session expired ❌ (tell Ray)
Headless Chrome Launch (for automation)
google-chrome \
--user-data-dir=/home/openclaw/gumroad-profile \
--headless=new \
--no-sandbox \
--disable-gpu \
--disable-dev-shm-usage \
--remote-debugging-port=9222 \
"https://gumroad.com/dashboard" &
Puppeteer / Playwright
// Puppeteer
const browser = await puppeteer.launch({
headless: 'new',
userDataDir: '/home/openclaw/gumroad-profile',
args: ['--no-sandbox', '--disable-gpu', '--disable-dev-shm-usage']
});
// Playwright
const context = await chromium.launchPersistentContext('/home/openclaw/gumroad-profile', {
headless: true,
args: ['--no-sandbox', '--disable-gpu', '--disable-dev-shm-usage']
});
Account Info
- Seller:
qcautonomous - Display name:
RayChod - Subdomain:
qcautonomous.gumroad.com - User ID:
3256469230239
Important
- If session ever expires, tell Ray — don't try to log in
- Kill any leftover Chrome before launching:
pkill -f "chrome.*gumroad-profile" 2>/dev/null - Always wait 2 seconds after kill before relaunching
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install lucky-gumroad - After installation, invoke the skill by name or use
/lucky-gumroad - Provide required inputs per the skill's parameter spec and get structured output
What is Lucky Gumroad Automation?
Gumroad store automation — product creation, uploads, profile editing, data pulls. Use when any task involves Gumroad (creating products, managing listings,... It is an AI Agent Skill for Claude Code / OpenClaw, with 110 downloads so far.
How do I install Lucky Gumroad Automation?
Run "/install lucky-gumroad" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Lucky Gumroad Automation free?
Yes, Lucky Gumroad Automation is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Lucky Gumroad Automation support?
Lucky Gumroad Automation is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Lucky Gumroad Automation?
It is built and maintained by rmbell09-lang (@rmbell09-lang); the current version is v1.0.1.