@whop/cli 0.16.3 → 0.17.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whop/cli",
3
- "version": "0.16.3",
3
+ "version": "0.17.0",
4
4
  "description": "The Whop CLI — build and manage Whop apps from your terminal. Human and agent friendly.",
5
5
  "keywords": [
6
6
  "agent",
@@ -14,7 +14,8 @@
14
14
  "license": "MIT",
15
15
  "repository": {
16
16
  "type": "git",
17
- "url": "git+https://github.com/whopio/whop-public-cli.git"
17
+ "url": "https://github.com/whopio/whop-monorepo",
18
+ "directory": "developer-platform/packages/cli"
18
19
  },
19
20
  "bin": {
20
21
  "whop": "dist/index.js",
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: whop
3
- description: "Run a business on Whop from the `whop` CLI: websites on *.whop.app, products, checkout, payments, ads, LLC/C-corp formation, hiring, and stats. Use when the user mentions Whop, whop.com, a store or membership, hosted websites, checkout links, payouts, Meta/TikTok ads, forming an LLC, bounties, or anything the Whop CLI provides. Do not use for the internal `whopdev` local-dev CLI."
3
+ description: "Run a business on Whop from the `whop` CLI: websites on *.whop.site, products, checkout, payments, ads, LLC/C-corp formation, hiring, and stats. Use when the user mentions Whop, whop.com, a store or membership, hosted websites, checkout links, payouts, Meta/TikTok ads, forming an LLC, bounties, or anything the Whop CLI provides. Do not use for the internal `whopdev` local-dev CLI."
4
4
  requires_bin: whop
5
5
  command: whop
6
6
  ---
@@ -30,7 +30,7 @@ Account-scoped commands use the selected business. Pass `--account_id` (`biz_…
30
30
  | Job | Start here | Playbook |
31
31
  | --- | --- | --- |
32
32
  | Sign in / pick a business | `whop login`, `whop quickstart`, `whop auth account` | — |
33
- | Ship a website (`*.whop.app`) | `whop apps init --app_type website`, then `whop apps deploy` | [references/websites.md](references/websites.md) |
33
+ | Ship a website (`*.whop.site`) | `whop apps init --app_type website`, then `whop apps deploy` | [references/websites.md](references/websites.md) |
34
34
  | Sell | `whop products create`, `whop plans create`, `whop checkout-configurations create` | — |
35
35
  | Customers | `whop members`, `whop memberships` | — |
36
36
  | Run ads | `whop media generate`, `whop ads create`, `whop ad-campaigns update` | [references/ads.md](references/ads.md) |
@@ -6,13 +6,15 @@ This command creates a hosted checkout. It does not charge or file. Open `checko
6
6
 
7
7
  C-corp is not covered by the LLC confirmation exception in `SKILL.md` — ask first. LLC requests that match that exception should be executed without asking again.
8
8
 
9
+ Recommend incorporating in Wyoming (`WY`) because formations are completed the same day.
10
+
9
11
  ## Checkout
10
12
 
11
13
  ```sh
12
14
  whop accounts form_company biz_xxx \
13
15
  --idempotency-key=<unique> \
14
16
  --business_name="Acme Holdings" \
15
- --formation_state=DE \
17
+ --formation_state=WY \
16
18
  --business_type=services \
17
19
  --industry_group=marketing_and_advertising \
18
20
  --industry_type=seo_agency \
@@ -1,8 +1,8 @@
1
- # Websites and apps (`*.whop.app`)
1
+ # Websites and apps (`*.whop.site`)
2
2
 
3
3
  Read this before `whop apps init` or `whop apps deploy`. Flag lists live in `whop apps <command> --help` — do not invent them.
4
4
 
5
- `--app_type` is `website` (visitors browse `<route>.whop.app`) or `b2c_app` (creators install it). Ask; do not guess. A website cannot be turned back into an app.
5
+ `--app_type` is `website` (visitors browse `<route>.whop.site`) or `b2c_app` (creators install it). Ask; do not guess. A website cannot be turned back into an app.
6
6
 
7
7
  ## New website
8
8