@customerio/cli 0.0.11 → 0.0.12
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.
- package/README.md +19 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -37,7 +37,25 @@ rm -rf ~/.cio
|
|
|
37
37
|
|
|
38
38
|
## Install the agent skill
|
|
39
39
|
|
|
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.
|
|
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.
|
|
41
|
+
|
|
42
|
+
The CLI can install the current skills directly:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
# Installs the bootstrap skill; prompts for global (~/.claude, ~/.agents)
|
|
46
|
+
# vs. project (./.claude, ./.agents)
|
|
47
|
+
cio skills install
|
|
48
|
+
|
|
49
|
+
cio skills install --global # install for every project
|
|
50
|
+
cio skills install --project # install into the current directory
|
|
51
|
+
cio skills install --target claude # Claude Code only (use --target codex for Codex)
|
|
52
|
+
cio skills install --dry-run # show what would be written
|
|
53
|
+
cio skills install --force # overwrite an existing SKILL.md
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
This installs only the Customer.io bootstrap skill — its `SKILL.md` routing index is written to `<target>/skills/<name>/` for Claude Code (`.claude`) and the open agent skills convention (`.agents`) Codex, Cursor, and Windsurf read. Every other reference (Journeys, CDP, Design Studio, recipes) is served by the backend and pulled on demand via `cio skills read <skill>`, so nothing else is copied locally and the content stays current.
|
|
57
|
+
|
|
58
|
+
Or install via the open agent skills tooling:
|
|
41
59
|
|
|
42
60
|
```bash
|
|
43
61
|
npx skills add customerio/cli
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@customerio/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
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.
|
|
15
|
-
"@customerio/cli-darwin-x64": "0.0.
|
|
16
|
-
"@customerio/cli-linux-arm64": "0.0.
|
|
17
|
-
"@customerio/cli-linux-x64": "0.0.
|
|
18
|
-
"@customerio/cli-win32-arm64": "0.0.
|
|
19
|
-
"@customerio/cli-win32-x64": "0.0.
|
|
14
|
+
"@customerio/cli-darwin-arm64": "0.0.12",
|
|
15
|
+
"@customerio/cli-darwin-x64": "0.0.12",
|
|
16
|
+
"@customerio/cli-linux-arm64": "0.0.12",
|
|
17
|
+
"@customerio/cli-linux-x64": "0.0.12",
|
|
18
|
+
"@customerio/cli-win32-arm64": "0.0.12",
|
|
19
|
+
"@customerio/cli-win32-x64": "0.0.12"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"access": "public",
|