On this page
Quickstart
From zero to your first authenticated call in under a minute. Requires Node.js 20+; works on macOS, Linux, and Windows.
Install & sign in#
npm install -g @cotrackpro/cli
cotrackpro setup # guided sign-in (opens your browser)
No global install? Use it on demand with npx @cotrackpro/cli whoami.
Confirm your access#
cotrackpro whoami # your identity, active org, role, permissions
cotrackpro doctor # diagnose any setup issues
Add --output json to any command for scripting, or --help for full options.
Build from CoTrackPro libraries#
# Download a private library (integrity-verified)
cotrackpro packages pull mylib@1.2.3
# Publish a library to your org
cotrackpro packages publish ./mylib-1.3.0.tgz
# Scaffold a new module, pre-wired to the SDK
cotrackpro scaffold reporter
Work across the ecosystem#
cotrackpro workspace clone --category core # clone the core repos
cotrackpro workspace link # dev them against this CLI's SDK
Explore the platform surface (offline)#
cotrackpro artifacts search incident
cotrackpro catalog roles
Next: build from code with the SDK, or browse the full command reference.