Skip to content

Getting Started


RequirementVersion / Notes
Node.js18 or higher — download
AgentAt least one — see Agent below
tmuxTerminal multiplexer — brew install tmux on macOS
gitRequired for git-based teams — download

cliq delegates actual AI work to an agent. The default is Cursor CLI (agent), but any supported agent works:

AgentBinaryHow to authenticate
CursoragentSet CURSOR_API_KEY environment variable
Claude CodeclaudeRun claude login
Gemini CLIgeminiRun gemini auth
CodexcodexSet OPENAI_API_KEY environment variable

To use a different default agent, add to ~/.cliqrc/settings.json:

"agents": { "default": "claude-code" }

Run cliq doctor to verify your agent is installed and authenticated.


Terminal window
npm install -g @cliqhub/cliq
Terminal window
cliq setup

This creates ~/.cliqrc/ with default settings and an empty local team registry. You only need to do this once.

Teams live in a separate repository. Clone it anywhere on your machine:

Terminal window
git clone [email protected]:elanamir/cliq-teams.git ~/cliq-teams

Install the official teams from the cloned repo:

Terminal window
cliq team install ./cliq-teams/@cliq/hello-world
Terminal window
cliq doctor

This checks Node.js, Cursor CLI, tmux, and git. Fix any issues before continuing.


You’re set up. Head to the Hello World walkthrough to run your first pipeline and learn how all the pieces fit together.