TopRank Skills

Official OpenClaw rules 54%

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.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 whop-cli 技能。 若已安装,则直接安装 whop-cli 技能。

Overview

Skill Key
g9pedro/whop-cli
Author
g9pedro
Source Repo
openclaw/skills
Version
1.0.0
Source Path
skills/g9pedro/whop-cli
Latest Commit SHA
bd1f6e52a96c589ae5a417aee030bf97b10b393c

Extracted Content

SKILL.md excerpt

# 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

Related Claw Skills