@operatorstack/yield 0.5.0 → 0.5.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 +4 -4
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -161,13 +161,13 @@ Registration is the discovery step. This command detects installed verified
|
|
|
161
161
|
agents and writes a small adapter for each one:
|
|
162
162
|
|
|
163
163
|
```bash
|
|
164
|
-
npm exec -- yskill register skills/release
|
|
164
|
+
npm exec -- yskill register skills/release --root .
|
|
165
165
|
```
|
|
166
166
|
|
|
167
167
|
Select verified agents explicitly when you do not want automatic detection:
|
|
168
168
|
|
|
169
169
|
```bash
|
|
170
|
-
npm exec -- yskill register skills/release \
|
|
170
|
+
npm exec -- yskill register skills/release --root . \
|
|
171
171
|
--agent cursor,codex,claude-code
|
|
172
172
|
```
|
|
173
173
|
|
|
@@ -208,8 +208,8 @@ helper:
|
|
|
208
208
|
|
|
209
209
|
| Language | Command |
|
|
210
210
|
| ---------- | ------------------------------------------------------------------------------------------------------------------- |
|
|
211
|
-
| TypeScript | `npm exec -- yskill helper install --language typescript`
|
|
212
|
-
| Python | `python -m yieldskill helper install --language python`
|
|
211
|
+
| TypeScript | `npm exec -- yskill helper install --root . --language typescript` |
|
|
212
|
+
| Python | `python -m yieldskill helper install --root . --language python` |
|
|
213
213
|
| Rust | `cargo install yieldskill --root .yield --locked`, then `.yield/bin/yskill helper install --root . --language rust` |
|
|
214
214
|
| Go | `go run github.com/operatorstack/yield/cmd/yskill@latest helper install --root . --language go` |
|
|
215
215
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operatorstack/yield",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Yield skill-program SDK for TypeScript: turn SKILL.md workflows into resumable programs.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
"registry": "https://registry.npmjs.org/"
|
|
51
51
|
},
|
|
52
52
|
"optionalDependencies": {
|
|
53
|
-
"@operatorstack/yield-darwin-amd64": "0.5.
|
|
54
|
-
"@operatorstack/yield-darwin-arm64": "0.5.
|
|
55
|
-
"@operatorstack/yield-linux-amd64": "0.5.
|
|
56
|
-
"@operatorstack/yield-linux-arm64": "0.5.
|
|
57
|
-
"@operatorstack/yield-windows-amd64": "0.5.
|
|
58
|
-
"@operatorstack/yield-windows-arm64": "0.5.
|
|
53
|
+
"@operatorstack/yield-darwin-amd64": "0.5.1",
|
|
54
|
+
"@operatorstack/yield-darwin-arm64": "0.5.1",
|
|
55
|
+
"@operatorstack/yield-linux-amd64": "0.5.1",
|
|
56
|
+
"@operatorstack/yield-linux-arm64": "0.5.1",
|
|
57
|
+
"@operatorstack/yield-windows-amd64": "0.5.1",
|
|
58
|
+
"@operatorstack/yield-windows-arm64": "0.5.1"
|
|
59
59
|
}
|
|
60
60
|
}
|