@whop/cli 0.15.0 → 0.16.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/README.md +4 -4
  2. package/dist/index.js +11856 -5328
  3. package/dist/index.js.map +1 -1
  4. package/dist/vite.d.ts +1 -1
  5. package/dist/vite.js +37 -1
  6. package/dist/vite.js.map +1 -1
  7. package/package.json +2 -2
  8. package/skills/whop/SKILL.md +48 -0
  9. package/skills/whop/references/ads.md +43 -0
  10. package/skills/whop/references/formation.md +40 -0
  11. package/skills/whop/references/websites.md +59 -0
  12. package/skills/whop-accounts/SKILL.md +0 -212
  13. package/skills/whop-ad-campaigns/SKILL.md +0 -204
  14. package/skills/whop-ad-groups/SKILL.md +0 -269
  15. package/skills/whop-ads/SKILL.md +0 -277
  16. package/skills/whop-api-keys/SKILL.md +0 -126
  17. package/skills/whop-app-builds/SKILL.md +0 -81
  18. package/skills/whop-apps/SKILL.md +0 -161
  19. package/skills/whop-audiences/SKILL.md +0 -105
  20. package/skills/whop-bounties/SKILL.md +0 -143
  21. package/skills/whop-bounty-submissions/SKILL.md +0 -95
  22. package/skills/whop-cards/SKILL.md +0 -133
  23. package/skills/whop-checkout-configurations/SKILL.md +0 -77
  24. package/skills/whop-deposits/SKILL.md +0 -26
  25. package/skills/whop-dispute-alerts/SKILL.md +0 -42
  26. package/skills/whop-disputes/SKILL.md +0 -99
  27. package/skills/whop-events/SKILL.md +0 -105
  28. package/skills/whop-exports/SKILL.md +0 -379
  29. package/skills/whop-ledgers/SKILL.md +0 -52
  30. package/skills/whop-media/SKILL.md +0 -44
  31. package/skills/whop-members/SKILL.md +0 -64
  32. package/skills/whop-memberships/SKILL.md +0 -165
  33. package/skills/whop-notifications/SKILL.md +0 -104
  34. package/skills/whop-partners/SKILL.md +0 -113
  35. package/skills/whop-payment-method-domains/SKILL.md +0 -93
  36. package/skills/whop-payments/SKILL.md +0 -40
  37. package/skills/whop-payouts/SKILL.md +0 -167
  38. package/skills/whop-people/SKILL.md +0 -63
  39. package/skills/whop-permissions/SKILL.md +0 -21
  40. package/skills/whop-plans/SKILL.md +0 -163
  41. package/skills/whop-products/SKILL.md +0 -152
  42. package/skills/whop-recommended-actions/SKILL.md +0 -41
  43. package/skills/whop-resolution-center-cases/SKILL.md +0 -233
  44. package/skills/whop-setup-intents/SKILL.md +0 -40
  45. package/skills/whop-shipments/SKILL.md +0 -79
  46. package/skills/whop-social-accounts/SKILL.md +0 -128
  47. package/skills/whop-stats/SKILL.md +0 -63
  48. package/skills/whop-swaps/SKILL.md +0 -77
  49. package/skills/whop-team-members/SKILL.md +0 -93
  50. package/skills/whop-transfers/SKILL.md +0 -80
  51. package/skills/whop-users/SKILL.md +0 -309
  52. package/skills/whop-verifications/SKILL.md +0 -67
package/README.md CHANGED
@@ -55,12 +55,12 @@ whop --help # all commands
55
55
  whop products list # what you're selling
56
56
  whop plans create --help # options for any command
57
57
  whop stats list # your numbers
58
- whop accounts get --account_id jordan # retrieve a business by route
58
+ whop accounts get jordan # retrieve a business by route
59
59
  ```
60
60
 
61
61
  Every command takes `--format json` for structured output, or `--format jsonl` to stream events.
62
62
 
63
- Account-scoped commands use the selected business by default. Pass another business's `biz_` ID or public route with `--account_id`.
63
+ Commands that act on one account take the business's `biz_` ID or public route positionally. Account-scoped commands use the selected business by default; pass `--account_id` to choose a different scope. Account preferences and reserves remain account-scoped.
64
64
 
65
65
  In a terminal, commands prompt for missing inputs. Agents and scripts (non-TTY) get a structured validation error instead, so nothing hangs.
66
66
 
@@ -133,7 +133,7 @@ whop ads create \
133
133
  whop ad-campaigns update <adcamp_id> --status active # launch when ready
134
134
  ```
135
135
 
136
- The `whop-ads` skill (`whop skills add`) carries the full playbook.
136
+ The `whop` skill (`whop skills add`) carries the launch playbook in `references/ads.md`.
137
137
 
138
138
  ## Hire a workforce
139
139
 
@@ -161,7 +161,7 @@ The CLI is self-describing. Agents can discover and drive every command:
161
161
  whop --llms # machine-readable manifest of all commands
162
162
  whop mcp add # automatically register with supported coding agents
163
163
  whop mcp doctor # diagnose an MCP registration
164
- whop skills add # generate agent skills (per-resource playbooks)
164
+ whop skills add # install the Whop agent skill
165
165
  ```
166
166
 
167
167
  For OAuth, run `whop login --method oauth --format jsonl` in the background with stdout redirected to a file (pipes like `| head` can buffer past the URL). The first line carries an `authorizationUrl`; open it in the user's browser, unedited. Once the process exits, you're logged in.