Back to skills
SkillHub ClubShip Full StackFull Stack

whop-cli

Manage Whop digital products store β€” create products, plans, track payments, manage memberships. Use when: selling digital products, managing Whop store. Don't use when: non-Whop payment platforms.

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
0
Hot score
74
Updated
March 20, 2026
Overall rating
C0.0
Composite score
0.0
Best-practice grade
S100.0

Install command

npx @skill-hub/cli install openclaw-skills-whop-cli

Repository

openclaw/skills

Skill path: skills/g9pedro/whop-cli

Manage Whop digital products store β€” create products, plans, track payments, manage memberships. Use when: selling digital products, managing Whop store. Don't use when: non-Whop payment platforms.

Open repository

Best for

Primary workflow: Ship Full Stack.

Technical facets: Full Stack.

Target audience: everyone.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: openclaw.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install whop-cli into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/openclaw/skills before adding whop-cli to shared team environments
  • Use whop-cli for development workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: whop-cli
version: 1.0.0
description: "Manage Whop digital products store β€” create products, plans, track payments, manage memberships. Use when: selling digital products, managing Whop store. Don't use when: non-Whop payment platforms."
metadata:
  openclaw:
    emoji: "πŸͺ"
    requires:
      bins: []
      env: ["WHOP_API_KEY", "WHOP_COMPANY_ID"]
    install:
      - id: npm-sdk
        kind: command
        command: "npm install -g @whop/sdk"
        label: "Install Whop SDK"
---

# Whop Store Management

Manage your Whop digital products store via API.

## Setup

1. Get API key from Whop dashboard β†’ Settings β†’ Developer
2. Set environment variables:
   ```bash
   export WHOP_API_KEY="apik_..."
   export WHOP_COMPANY_ID="biz_..."
   ```

## Usage

```javascript
import { default as Whop } from '@whop/sdk';
const client = new Whop();
const CID = process.env.WHOP_COMPANY_ID;

// List products
const products = await client.products.list({ company_id: CID });

// Create product
const product = await client.products.create({
  company_id: CID,
  title: 'My Product'
});

// Create pricing plan
const plan = await client.plans.create({
  product_id: product.id,
  company_id: CID,
  plan_type: 'one_time', // or 'renewal'
  initial_price: 29,
  base_currency: 'usd'
});
// plan.purchase_url = checkout link

// Check payments
const payments = await client.payments.list({ company_id: CID });

// Check memberships
const members = await client.memberships.list({ company_id: CID });
```

## Available Resources

products, plans, payments, memberships, experiences, files, webhooks,
promoCodes, courses, forums, chatChannels, checkoutConfigurations,
reviews, leads, notifications

## Built by Versatly

Store: https://whop.com/versatly-holdings/
Products: https://store.versatlygroup.com


---

## Skill Companion Files

> Additional files collected from the skill directory layout.

### _meta.json

```json
{
  "owner": "g9pedro",
  "slug": "whop-cli",
  "displayName": "Whop Store Management",
  "latest": {
    "version": "1.0.0",
    "publishedAt": 1771538688873,
    "commit": "https://github.com/openclaw/skills/commit/e6e2ebb7dab3113b1d1d75cc367aaec600a24fd3"
  },
  "history": []
}

```

whop-cli | SkillHub