@usecoil/skill-claude 0.1.0 → 0.1.1
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 +1 -1
- package/package.json +2 -2
- package/skill/SKILL.md +2 -2
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ installed CLI and installs the compatible public `@usecoil/cli` package when
|
|
|
5
5
|
`coil` is not already available:
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npx --yes @usecoil/skill-claude@0.1.
|
|
8
|
+
npx --yes @usecoil/skill-claude@0.1.1 --base-url https://www.usecoil.com
|
|
9
9
|
coil config set-base-url https://www.usecoil.com --profile prod
|
|
10
10
|
printf '%s' "$COIL_API_KEY" | coil auth login --profile prod --key -
|
|
11
11
|
coil --profile prod agent-context --json
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@usecoil/skill-claude",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Claude Code skill package for Coil agent workflows",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"coilCompatibility": {
|
|
30
30
|
"cli": "0.1.x",
|
|
31
|
-
"preferredVersion": "0.1.
|
|
31
|
+
"preferredVersion": "0.1.1"
|
|
32
32
|
},
|
|
33
33
|
"coilRuntime": {
|
|
34
34
|
"name": "claude",
|
package/skill/SKILL.md
CHANGED
|
@@ -16,7 +16,7 @@ it can do:
|
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
18
|
if ! command -v coil >/dev/null 2>&1; then
|
|
19
|
-
npm install --global @usecoil/cli@0.1.
|
|
19
|
+
npm install --global @usecoil/cli@0.1.1
|
|
20
20
|
fi
|
|
21
21
|
coil --version
|
|
22
22
|
```
|
|
@@ -77,7 +77,7 @@ The runtime-specific installer or registry handles placement; Coil operations
|
|
|
77
77
|
always use the same public JSON CLI:
|
|
78
78
|
|
|
79
79
|
```bash
|
|
80
|
-
npm install --global @usecoil/cli@0.1.
|
|
80
|
+
npm install --global @usecoil/cli@0.1.1
|
|
81
81
|
coil config set-base-url https://www.usecoil.com --profile prod
|
|
82
82
|
printf '%s' "$COIL_API_KEY" | coil auth login --profile prod --key -
|
|
83
83
|
coil --profile prod agent-context --json
|