gumroad

Gumroad store automation — product creation, uploads, profile editing, data pulls. Use when any task involves Gumroad (creating products, managing listings, pulling sales data, updating profile). Requires authenticated Chrome profile at /home/openclaw/gumroad-profile. Never log in manually — session is pre-authenticated.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "gumroad" with this command: npx skills add rmbell09-lang/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

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

Claw Desktop Pet - Enterprise-grade 7x24 AI Assistant

Enterprise-grade 24/7 desktop AI assistant with system-level fault tolerance, auto-restart, performance monitoring, intelligent voice, and resource optimizat...

Registry SourceRecently Updated
1.6K4Profile unavailable
Automation

Wechat Mp Auto

自动完成微信公众号文章的选题调研、Markdown写作、智能配图、内容审核和发布全流程管理。

Registry SourceRecently Updated
2721Profile unavailable
Automation

Social Reply Bot

Reddit & X/Twitter auto-reply bot for ecommerce/SaaS growth. Finds relevant posts about AI customer service, Amazon FBA, Shopify — posts genuine AI-generated...

Registry SourceRecently Updated
2390Profile unavailable
Automation

YouTube OpenClaw 监控系统

自动监控关键词相关YouTube新视频,获取字幕生成中文摘要,并定时推送报告到Telegram。

Registry SourceRecently Updated
2530Profile unavailable