> For the complete documentation index, see [llms.txt](https://developer.celigo.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.celigo.com/cli/readme.md).

# Celigo CLI

The Celigo CLI (`@celigo/celigo-cli`) is a first-party command-line tool for driving integrator.io. Anything you can do with the REST API you can do with `celigo <cmd>`, with profiles, safer writes, and account-wide utilities.

* **Package:** [@celigo/celigo-cli on npm](https://www.npmjs.com/package/@celigo/celigo-cli)
* **Binary:** `celigo`
* **Requires:** Node.js 22+
* **License:** MIT

## Quickstart

To get started quickly, [install the CLI](/cli/getting-started/install.md) and [authenticate using a Celigo API token](/cli/getting-started/authenticate.md).

```bash
# 1. Install
npm install -g @celigo/celigo-cli

# 2. Point at an account
export CELIGO_API_TOKEN="<paste>"

# or, for multiple accounts:
celigo profile add prod --api-token "$PROD_TOKEN" --api-base-url https://api.integrator.io
celigo profile add eu   --api-token "$EU_TOKEN"   --api-base-url https://api.eu.integrator.io
celigo profile use prod

# 3. Do something
celigo integrations list --format table
celigo flows list --jq '.[] | {_id, name, disabled}'
```

Installing globally also sets up [AI assistant skills](/cli/using-the-cli/skills.md) for Claude Code, Cursor, and Windsurf — so your AI assistant can give grounded answers about integrator.io.

## Command reference

One page per resource. Every subcommand lists its arguments and flags; commands that call the REST API link to the corresponding OpenAPI spec.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://developer.celigo.com/cli/readme.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
