← 返回
未分类 中文

Lucky Gumroad Automation

Gumroad store automation — product creation, uploads, profile editing, data pulls. Use when any task involves Gumroad (creating products, managing listings,...
Gumroad 商店自动化:商品创建、上传、资料编辑、数据拉取。适用于任何涉及 Gumroad 的任务(创建产品、管理列表等)
rmbell09-lang rmbell09-lang 来源
未分类 clawhub v1.0.1 1 版本 100000 Key: 无需
★ 0
Stars
📥 394
下载
💾 0
安装
1
版本
#automation#digital-products#ecommerce#gumroad#latest#openclaw

概述

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

版本历史

共 1 个版本

  • v1.0.1 当前
    2026-05-07 08:13 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

dev-programming

Lucky Tmux Controller

rmbell09-lang
通过发送按键并抓取面板输出,远程控制 tmux 会话,实现交互式命令行。
★ 0 📥 484
business-ops

Trello

steipete
使用 Trello REST API 管理看板、列表和卡片
★ 162 📥 41,361
business-ops

Calendar

ndcccccc
日历管理与日程安排。创建事件、管理会议,并实现多日历平台同步。
★ 7 📥 23,268