openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Gumroad Admin

Gumroad Admin CLI. Check sales, products, and manage discounts.

数据与表格

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v0.1.0

统计:⭐ 1 · 1.7k · 0 current installs · 0 all-time installs

1

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :可疑

Package:abakermi/gumroad-admin

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :可疑

OpenClaw 评估

The skill claims to be a Gumroad CLI helper and only needs a Gumroad access token, but the runtime instructions call a 'gumroad-admin' executable while the skill provides no code or install instructions — that mismatch is suspicious.

目的

The skill's stated purpose (manage Gumroad sales/products/discounts) justifies asking for GUMROAD_ACCESS_TOKEN. However, the SKILL.md shows example commands invoking a 'gumroad-admin' CLI binary that is neither provided by the skill nor declared as a required binary or installed by an install spec. That is an incoherence: the skill expects a tool that isn't supplied or documented.

说明范围

The instructions are narrowly scoped to Gumroad operations and only ask the user to export the Gumroad token and run CLI commands. They do not request unrelated files, other credentials, or system paths. Note: storing the access token in environment variables is sensitive and should be done carefully (avoid shared shells, CI logs, etc.).

安装机制

There is no install spec and no code files. That limits risk from arbitrary installs but creates a functional gap: the SKILL.md expects a CLI to exist. A benign explanation is that the author assumes the user already has a third-party 'gumroad-admin' binary; absent that, an agent might try to download/execute a binary at runtime — which would be risky. The skill should either provide an install path or declare the required binary.

证书

The only required environment variable is GUMROAD_ACCESS_TOKEN, which is proportional to the described Gumroad functionality. This credential is sensitive; the skill does not request unrelated secrets or multiple credentials.

持久

The skill does not request always:true and has no install actions or config paths, so it does not demand persistent or escalated privileges. Model invocation is allowed (the platform default) but that alone is not concerning here.

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Gumroad Admin」。简介:Gumroad Admin CLI. Check sales, products, and manage discounts.。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/abakermi/gumroad-admin/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: gumroad-admin
version: 1.0.0
description: Gumroad Admin CLI. Check sales, products, and manage discounts.
author: abakermi
metadata:
  openclaw:
    emoji: "💸"
    requires:
      env: ["GUMROAD_ACCESS_TOKEN"]
---

# Gumroad Admin

Manage your Gumroad store from OpenClaw.

## Setup

1. Get your Access Token from Gumroad (Settings > Advanced > Applications).
2. Set it: `export GUMROAD_ACCESS_TOKEN="your_token"`

## Commands

### Sales
```bash
gumroad-admin sales --day today
gumroad-admin sales --last 30
```

### Products
```bash
gumroad-admin products
```

### Discounts
```bash
gumroad-admin discounts create --product <id> --code "TWITTER20" --amount 20 --type percent
```