You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For installing a specific version, or to install the CLI on Windows, follow the instructions [here](https://developers.chatwoot.com/cli#install).
13
+
For a specific version or Windows, see the [install docs](https://developers.chatwoot.com/cli#install).
14
14
15
15
## Setup
16
16
17
17
```bash
18
18
chatwoot auth login
19
19
```
20
20
21
-
You'll be prompted for:
22
-
-**Base URL** — your Chatwoot instance (e.g. `https://app.chatwoot.com`)
23
-
-**API Key** — your agent API access token
24
-
-**Account ID** — your account number
25
-
26
-
Credentials are validated against the API before saving. Non-secret config is stored at `~/.chatwoot/config.yaml`; the API key is stored in your OS keyring. For CI, coding agents, or headless environments, set `CHATWOOT_API_KEY` to override the saved keyring token.
21
+
You'll be prompted for your **Base URL**, **API Key**, and **Account ID**. Credentials are validated before saving. Non-secret config lives at `~/.chatwoot/config.yaml`; the API key is stored in your OS keyring. For CI or headless environments, set `CHATWOOT_API_KEY` to override the keyring.
27
22
28
23
## Agent Skill
29
24
30
-
If you use Claude Code, Cursor, or another AI coding assistant, install the agent skill so it knows the CLI's grammar, JSON shapes, and safety rules before sending customer-visible replies:
25
+
If you use Claude Code, Cursor, or another AI coding assistant, install the agent skill so it knows the CLI's grammar and safety rules before sending customer-visible replies:
31
26
32
27
```bash
33
28
npx skills add chatwoot/cli # current project
34
29
npx skills add chatwoot/cli --global # all projects
35
30
```
36
31
37
-
Agents run non-interactively, so authenticate once with `chatwoot auth login` (or set `CHATWOOT_API_KEY` for sandboxed environments). See the [agent skill docs](https://developers.chatwoot.com/cli/agent-skill) for details.
32
+
See the [agent skill docs](https://developers.chatwoot.com/cli/agent-skill) for details.
0 commit comments