co CLI
A command-line interface for CollabOps
co is a CLI for working with change requests (CRs), issues, and workspaces from the terminal — without leaving your editor.
1. Install
Install with a single command. Requires curl + python3 (already present on most macOS and Linux systems).
curl -fsSL https://docs.collabops.ai/install.sh | bashDetects your OS/CPU automatically and drops a single Go binary (~9MB) at ~/.local/bin/co. Update with co update or by re-running the same command. If ~/.local/bin is not on your PATH, the script prints a one-line snippet to add it. Supported platforms: darwin/amd64, darwin/arm64, linux/amd64, linux/arm64.
2. Log in
co auth loginYou'll be prompted for four things:
| Field | Value |
|---|---|
| API URL | e.g. https://stage.collabops.ai |
| your work email | |
| Password | your password |
| Default workspace slug | e.g. collabops-one |
Verify:
co auth status
# → ✓ Authenticated as <your-name>3. Common commands
Change Request (CR)
co cr list # your open CRs
co cr view 2675 # show CR detail (key=2675)
co cr create -t "Title" -B main # open a CR from the current branch
co cr close 2675 # close a CR
co cr reopen 2675 # reopen a CRIssue
co issue list # your issues
co issue list --scope workspace # all issues in the workspace
co issue view 123 # show issue detail
co issue create -t "Bug X" --type bug --priority high
co issue close 123 # status=doneNext steps
Change Request guide — create, review, and merge CRs
Issue guide — create and track issues