Skip to content

Commit b082f52

Browse files
committed
chore: simplify readme
1 parent 2d00c8c commit b082f52

1 file changed

Lines changed: 1 addition & 34 deletions

File tree

README.md

Lines changed: 1 addition & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,7 @@ CLI for [Chatwoot](https://www.chatwoot.com) — manage conversations, send repl
1010
curl -fsSL https://chwt.app/install-cli | sh
1111
```
1212

13-
The script installs to `~/.local/bin/chatwoot` by default. Override with environment variables:
14-
15-
```bash
16-
CHATWOOT_VERSION=v0.2.0 CHATWOOT_INSTALL_DIR=/usr/local/bin curl -fsSL https://chwt.app/install-cli | sh
17-
```
18-
19-
**Windows** — download `chatwoot_<version>_Windows_x86_64.zip` from the [releases page](https://github.com/chatwoot/cli/releases/latest) and extract `chatwoot.exe`.
20-
21-
**From source** — requires Go 1.25+:
22-
23-
```bash
24-
go install github.com/chatwoot/cli/cmd/chatwoot@latest
25-
# or
26-
git clone https://github.com/chatwoot/cli.git && cd cli
27-
go build -o chatwoot ./cmd/chatwoot/
28-
```
13+
For installing a specific version, or to install the CLI on Windows, follow the instructions [here](https://developers.chatwoot.com/cli#install).
2914

3015
## Setup
3116

@@ -51,24 +36,6 @@ npx skills add chatwoot/cli --global # all projects
5136

5237
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.
5338

54-
## Shell Completions
55-
56-
The install script offers to set this up interactively. To do it manually, write the completion code to your shell's standard auto-load location:
57-
58-
```bash
59-
# bash
60-
chatwoot completion bash -c > ~/.local/share/bash-completion/completions/chatwoot
61-
62-
# fish
63-
chatwoot completion fish -c > ~/.config/fish/completions/chatwoot.fish
64-
65-
# zsh — resolve the install path once so future PATH changes can't hijack the source line
66-
chatwoot_bin="$(command -v chatwoot)"
67-
echo "source <(\"$chatwoot_bin\" completion zsh -c)" >> ~/.zshrc
68-
```
69-
70-
Restart your shell (or `source` the rc file) and tab-completion will work for commands, subcommands, and flags. Run `chatwoot completion --help` for details.
71-
7239
## CLI Usage
7340

7441
The CLI uses a simple noun grammar:

0 commit comments

Comments
 (0)