Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Manage Whop digital products store — create products, plans, track payments, manage memberships. Use when: selling digital products, managing Whop store. Don...
Manage Whop digital products store — create products, plans, track payments, manage memberships. Use when: selling digital products, managing Whop store. Don...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Manage your Whop digital products store via API.
Get API key from Whop dashboard → Settings → Developer Set environment variables: export WHOP_API_KEY="apik_..." export WHOP_COMPANY_ID="biz_..."
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 });
products, plans, payments, memberships, experiences, files, webhooks, promoCodes, courses, forums, chatChannels, checkoutConfigurations, reviews, leads, notifications
Store: https://whop.com/versatly-holdings/ Products: https://store.versatlygroup.com
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.