JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 784
  • Score
    100M100P100Q107615F
  • License MIT

The Whop CLI — build and manage Whop apps from your terminal. Human and agent friendly.

Package Exports

  • @whop/cli
  • @whop/cli/vite

Readme

Whop CLI

whop — sell on Whop from your terminal. Create products, set pricing, and get a shareable checkout link without leaving your shell.

Installation

# macOS / Linux
curl -fsSL https://whop.com/install.sh | sh

# Homebrew
brew install whopio/tap/whop

# npm (requires Node.js >= 22)
npm install -g @whop/cli

Prebuilt binaries cover macOS and Linux (releases); on other platforms, use npm.

Getting started

whop

That's it — it signs you in and walks you to a shareable checkout link.

Usage

whop --help                  # all commands
whop products list           # what you're selling
whop plans create --help     # options for any command
whop stats list              # your numbers

Every command takes --format json for structured output.

Deploy an app

whop apps deploy

The one-stop deploy for fully-hosted web apps (*.whop.app): it verifies the current directory is a Whop-ready Vite app — offering to scaffold a new one or link an existing Whop app if not — then builds, typechecks, uploads, and promotes the build to production. Use --skip_promote to upload a preview build, and whop apps builds promote <build_id> to ship it later. Everything else is plain REST: whop apps list|create|get|update and whop apps builds list|get|create|promote.

For AI agents

The CLI is self-describing — agents can discover and drive every command:

whop --llms          # machine-readable manifest of all commands
whop mcp add         # register as an MCP server (e.g. Claude Desktop)
whop skills add      # generate agent skills

Set WHOP_API_KEY for non-interactive use (create one under Developer → API keys).

Updating

The CLI keeps itself up to date. To update manually, run whop upgrade.

Documentation