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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hypercli-cli
3
- Version: 0.7.2
3
+ Version: 0.7.4
4
4
  Summary: CLI for HyperCLI - GPU orchestration and LLM API
5
5
  Project-URL: Homepage, https://hypercli.com
6
6
  Project-URL: Documentation, https://docs.hypercli.com
@@ -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(..., help="Plan ID: 1aiu, 2aiu, 5aiu, 10aiu"),
41
- amount: str = typer.Option(None, "--amount", "-a", help="Custom USDC amount (e.g., '5' for $5). Duration scales proportionally."),
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
- - Plan price = 30 days
48
- - $0.01 minimum = ~12 minutes (for $1 plan)
49
- - Pay more = longer duration
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 # Pay $1 for 30 days
53
- hyper claw subscribe 1aiu -a 5 # Pay $5 for 150 days
54
- hyper claw subscribe 5aiu -a 0.50 # Pay $0.50 for 5 days
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> -a <amount>[/bold]")
267
+ console.print("Subscribe with: [bold]hyper claw subscribe <plan_id> <amount>[/bold]")
268
268
 
269
269
 
270
270
  @app.command("openclaw-setup")
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "hypercli-cli"
7
- version = "0.7.2"
7
+ version = "0.7.4"
8
8
  description = "CLI for HyperCLI - GPU orchestration and LLM API"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
File without changes
File without changes