Skip to main content
Connic
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 --help

Run connic <command> --help for the complete options supported by your installed version.

Commands

CommandPurpose
connic init [name]Create a project with the standard directories and example files.
connic skillInstall or update the Connic skill under .agents/skills/connic.
connic loginAuthenticate the CLI with a Connic project.
connic migrateScan 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 lintValidate configuration and preview discovered agents and tools.
connic toolsList the tools discovered in the current project and their signatures.
connic testRun YAML test suites against the configured test environment.
connic deployBuild 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-tests

See Dev Server for session behavior, Running Tests & CI for test exit codes, and Deployment for release workflows.