Metadata-Version: 2.4
Name: roboto-sai-cli
Version: 0.1.0
Summary: Thin SDK-backed Roboto SAI CLI for orchestration, models, agents, and local config
Project-URL: Homepage, https://github.com/Roboto-SAI-LLC/Roboto-SAI-Fuego
Project-URL: Repository, https://github.com/Roboto-SAI-LLC/Roboto-SAI-Fuego/tree/main/packages/cli
Project-URL: Issues, https://github.com/Roboto-SAI-LLC/Roboto-SAI-Fuego/issues
Author-email: Roberto Villarreal Martinez <roboto@roboto-sai.com>
Maintainer-email: Roberto Villarreal Martinez <roboto@roboto-sai.com>
License-Expression: LicenseRef-RVM-GUL-1.0
License-File: LICENSE
Keywords: agents,ai,cli,orchestration,roboto-sai
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Requires-Dist: rich>=13.7.0
Requires-Dist: roboto-sai-sdk<0.2,>=0.1.1
Requires-Dist: typer[all]>=0.12.0
Provides-Extra: dev
Requires-Dist: build>=1.2; extra == 'dev'
Requires-Dist: mypy>=1.8.0; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Requires-Dist: ruff>=0.3.0; extra == 'dev'
Requires-Dist: twine>=5.0; extra == 'dev'
Description-Content-Type: text/markdown

# Roboto SAI CLI

Thin operator shell over `roboto-sai-sdk`.

The CLI is SDK-backed. It does not carry its own public model registry, worker defaults, routing logic, or key precedence rules.

## Install

```bash
pip install roboto-sai-cli
```

## Command Surface

```bash
roboto-sai version
roboto-sai models list
roboto-sai models show robotosai-heavy
roboto-sai agents
roboto-sai agent show codex
roboto-sai orchestrate "hello" --model robotosai
roboto-sai config show
```

## Models And Routing

The CLI reads model and runtime truth directly from the standalone SDK.

Supported public models:

- `robotosai`
- `robotosai-fast`
- `robotosai-codex`
- `robotosai-heavy`
- `robotosai-heavy-fast`
- `robotosai-heavy-codex`

## Worker Visibility

Only these worker agents are visible by default:

- `codex`
- `fast`
- `heavy`

`Roboto SAI` is the orchestrator identity only. It is not listed as a worker agent.

## Config

The CLI stores only local defaults for:

- `api_key`
- `provider`
- `base_url`
- `default_model`

The CLI does not store `SAI_MASTER_KEY`.
