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.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/g9pedro/whop-cliWhop Store Management
Manage your Whop digital products store via API.
Setup
- Get API key from Whop dashboard → Settings → Developer
- Set environment variables:
export WHOP_API_KEY="apik_..." export WHOP_COMPANY_ID="biz_..."
Usage
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
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-g9pedro-whop-cli": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
Clawvault
Skill by g9pedro
loom-workflow
AI-native workflow analyzer for Loom recordings. Breaks down recorded business processes into structured, automatable workflows. Use when: - Analyzing Loom videos to understand workflows - Extracting steps, tools, and decision points from screen recordings - Generating Lobster workflow files from video walkthroughs - Identifying ambiguities and human intervention points in processes
agent-autonomy-primitives
Build long-running autonomous agent loops using ClawVault primitives (tasks, projects, memory types, templates, heartbeats). Use when setting up agent autonomy, creating task-driven execution loops, customizing primitive schemas, wiring heartbeat-based work queues, or teaching an agent to manage its own backlog. Also use when adapting primitives to an existing agent setup or designing multi-agent collaboration through shared vaults.
pdauth
Dynamic OAuth for AI agents via Pipedream. Generate OAuth links for 2500+ APIs, let users authorize, then call MCP tools on their behalf.
linkedin-pipedream
Post to LinkedIn, comment, like, search organizations, and manage profiles via Pipedream OAuth integration.