hypercli-cli 2026.3.10__tar.gz → 2026.3.18__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.
Files changed (28) hide show
  1. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/PKG-INFO +10 -10
  2. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/README.md +6 -6
  3. hypercli_cli-2026.3.18/hypercli_cli/__init__.py +1 -0
  4. hypercli_cli-2026.3.10/hypercli_cli/claw.py → hypercli_cli-2026.3.18/hypercli_cli/agent.py +211 -140
  5. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/hypercli_cli/agents.py +306 -160
  6. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/hypercli_cli/cli.py +6 -4
  7. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/hypercli_cli/embed.py +12 -12
  8. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/hypercli_cli/onboard.py +24 -23
  9. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/hypercli_cli/stt.py +3 -3
  10. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/hypercli_cli/voice.py +15 -15
  11. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/pyproject.toml +4 -4
  12. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/tests/test_exec_shell_dryrun.py +4 -4
  13. hypercli_cli-2026.3.18/tests/test_openclaw_config.py +63 -0
  14. hypercli_cli-2026.3.10/hypercli_cli/__init__.py +0 -1
  15. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/.gitignore +0 -0
  16. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/hypercli_cli/billing.py +0 -0
  17. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/hypercli_cli/comfyui.py +0 -0
  18. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/hypercli_cli/flow.py +0 -0
  19. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/hypercli_cli/instances.py +0 -0
  20. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/hypercli_cli/jobs.py +0 -0
  21. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/hypercli_cli/keys.py +0 -0
  22. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/hypercli_cli/output.py +0 -0
  23. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/hypercli_cli/renders.py +0 -0
  24. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/hypercli_cli/tui/__init__.py +0 -0
  25. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/hypercli_cli/tui/job_monitor.py +0 -0
  26. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/hypercli_cli/user.py +0 -0
  27. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/hypercli_cli/wallet.py +0 -0
  28. {hypercli_cli-2026.3.10 → hypercli_cli-2026.3.18}/tests/test_jobs_list_tags.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hypercli-cli
3
- Version: 2026.3.10
3
+ Version: 2026.3.18
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
@@ -9,7 +9,7 @@ Author-email: HyperCLI <support@hypercli.com>
9
9
  License: MIT
10
10
  Requires-Python: >=3.10
11
11
  Requires-Dist: httpx>=0.27.0
12
- Requires-Dist: hypercli-sdk>=2026.3.10
12
+ Requires-Dist: hypercli-sdk>=2026.3.18
13
13
  Requires-Dist: mutagen>=1.47.0
14
14
  Requires-Dist: pyyaml>=6.0
15
15
  Requires-Dist: rich>=14.2.0
@@ -19,11 +19,11 @@ Provides-Extra: all
19
19
  Requires-Dist: argon2-cffi>=25.0.0; extra == 'all'
20
20
  Requires-Dist: eth-account>=0.13.0; extra == 'all'
21
21
  Requires-Dist: faster-whisper>=1.1.0; extra == 'all'
22
- Requires-Dist: hypercli-sdk[comfyui]>=2026.3.10; extra == 'all'
22
+ Requires-Dist: hypercli-sdk[comfyui]>=2026.3.18; extra == 'all'
23
23
  Requires-Dist: web3>=7.0.0; extra == 'all'
24
24
  Requires-Dist: x402[evm,httpx]>=2.0.0; extra == 'all'
25
25
  Provides-Extra: comfyui
26
- Requires-Dist: hypercli-sdk[comfyui]>=2026.3.10; extra == 'comfyui'
26
+ Requires-Dist: hypercli-sdk[comfyui]>=2026.3.18; extra == 'comfyui'
27
27
  Provides-Extra: dev
28
28
  Requires-Dist: pytest>=8.0.0; extra == 'dev'
29
29
  Requires-Dist: ruff>=0.3.0; extra == 'dev'
@@ -78,14 +78,14 @@ hyper flow text-to-image "a cinematic portrait"
78
78
  hyper flow text-to-image "a cinematic portrait" --x402
79
79
 
80
80
  # HyperClaw checkout/config
81
- hyper claw plans
82
- hyper claw subscribe 1aiu
83
- hyper claw config env
84
- hyper claw exec <agent_id> "ls -la"
85
- hyper claw shell <agent_id>
81
+ hyper agent plans
82
+ hyper agent subscribe 1aiu
83
+ hyper agent config env
84
+ hyper agent exec <agent_id> "ls -la"
85
+ hyper agent shell <agent_id>
86
86
  ```
87
87
 
88
88
  ## Notes
89
89
 
90
90
  - `hyper llm` command surface has been removed.
91
- - For inference setup, use HyperClaw (`hyper claw config ...`) and your agent/client's OpenAI-compatible configuration.
91
+ - For inference setup, use HyperClaw (`hyper agent config ...`) and your agent/client's OpenAI-compatible configuration.
@@ -39,14 +39,14 @@ hyper flow text-to-image "a cinematic portrait"
39
39
  hyper flow text-to-image "a cinematic portrait" --x402
40
40
 
41
41
  # HyperClaw checkout/config
42
- hyper claw plans
43
- hyper claw subscribe 1aiu
44
- hyper claw config env
45
- hyper claw exec <agent_id> "ls -la"
46
- hyper claw shell <agent_id>
42
+ hyper agent plans
43
+ hyper agent subscribe 1aiu
44
+ hyper agent config env
45
+ hyper agent exec <agent_id> "ls -la"
46
+ hyper agent shell <agent_id>
47
47
  ```
48
48
 
49
49
  ## Notes
50
50
 
51
51
  - `hyper llm` command surface has been removed.
52
- - For inference setup, use HyperClaw (`hyper claw config ...`) and your agent/client's OpenAI-compatible configuration.
52
+ - For inference setup, use HyperClaw (`hyper agent config ...`) and your agent/client's OpenAI-compatible configuration.
@@ -0,0 +1 @@
1
+ __version__ = "2026.3.18"