composio version command displays the current version of the Composio CLI.
Usage
Description
Displays the semantic version (semver) of the installed CLI binary.Examples
Display Version
Capture Version in Scripts
Check Version Programmatically
Display Full CLI Help
Output Format
Interactive Mode (TTY)
- stdout: Silent (no data output)
- stderr: Decorated output with CLI formatting
- Human-readable display
Piped Mode (Not TTY)
- stdout: Plain version string only
- stderr: Silent (all decoration suppressed)
- Machine-readable for scripts
Version Format
The CLI uses semantic versioning (semver):- MAJOR: Breaking changes (e.g., 1.0.0 → 2.0.0)
- Minor: New features, backward compatible (e.g., 0.1.0 → 0.2.0)
- Patch: Bug fixes, backward compatible (e.g., 0.1.0 → 0.1.1)
0.1.33
- Major: 0 (pre-1.0, API may change)
- Minor: 1 (feature set)
- Patch: 33 (bug fix iteration)
Version Source
The version is read from the CLI’s embeddedpackage.json:
Checking for Updates
To check if a newer version is available:upgrade command:
- Fetches the latest release from GitHub
- Compares with your current version
- Upgrades if a newer version exists
Related Commands
composio upgrade- Update to the latest versioncomposio --help- Display CLI help
Next Steps
upgrade
Update your CLI
Installation
Installation guide