Skip to main content
Deprecated — use Runtime Selection instead. cli_backend still works through 2.0.0 but emits DeprecationWarning. For YAML migration, run praisonai doctor fix --execute (or the equivalent praisonai doctor runtime --fix --execute) — see Runtime Config Migration.
# Before
agent = Agent(instructions="...", cli_backend="claude-code")

# After
agent = Agent(instructions="...", runtime="claude-code")
from praisonaiagents import Agent

agent = Agent(name="cli-worker", instructions="Run this turn via an external CLI backend.", runtime="claude-code")
agent.start("Implement the login form.")
The user runs an agent turn; the CLI backend resolver spawns the external CLI and returns the result through the same Agent API. CLI Backends let you run an agent’s turn through an external CLI tool (like Claude Code) instead of a Python LLM client, while keeping the same Agent/Task API.

Quick Start

1

Simplest: CLI flag

praisonai "Refactor utils.py" --cli-backend claude-code
2

Declarative: YAML

framework: praisonai
topic: coding
roles:
  coder:
    role: Code refactorer
    goal: Refactor Python modules
    backstory: Senior engineer
    cli_backend: claude-code   # string form
    tasks:
      refactor:
        description: Refactor utils.py
        expected_output: Refactored code
3

YAML with overrides

roles:
  coder:
    role: Code refactorer
    goal: Refactor Python modules
    backstory: Senior engineer
    cli_backend:
      id: claude-code
      overrides:
        timeout_ms: 60000
    tasks:
      refactor:
        description: Refactor utils.py
        expected_output: Refactored code
4

Discover what's registered

praisonai backends list
# claude-code

How It Works

StepComponentPurpose
1User/CLISpecifies backend via flag or YAML
2ResolverFactory pattern for backend creation
3BackendProtocol implementation (e.g., ClaudeCodeBackend)
4ProcessExternal CLI subprocess execution
5ResultParsed response returned to Agent

Permission modes (Claude Code backend)

SettingDefault (PR #2122)Notes
--permission-modedefaultWas bypassPermissions
ClaudeCodeBackend(unsafe=...)FalseSet True + env var for bypass
To opt into bypass:
export PRAISONAI_CLAUDE_BYPASS_PERMISSIONS=1
from praisonai.cli_backends.claude import ClaudeCodeBackend

backend = ClaudeCodeBackend(config={...}, unsafe=True)
With only unsafe=True or only the env var set, the backend overrides to default mode and logs a warning.

Configuration Surfaces


The cli_backend YAML Field

ShapeExampleBehavior
Omitted(field absent)No backend used; Agent uses normal LLM client. No warning logged.
Stringcli_backend: claude-codeResolves via resolve_cli_backend("claude-code").
Dictcli_backend: {id: claude-code, overrides: {timeout_ms: 60000}}Resolves via resolve_cli_backend("claude-code", overrides={...}).
Empty stringcli_backend: ""Raises ValueError("cli_backend string cannot be empty").
Dict missing idcli_backend: {overrides: {...}}Raises ValueError("cli_backend dict must contain an 'id' field").
overrides not a dictcli_backend: {id: claude-code, overrides: "bad"}Raises ValueError("cli_backend.overrides must be a dict").
Invalid typecli_backend: 123Raises ValueError("cli_backend must be string, dict, or instance, got: int").
Unknown idcli_backend: nopeReturns None + logged warning. (Registry lookup, unchanged.)

Framework Compatibility

cli_backend is a runtime feature — it works only with an adapter whose SUPPORTS_RUNTIME_FEATURES = True (the built-in praisonai adapter has it).
framework valuecli_backend behaviour
praisonai (default)Resolved and used to delegate every agent turn.
crewai, autogen, autogen_v4, ag2Raises ValueError: Runtime features (...) are not supported for framework='<x>'. Use a framework whose adapter sets SUPPORTS_RUNTIME_FEATURES = True (e.g. framework='praisonai'). Validation runs before any agent starts, so no partial run is performed.
Third-party adapters opt in by setting SUPPORTS_RUNTIME_FEATURES = True on their subclass — see Capability Flags.
This is a behaviour change in PR #1797 — previously cli_backend was silently ignored under non-praisonai frameworks. Now it fails loudly at config-load time. A follow-up fix (PR #2004) restored this validation for framework: praisonai — previously a regression caused all cli_backend configs to fail at validation regardless of framework.

Using cli_backend in Python

from praisonaiagents import Agent

# 1. String form — same as YAML
agent = Agent(
    name="Refactorer",
    instructions="Refactor Python files cleanly",
    cli_backend="claude-code",
)

agent.start("Refactor utils.py")
# 2. Dict form with overrides — now works in Python too (PR #1797)
agent = Agent(
    name="Refactorer",
    instructions="Refactor Python files cleanly",
    cli_backend={
        "id": "claude-code",
        "overrides": {"timeout_ms": 60000},
    },
)
# 3. Pre-resolved instance — full control
from praisonai.cli_backends import resolve_cli_backend

backend = resolve_cli_backend("claude-code", overrides={"timeout_ms": 60000})

agent = Agent(
    name="Refactorer",
    cli_backend=backend,
)
ShapeExampleWhen to use
strcli_backend="claude-code"Quickest path. Matches YAML idiom.
dictcli_backend={"id": "claude-code", "overrides": {...}}Need timeout / args / model overrides.
instancecli_backend=resolve_cli_backend("claude-code", overrides=...)Pre-resolved once, reused across agents.
callablecli_backend=my_factoryFactory function returning a backend.
YAML and Python now accept the exact same shapes (was previously YAML-only for dict).

Built-in Backend: claude-code

The claude-code backend executes commands via the Claude Code CLI with these default settings:
OptionTypeDefaultDescription
commandstr"claude"CLI command (must be on PATH)
argsList[str]["-p", "--output-format", "stream-json", ..., "--permission-mode", "default"]Default permission mode is default (PR #2122; was bypassPermissions)
resume_argsList[str]["-p", "--output-format", "stream-json", "--resume", "{session_id}"]Arguments for resuming sessions
outputstr"jsonl"Output format expected from CLI
inputstr"stdin"How to pass prompts to CLI
live_sessionstr"claude-stdio"Live session mode
model_argstr"--model"CLI argument for model selection
model_aliasesDict[str, str]{"opus": "claude-opus-4-5", "sonnet": "claude-sonnet-4-5", "haiku": "claude-haiku-3-5"}Model name shortcuts
session_argstr"--session-id"CLI argument for session ID
session_modestr"always"When to use sessions
session_id_fieldsList[str]["session_id"]Fields containing session ID
system_prompt_argstr"--append-system-prompt"CLI argument for system prompts
system_prompt_whenstr"first"When to add system prompts
image_argstr"--image"CLI argument for images
clear_envList[str]["ANTHROPIC_API_KEY", "ANTHROPIC_BASE_URL", "ANTHROPIC_OAUTH_TOKEN", "CLAUDE_CODE_USE_BEDROCK", "CLAUDE_CODE_USE_VERTEX", "CLAUDE_CONFIG_DIR", "CLAUDE_CODE_OAUTH_TOKEN", "OTEL_EXPORTER_OTLP_ENDPOINT", "OTEL_EXPORTER_OTLP_HEADERS", "OTEL_RESOURCE_ATTRIBUTES", "GOOGLE_APPLICATION_CREDENTIALS", "AWS_PROFILE", "AWS_REGION", "AWS_ACCESS_KEY_ID", "AWS_SECRET_ACCESS_KEY", "AWS_SESSION_TOKEN"]Environment variables sanitized before subprocess
bundle_mcpboolTrueEnable MCP bundling
bundle_mcp_modestr"claude-config-file"MCP bundling mode
serializeboolTrueQueue operations to avoid conflicts
timeout_msint300000Subprocess timeout (5 minutes)

The --cli-backend CLI Flag

FlagTypeBehavior
--cli-backend BACKEND_IDstringChoices populated dynamically from list_cli_backends(). Currently: claude-code.
--cli-backend X --external-agent YMutually exclusive — argparse rejects with “not allowed with argument”
Unknown id (e.g. --cli-backend bogus)Rejected by argparse with “invalid choice”

The backends Subcommand

CommandBehavior
praisonai backends listPrints each registered backend id on its own line
praisonai backendsSame as list (list is the default)
praisonai backends bogusPrints [red]Unknown backends subcommand: bogus[/red] and the list of valid subcommands

Custom Backends (Advanced)

Register your own CLI backend for custom tools:
from praisonai.cli_backends import register_cli_backend
from praisonaiagents import CliBackendConfig

def my_backend_factory():
    from my_pkg import MyBackend
    return MyBackend(config=CliBackendConfig(command="my-cli"))

register_cli_backend("my-backend", my_backend_factory)
After registering, praisonai backends list shows it, --cli-backend my-backend accepts it, and cli_backend: my-backend works in YAML.

CliBackendProtocol Reference

For backend authors implementing the protocol:
  • config: CliBackendConfig — Configuration object
  • async def execute(prompt, *, session=None, images=None, system_prompt=None, **kwargs) -> CliBackendResult — Single execution
  • async def stream(prompt, **kwargs) -> AsyncIterator[CliBackendDelta] — Streaming execution
  • def capabilities() -> RuntimeCapabilityMatrixRequired (new). Returns the capability matrix for this backend.
Breaking change: CliBackendProtocol now requires a capabilities() -> RuntimeCapabilityMatrix method so the framework can validate capabilities at config time. Third-party backends must add this method. Without it, the backend will be treated as supporting only the reduced capability set (tool_loop, basic_chat, simple_tools).

Best Practices

Use the YAML cli_backend: field for versioned, declarative configuration. Use --cli-backend flag for quick one-off commands and testing.
cli_backend:
  id: claude-code
  overrides:
    timeout_ms: 60000  # 1 minute instead of 5
Rather than monkey-patching, use the overrides system for custom timeouts.
The cli_backend field requires an adapter whose SUPPORTS_RUNTIME_FEATURES = True — the built-in framework: praisonai (the default) qualifies. PraisonAI validates this up front — if you try it with crewai, autogen, autogen_v4, or ag2, you’ll get a ValueError immediately, before any agent runs.
The --cli-backend flag and --external-agent flag are mutually exclusive. Pick one approach:
  • CLI Backends (new): Pluggable, configurable, YAML-supported
  • External Agent (legacy): Class-based, limited configuration
The claude-code backend requires the claude CLI to be installed and accessible. Install via the Claude Code SDK or ensure it’s in your system PATH.

How this differs from --external-agent

The legacy --external-agent claude and ClaudeCodeIntegration class still work and are unchanged (see External CLI Integrations). The CLI Backend Protocol is the new pluggable path: backends are registered by id, configured declaratively, and surfaced as a YAML field and --cli-backend flag.

Runtime Selection

Model-scoped runtime configuration (replaces cli_backend)

External CLI Integrations

Legacy class-based CLI integration approach

Agent Configuration

Core Agent configuration and usage patterns