From 39e63bf78e59d7caf8f779b8a742a2dc6713979d Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Mon, 11 May 2026 21:50:54 +0530 Subject: [PATCH 1/2] feat: add uninstall instructions --- cli.mdx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/cli.mdx b/cli.mdx index 26f9adb2..ce8636fc 100644 --- a/cli.mdx +++ b/cli.mdx @@ -76,3 +76,21 @@ chatwoot convs --help ``` Issues and feedback: [github.com/chatwoot/cli](https://github.com/chatwoot/cli). + +## Uninstalling + +```bash +chatwoot auth logout # remove API key from the OS keyring +rm -rf ~/.chatwoot # delete config (~/.chatwoot/config.yaml) +rm "$(command -v chatwoot)" # delete the binary +``` + +If you set up shell completions, also remove them: + +```bash +rm -f ~/.local/share/bash-completion/completions/chatwoot # bash +rm -f ~/.config/fish/completions/chatwoot.fish # fish +# zsh: delete the `source <(... completion zsh -c)` line from ~/.zshrc +``` + +On Windows, delete the extracted `chatwoot.exe` and the `%USERPROFILE%\.chatwoot` folder. If `CHATWOOT_API_KEY` is set in your environment, unset it in your shell rc — `auth logout` can't remove env-provided credentials. From 4e5e10152e552930cbee680f84f5c5a94244b633 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Mon, 11 May 2026 22:34:16 +0530 Subject: [PATCH 2/2] feat: add newly added command --- cli/commands.mdx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/cli/commands.mdx b/cli/commands.mdx index 963462f9..243b9472 100644 --- a/cli/commands.mdx +++ b/cli/commands.mdx @@ -68,6 +68,12 @@ chatwoot conv 123 label billing,urgent # sets labels (replaces existing) chatwoot conv 123 priority urgent # urgent | high | medium | low | none ``` +**Contact:** + +```bash +chatwoot conv 123 contact # view the contact (sender) for this conversation +``` + ## Contacts ```bash @@ -104,6 +110,14 @@ chatwoot config path # print config file path chatwoot config view # print config and credential source ``` +## Version + +```bash +chatwoot version # print the CLI version +chatwoot version --check # check GitHub for a newer release +chatwoot --version # same as `version`, as a flag +``` + ## Global flags | Flag | Short | Description |