CUGA LogoCUGA AGENT
Run

CLI Presets

Start CUGA demos, the manage UI, and related services from the command line.

CLI presets

Architecture: The CLI is a Clients layer entry point — it starts the Web UI, backend, registry, and sample apps as one local stack. See How CUGA works — Clients.

The cuga CLI starts a preset stack (demo UI, registry, sample apps) on your machine.

cuga start <preset>

The UI is at http://localhost:7860 unless you change [server_ports].demo.

Start presets

PresetWhat it starts
demoDefault chat demo
managerManage UI — draft tools, MCP, models, and policies, then publish
demo_knowledgeDemo with the knowledge engine on (upload and query documents)
demo_skillsDemo with agent skills and a sandbox
demo_crmCRM + email sample apps
demo_supervisorCRM demo with CugaSupervisor multi-agent coordination
demo_healthHealthcare OpenAPI sample (cuga-oak-health)
demo_docsIBM Docs MCP sample
travel_agentMulti-agent travel sample
registryAPI registry only
cuga start demo
cuga start manager
cuga start demo_knowledge
cuga start demo_skills

More detail on each demo: Demos.

Prefer cuga start manager when you want to configure an agent in the UI and publish a version. See Manage and publish.

Useful flags

These are the flags you will actually use. Run cuga start --help for the full list.

FlagTypical use
--host 0.0.0.0Allow connections from other machines
--sandboxRemote sandbox via llm-sandbox (install with uv sync --group sandbox)
--no-emailSkip email services on demo_crm / demo_supervisor
--filesystem / --crm / --email / --docsTurn sample apps on for a preset that does not include them
Knowledge --embeddings-* / --knowledge-profileOverride embeddings and RAG profile for demo_knowledge

Other CLI groups

cuga --help
cuga knowledge --help   # ingest, search, and collection helpers
cuga policy --help      # policy helpers

Next steps