@customerio/cli 0.0.5 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/.npm/run.js +0 -0
  2. package/README.md +16 -0
  3. package/package.json +7 -7
package/.npm/run.js CHANGED
File without changes
package/README.md CHANGED
@@ -19,6 +19,22 @@ To build from source instead:
19
19
  go install github.com/customerio/cli@latest
20
20
  ```
21
21
 
22
+ ## Uninstall
23
+
24
+ ```bash
25
+ # If installed via npm
26
+ npm uninstall -g @customerio/cli
27
+
28
+ # If installed via go install
29
+ rm -f "$(go env GOPATH)/bin/cio"
30
+ ```
31
+
32
+ To remove stored credentials and cached data:
33
+
34
+ ```bash
35
+ rm -rf ~/.cio
36
+ ```
37
+
22
38
  ## Install the agent skill
23
39
 
24
40
  This repo ships a [SKILL.md](skills/cio/SKILL.md) so Claude Code, Cursor, Codex, Windsurf, and other agents that support [open agent skills](https://github.com/vercel-labs/skills) know how to drive the CLI. Install it with:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@customerio/cli",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "description": "Agent-first CLI for Customer.io APIs",
5
5
  "bin": {
6
6
  "cio": ".npm/run.js"
@@ -11,12 +11,12 @@
11
11
  "README.md"
12
12
  ],
13
13
  "optionalDependencies": {
14
- "@customerio/cli-darwin-arm64": "0.0.5",
15
- "@customerio/cli-darwin-x64": "0.0.5",
16
- "@customerio/cli-linux-arm64": "0.0.5",
17
- "@customerio/cli-linux-x64": "0.0.5",
18
- "@customerio/cli-win32-arm64": "0.0.5",
19
- "@customerio/cli-win32-x64": "0.0.5"
14
+ "@customerio/cli-darwin-arm64": "0.0.7",
15
+ "@customerio/cli-darwin-x64": "0.0.7",
16
+ "@customerio/cli-linux-arm64": "0.0.7",
17
+ "@customerio/cli-linux-x64": "0.0.7",
18
+ "@customerio/cli-win32-arm64": "0.0.7",
19
+ "@customerio/cli-win32-x64": "0.0.7"
20
20
  },
21
21
  "publishConfig": {
22
22
  "access": "public",