Pull daily Gumroad product/sales analytics safely (no raw PII persistence by default).
Scanned 9/7/2026
Install to Claude Code
npx -y skills add modbender/skill-library-mcp --skill gumroad-analytics --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Gumroad Analytics?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/modbender-gumroad-analytics)More formats (shields.io, HTML) on the badges page.
---
name: gumroad-analytics
description: Pull daily Gumroad product/sales analytics safely (no raw PII persistence by default).
metadata:
openclaw:
homepage: https://clawhub.ai/vladchatware/gumroad-analytics
requires:
bins: ["curl", "python3", "date"]
config: ["~/.config/gumroad/credentials.json"]
---
# Gumroad Analytics
Collect Gumroad analytics in a privacy-conscious way.
## What this skill does
- Fetches **sales** and **products** from Gumroad API
- Produces a **daily summary JSON** (counts + revenue totals)
- **Does not store raw API payloads by default**
## Credentials
Expected file: `~/.config/gumroad/credentials.json`
Example:
```json
{
"access_token": "YOUR_GUMROAD_ACCESS_TOKEN"
}
```
Harden permissions:
```bash
chmod 600 ~/.config/gumroad/credentials.json
```
## Run
```bash
bash skills/gumroad-analytics/scripts/fetch_metrics.sh
```
Optional raw storage (explicit opt-in):
```bash
bash skills/gumroad-analytics/scripts/fetch_metrics.sh --store-raw
```
## Output
Summary file (default):
- `memory/metrics/gumroad/YYYY-MM-DD-summary.json`
Raw files (only with `--store-raw`):
- `memory/metrics/gumroad/YYYY-MM-DD-raw-sales-redacted.json`
- `memory/metrics/gumroad/YYYY-MM-DD-raw-products.json`
## Notes
- Sales raw output is redacted before writing (`email` and buyer name fields removed).
- If you do not need raw data, avoid `--store-raw`.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!