Metadata-Version: 2.4
Name: hypercli-cli
Version: 2026.3.13
Summary: CLI for HyperCLI - GPU orchestration and LLM API
Project-URL: Homepage, https://hypercli.com
Project-URL: Documentation, https://docs.hypercli.com
Project-URL: Repository, https://github.com/HyperCLI/hypercli
Author-email: HyperCLI <support@hypercli.com>
License: MIT
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27.0
Requires-Dist: hypercli-sdk>=2026.3.13
Requires-Dist: mutagen>=1.47.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: rich>=14.2.0
Requires-Dist: typer>=0.20.0
Requires-Dist: websocket-client>=1.6.0
Provides-Extra: all
Requires-Dist: argon2-cffi>=25.0.0; extra == 'all'
Requires-Dist: eth-account>=0.13.0; extra == 'all'
Requires-Dist: faster-whisper>=1.1.0; extra == 'all'
Requires-Dist: hypercli-sdk[comfyui]>=2026.3.13; extra == 'all'
Requires-Dist: web3>=7.0.0; extra == 'all'
Requires-Dist: x402[evm,httpx]>=2.0.0; extra == 'all'
Provides-Extra: comfyui
Requires-Dist: hypercli-sdk[comfyui]>=2026.3.13; extra == 'comfyui'
Provides-Extra: dev
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Requires-Dist: ruff>=0.3.0; extra == 'dev'
Provides-Extra: stt
Requires-Dist: faster-whisper>=1.1.0; extra == 'stt'
Provides-Extra: wallet
Requires-Dist: argon2-cffi>=25.0.0; extra == 'wallet'
Requires-Dist: eth-account>=0.13.0; extra == 'wallet'
Requires-Dist: qrcode[pil]>=7.4.0; extra == 'wallet'
Requires-Dist: web3>=7.0.0; extra == 'wallet'
Requires-Dist: x402[evm,httpx]>=2.0.0; extra == 'wallet'
Description-Content-Type: text/markdown

# hypercli-cli

Command-line interface for HyperCLI jobs, flows, x402 pay-per-use launches, and HyperClaw checkout tooling.

## Install

```bash
pip install hypercli-cli
```

## Configure

```bash
hyper configure
```

## Core Commands

```bash
# GPU discovery and launch
hyper instances list
hyper instances launch nvidia/cuda:12.6.3-base-ubuntu22.04 -g l4 -c "nvidia-smi"

# x402 pay-per-use GPU launch
hyper instances launch nvidia/cuda:12.6.3-base-ubuntu22.04 -g l4 -c "nvidia-smi" --x402 --amount 0.01

# Job lifecycle
hyper jobs list
hyper jobs logs <job_id>
hyper jobs metrics <job_id>
hyper jobs exec <job_id> "nvidia-smi"
hyper jobs shell <job_id>

# Dry-run launch validation
hyper instances launch nvidia/cuda:12.6.3-base-ubuntu22.04 -g l4 -c "nvidia-smi" --dry-run

# Flows (recommended media path)
hyper flow text-to-image "a cinematic portrait"
hyper flow text-to-image "a cinematic portrait" --x402

# HyperClaw checkout/config
hyper agent plans
hyper agent subscribe 1aiu
hyper agent config env
hyper agent exec <agent_id> "ls -la"
hyper agent shell <agent_id>
```

## Notes

- `hyper llm` command surface has been removed.
- For inference setup, use HyperClaw (`hyper agent config ...`) and your agent/client's OpenAI-compatible configuration.
