hypercli-cli 0.7.2__tar.gz → 0.7.4__tar.gz
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.
- {hypercli_cli-0.7.2 → hypercli_cli-0.7.4}/PKG-INFO +1 -1
- {hypercli_cli-0.7.2 → hypercli_cli-0.7.4}/hypercli_cli/claw.py +10 -10
- {hypercli_cli-0.7.2 → hypercli_cli-0.7.4}/pyproject.toml +1 -1
- {hypercli_cli-0.7.2 → hypercli_cli-0.7.4}/.gitignore +0 -0
- {hypercli_cli-0.7.2 → hypercli_cli-0.7.4}/README.md +0 -0
- {hypercli_cli-0.7.2 → hypercli_cli-0.7.4}/hypercli_cli/__init__.py +0 -0
- {hypercli_cli-0.7.2 → hypercli_cli-0.7.4}/hypercli_cli/billing.py +0 -0
- {hypercli_cli-0.7.2 → hypercli_cli-0.7.4}/hypercli_cli/cli.py +0 -0
- {hypercli_cli-0.7.2 → hypercli_cli-0.7.4}/hypercli_cli/comfyui.py +0 -0
- {hypercli_cli-0.7.2 → hypercli_cli-0.7.4}/hypercli_cli/flow.py +0 -0
- {hypercli_cli-0.7.2 → hypercli_cli-0.7.4}/hypercli_cli/instances.py +0 -0
- {hypercli_cli-0.7.2 → hypercli_cli-0.7.4}/hypercli_cli/jobs.py +0 -0
- {hypercli_cli-0.7.2 → hypercli_cli-0.7.4}/hypercli_cli/llm.py +0 -0
- {hypercli_cli-0.7.2 → hypercli_cli-0.7.4}/hypercli_cli/output.py +0 -0
- {hypercli_cli-0.7.2 → hypercli_cli-0.7.4}/hypercli_cli/renders.py +0 -0
- {hypercli_cli-0.7.2 → hypercli_cli-0.7.4}/hypercli_cli/tui/__init__.py +0 -0
- {hypercli_cli-0.7.2 → hypercli_cli-0.7.4}/hypercli_cli/tui/job_monitor.py +0 -0
- {hypercli_cli-0.7.2 → hypercli_cli-0.7.4}/hypercli_cli/user.py +0 -0
- {hypercli_cli-0.7.2 → hypercli_cli-0.7.4}/hypercli_cli/wallet.py +0 -0
|
@@ -37,21 +37,21 @@ def require_x402_deps():
|
|
|
37
37
|
|
|
38
38
|
@app.command("subscribe")
|
|
39
39
|
def subscribe(
|
|
40
|
-
plan_id: str = typer.Argument(
|
|
41
|
-
amount: str = typer.
|
|
40
|
+
plan_id: str = typer.Argument("1aiu", help="Plan ID: 1aiu, 2aiu, 5aiu, 10aiu (default: 1aiu)"),
|
|
41
|
+
amount: str = typer.Argument(None, help="USDC amount to pay (e.g., '25' for $25). Duration scales proportionally."),
|
|
42
42
|
dev: bool = typer.Option(False, "--dev", help="Use dev API (dev-api.hyperclaw.app)")
|
|
43
43
|
):
|
|
44
44
|
"""Subscribe to a HyperClaw plan via x402 payment.
|
|
45
45
|
|
|
46
|
-
Duration scales with payment amount:
|
|
47
|
-
-
|
|
48
|
-
- $
|
|
49
|
-
-
|
|
46
|
+
Duration scales with payment amount (1aiu: $25 = 32 days):
|
|
47
|
+
- $25 → 32 days
|
|
48
|
+
- $12.50 → 16 days
|
|
49
|
+
- $1 → ~1.3 days
|
|
50
50
|
|
|
51
51
|
Examples:
|
|
52
|
-
hyper claw subscribe 1aiu
|
|
53
|
-
hyper claw subscribe 1aiu
|
|
54
|
-
hyper claw subscribe 5aiu
|
|
52
|
+
hyper claw subscribe 1aiu 25 # Pay $25 for 32 days
|
|
53
|
+
hyper claw subscribe 1aiu 50 # Pay $50 for 64 days
|
|
54
|
+
hyper claw subscribe 5aiu 100 # Pay $100 for 5aiu plan
|
|
55
55
|
"""
|
|
56
56
|
require_x402_deps()
|
|
57
57
|
|
|
@@ -264,7 +264,7 @@ def plans(
|
|
|
264
264
|
console.print()
|
|
265
265
|
console.print(table)
|
|
266
266
|
console.print()
|
|
267
|
-
console.print("Subscribe with: [bold]hyper claw subscribe <plan_id>
|
|
267
|
+
console.print("Subscribe with: [bold]hyper claw subscribe <plan_id> <amount>[/bold]")
|
|
268
268
|
|
|
269
269
|
|
|
270
270
|
@app.command("openclaw-setup")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|