Reference
CLI
Find the command for each stage of the local development and deployment workflow.
Last updated
Install the CLI
terminal
pip install connic-composer-sdk
connic --helpRun connic <command> --help for the complete options supported by your installed version.
Commands
| Command | Purpose |
|---|---|
| connic init [name] | Create a project with the standard directories and example files. |
| connic skill | Install or update the Connic skill under .agents/skills/connic. |
| connic login | Authenticate the CLI with a Connic project. |
| connic migrate | Scan a supported LangChain or Google ADK project and generate a Connic project. |
| connic dev [name] | Start or reconnect to a cloud dev runner and sync local edits. |
| connic lint | Validate configuration and preview discovered agents and tools. |
| connic tools | List the tools discovered in the current project and their signatures. |
| connic test | Run YAML test suites against the configured test environment. |
| connic deploy | Build and deploy the project, running the test gate first. |
Common options
terminal
# Target a specific environment
connic dev my-feature
connic test --env <environment-id>
connic deploy --env <environment-id>
# Narrow or automate test output
connic test --filter <case-name>
connic test --json
connic test --coverage
# Emergency deployment escape hatch
connic deploy --skip-testsSee Dev Server for session behavior, Running Tests & CI for test exit codes, and Deployment for release workflows.