Skip to main content

Orchid CLI — command-line interface for the Orchid agent framework

Project description

Orchid

Orchid CLI

Command-line interface for the Orchid multi-agent AI framework.

Provides terminal access to all chat operations, configuration validation, RAG indexing, and Claude Code skill generation. Mirrors the full functionality of orchid-api but runs locally with no server, Docker, or external database required (defaults to SQLite).

Installation

pip install orchid-ai orchid-cli

The orchid command is available after installation.

Quick Start

# Validate config:
orchid config validate agents.yaml

# Authenticate (required for configs with OAuth-protected MCP servers):
orchid auth login -c orchid.yml

# Start an interactive chat session:
orchid chat interactive -c orchid.yml

# Send a single message:
orchid chat create -c orchid.yml -t "My Chat"
orchid chat send <chat_id> "Hello!" -c orchid.yml

Commands

Authentication

# Log in via OAuth (opens browser, exchanges code for tokens)
orchid auth login -c orchid.yml

# Check current auth status (token expiry, tenant, user)
orchid auth status -c orchid.yml

# Clear stored tokens
orchid auth logout -c orchid.yml

Authentication is required when MCP servers or tools need a real Bearer token. When OAuth is not configured (auth.dev_bypass: true or no auth.cli section), a dev fallback token is used automatically.

Chat Management

# Create a new chat session
orchid chat create -c orchid.yml -t "My Chat Title"

# List all chat sessions
orchid chat list -c orchid.yml

# Show message history
orchid chat history <chat_id> -c orchid.yml
orchid chat history <chat_id> -c orchid.yml --limit 10

# Rename a chat
orchid chat rename <chat_id> "New Title" -c orchid.yml

# Share a chat (promote RAG data to user scope)
orchid chat share <chat_id> -c orchid.yml

# Delete a chat
orchid chat delete <chat_id> -c orchid.yml
orchid chat delete <chat_id> -c orchid.yml --force

Chat IDs support prefix matching -- type the first few characters of the UUID.

Messaging

# Send a single message and print the response
orchid chat send <chat_id> "What is LangGraph?" -c orchid.yml

# Override the LLM model
orchid chat send <chat_id> "Explain RAG" -c orchid.yml -m ollama/llama3.2

Interactive Mode

# Start a new interactive session
orchid chat interactive -c orchid.yml

# Resume an existing chat
orchid chat interactive <chat_id> -c orchid.yml

Slash commands available inside interactive mode:

Command Purpose
/list List all chat sessions
/switch <id> Switch to another chat
/new [title] Create a new chat
/history Show last 20 messages
/rename <title> Rename current chat
/quit Exit interactive mode

Configuration

# Validate an agents.yaml file
orchid config validate path/to/agents.yaml

RAG Indexing

# Seed the vector store with static data
orchid index seed -c orchid.yml

# Seed for a specific tenant
orchid index seed -c orchid.yml --tenant my-tenant

Skill Generation (Claude Code)

Generate Claude Code skills from your Orchid agent configuration. Each agent and orchestrator skill becomes a Claude Code skill directory with a SKILL.md file.

# Generate skills for all agents and orchestrator skills
orchid skill generate path/to/agents.yaml

# Custom output directory
orchid skill generate path/to/agents.yaml -o .claude/skills

# Generate only specific agents/skills
orchid skill generate path/to/agents.yaml --include basketball,psychologist

# Overwrite existing skill directories
orchid skill generate path/to/agents.yaml --overwrite

# Create a zip archive for upload
orchid skill generate path/to/agents.yaml --zip

What gets converted:

Orchid Concept Claude Code Skill
Agent prompt Core SKILL.md instructions
Agent description Skill frontmatter description
Built-in tools Executable Python scripts in scripts/
Agent skills (workflows) Step-by-step workflow instructions with script commands
Orchestrator skills Multi-agent workflow skill
MCP servers Noted as runtime-only (not portable)
RAG context Noted as runtime-only (not portable)
Guardrails (global + per-agent) Input/output rules section with actions and config

Each agent skill includes a scripts/ folder with standalone Python scripts that Claude Code can execute directly. Tools from the same source module are grouped into a single script file with a CLI wrapper that accepts --arg value arguments.

Configuration

The --config (-c) flag points to an orchid.yml file:

llm:
  model: ollama/llama3.2
agents:
  config_path: agents.yaml
auth:
  dev_bypass: false                # set true to skip OAuth entirely
  identity_resolver_class: myapp.identity.Resolver  # optional
  domain: platform.example.com                       # optional
  cli:
    client_id: my-cli-app
    scopes: openid api
    issuer: https://auth.example.com          # OIDC auto-discovery
    # OR explicit endpoints:
    # authorization_endpoint: https://auth.example.com/oauth2/authorize
    # token_endpoint: https://auth.example.com/oauth2/token
rag:
  vector_backend: null      # no Qdrant needed for basic usage
storage:
  class: orchid.persistence.sqlite.SQLiteChatStorage
  dsn: ~/.orchid/chats.db

Defaults

Parameter Default Env Override
LLM model ollama/llama3.2 LITELLM_MODEL
Vector backend qdrant VECTOR_BACKEND
Storage class orchid.persistence.sqlite.SQLiteChatStorage CHAT_STORAGE_CLASS
Storage DSN ~/.orchid/chats.db CHAT_DB_DSN
Token storage ~/.orchid/tokens.json --

Chat data is stored in SQLite at ~/.orchid/chats.db by default. OAuth tokens are stored at ~/.orchid/tokens.json with owner-only permissions (0o600). Both directories are created automatically on first use.

Authentication

The CLI supports OAuth 2.0 Authorization Code + PKCE for authenticating with external services. This is a generic, provider-agnostic flow that works with any standard OAuth 2.0 / OIDC provider (Okta, Auth0, Keycloak, etc.).

How It Works

  1. orchid auth login opens the system browser to the provider's authorization page
  2. User authenticates and consents
  3. Provider redirects to a temporary localhost callback server
  4. CLI exchanges the authorization code for access + refresh tokens (with PKCE verification)
  5. Tokens are stored at ~/.orchid/tokens.json
  6. All subsequent orchid chat commands use the stored token automatically

OIDC Discovery

When issuer is set in the config, the CLI fetches {issuer}/.well-known/openid-configuration to auto-discover authorization_endpoint and token_endpoint. This is the recommended approach -- you only need the issuer URL.

Token Refresh

When the access token expires and a refresh token is available, the CLI refreshes automatically before sending the request. If refresh fails, you'll be prompted to run orchid auth login again.

Identity Resolution

When identity_resolver_class is configured, the CLI calls the resolver after login to populate tenant_key and user_id from the OAuth token. These identity fields are cached in the token file so subsequent commands don't need the resolver. See the orchid IdentityResolver ABC for the interface.

Dev Fallback

When auth.dev_bypass: true or auth.cli is absent, the CLI uses a dummy token (cli-token, tenant=cli, user=cli-user). This is fully backward compatible -- existing configs without OAuth continue to work unchanged.

Prerequisites

  • Python 3.11+
  • Ollama running locally (for local LLM models): ollama pull llama3.2

Architecture

orchid_cli/
  main.py          Typer entry point -- registers sub-commands
  bootstrap.py     Shared startup: load config, build graph, init storage
  auth/            OAuth 2.0 authentication (self-contained)
    config.py      Provider settings from orchid.yml + OIDC discovery
    flow.py        Authorization Code + PKCE flow (browser, localhost callback)
    token_store.py Secure token persistence (~/.orchid/tokens.json)
    middleware.py   Token refresh + AuthContext builder
  commands/
    auth.py        login, logout, status subcommands
    chat.py        Full CRUD + messaging + interactive mode
    config.py      Validate agents.yaml
    index.py       Seed RAG vector store
    skill.py       Generate Claude Code skills from agents.yaml

The CLI is a thin layer that calls orchid SDK functions and displays results via Rich. The auth/ subpackage is fully self-contained -- no OAuth logic leaks into chat commands or bootstrap.

Development

pip install -e ../orchid -e ".[dev]"
orchid config validate ../examples/basketball/agents.yaml

Testing

pip install -e ".[dev]"
pytest tests/ -x
ruff check orchid_cli/

License

MIT -- see LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

orchid_cli-1.0.4.tar.gz (41.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

orchid_cli-1.0.4-py3-none-any.whl (32.9 kB view details)

Uploaded Python 3

File details

Details for the file orchid_cli-1.0.4.tar.gz.

File metadata

  • Download URL: orchid_cli-1.0.4.tar.gz
  • Upload date:
  • Size: 41.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for orchid_cli-1.0.4.tar.gz
Algorithm Hash digest
SHA256 c43c6b9e0e84589441d869028572a645765b73a88168d7d240161007d4a7f44f
MD5 8b77a19ad330e6a9a2b63c082103779f
BLAKE2b-256 ab1a746015a8bf70baa0a25c9cf18e4483b3b007adf5e5f1fb35d8046cc70987

See more details on using hashes here.

Provenance

The following attestation bundles were made for orchid_cli-1.0.4.tar.gz:

Publisher: ci.yml on gadz82/orchid-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orchid_cli-1.0.4-py3-none-any.whl.

File metadata

  • Download URL: orchid_cli-1.0.4-py3-none-any.whl
  • Upload date:
  • Size: 32.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for orchid_cli-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 de5069758baf729c17c871cd76a4de3a1ea0720407fd19af53129870d0342981
MD5 ceeffb21ea3599ed147ff7de36228323
BLAKE2b-256 7122905a025ca63ec47d6f06833865d94260c2de74ca015774a49a9321b81b06

See more details on using hashes here.

Provenance

The following attestation bundles were made for orchid_cli-1.0.4-py3-none-any.whl:

Publisher: ci.yml on gadz82/orchid-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page