@whop/cli 0.8.1 → 0.9.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.8.1",
3
+ "version": "0.9.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",
@@ -45,7 +45,7 @@
45
45
  "devDependencies": {
46
46
  "@types/node": "25.3.5",
47
47
  "fflate": "0.8.2",
48
- "incur": "github:whopio/incur#fbe3f4dbf48f1bc780cb1bca476f7dade1fe12d3",
48
+ "incur": "github:whopio/incur#9e4339e90ed46153268c0183d5f49245598bed57",
49
49
  "tsup": "8.5.0",
50
50
  "tsx": "4.19.4",
51
51
  "typescript": "5.9.3",
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: whop-bounties
3
+ description: Paid tasks with reviewed submissions and escrowed rewards. Run `whop bounties --help` for usage details.
4
+ requires_bin: whop
5
+ command: whop bounties
6
+ ---
7
+
8
+ A Bounty is a paid task posted by an account or user. The reward is held in escrow when the bounty publishes, workers submit proof of completed work, and each accepted submission is paid out until every winner slot fills.
9
+
10
+ Use the Bounties API to create and publish a bounty, list an account's bounties for reporting or dashboards, list the bounties a user can work or has participated in, and retrieve a single bounty by ID.
11
+
12
+ ## Commands
13
+
14
+ | Command | Description |
15
+ |---------|-------------|
16
+ | `whop bounties list` | List Bounties |
17
+ | `whop bounties create` | Create Bounty |
18
+ | `whop bounties get` | Retrieve Bounty |
19
+
20
+ Run `whop bounties <command> --help` for options, or `whop bounties <command> --schema` for full argument details.
@@ -0,0 +1,18 @@
1
+ ---
2
+ name: whop-bounty-submissions
3
+ description: Work submitted to a bounty, from attempt to payout. Run `whop bounty-submissions --help` for usage details.
4
+ requires_bin: whop
5
+ command: whop bounty-submissions
6
+ ---
7
+
8
+ A Bounty Submission is one worker's attempt on a bounty. It starts as an in-progress attempt, enters the review queue when proof is submitted, and ends approved (paid from the bounty's escrowed pool) or denied.
9
+
10
+ Use the Bounty Submissions API to submit proof of completed work to a bounty, list the submissions you authored, and review the submissions on your bounties — across every bounty or narrowed to one.
11
+
12
+ ## Commands
13
+
14
+ | Command | Description |
15
+ |---------|-------------|
16
+ | `whop bounty-submissions list` | List Bounty Submissions |
17
+
18
+ Run `whop bounty-submissions <command> --help` for options, or `whop bounty-submissions <command> --schema` for full argument details.
@@ -1,19 +0,0 @@
1
- ---
2
- name: whop-workforce-bounties
3
- description: Paid tasks with reviewed submissions and escrowed rewards. Run `whop workforce-bounties --help` for usage details.
4
- requires_bin: whop
5
- command: whop workforce-bounties
6
- ---
7
-
8
- A Workforce Bounty is a paid task posted by an account or user. The reward is held in escrow when the bounty publishes, workers submit proof of completed work, and each accepted submission is paid out until every winner slot fills.
9
-
10
- Use the Workforce Bounties API to list an account's bounties for reporting or dashboards, list the bounties a user can work or has participated in, and retrieve a single bounty by ID.
11
-
12
- ## Commands
13
-
14
- | Command | Description |
15
- |---------|-------------|
16
- | `whop workforce-bounties list` | List Workforce Bounties |
17
- | `whop workforce-bounties get` | Retrieve Workforce Bounty |
18
-
19
- Run `whop workforce-bounties <command> --help` for options, or `whop workforce-bounties <command> --schema` for full argument details.