@operatorstack/yield 0.5.2 → 0.6.0
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 +11 -5
- 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
|
|
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 \
|
|
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 --
|
|
212
|
-
| Python | `python -m yieldskill helper install --
|
|
211
|
+
| TypeScript | `npm exec -- yskill helper install --language typescript` |
|
|
212
|
+
| Python | `python -m yieldskill helper install --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
|
|
|
@@ -233,6 +233,11 @@ compatibility aliases for `yskill helper install`.
|
|
|
233
233
|
3. The coding agent, user, or CLI supplies the result.
|
|
234
234
|
4. Yield resumes from the journal and replays the program to the next operation.
|
|
235
235
|
|
|
236
|
+
At each stopping point, Yield also stores a privacy-safe portable receipt from
|
|
237
|
+
the exact journal prefix. Receipt export is deferred and never adds network
|
|
238
|
+
work to foreground execution. See
|
|
239
|
+
[portable run receipts](https://github.com/operatorstack/yield/blob/main/docs/reference/run-receipts.md).
|
|
240
|
+
|
|
236
241
|
If replay produces a different operation, the run fails instead of silently
|
|
237
242
|
forking. Every side effect crosses one of these primitives:
|
|
238
243
|
|
|
@@ -269,7 +274,8 @@ Run `yskill agents` to inspect the pinned registry and available project paths.
|
|
|
269
274
|
|
|
270
275
|
Yield provides deterministic control flow, typed requests and responses,
|
|
271
276
|
persistent run state, replay with divergence detection, stale and duplicate
|
|
272
|
-
response rejection,
|
|
277
|
+
response rejection, evidence-bound completion, and deterministic local run
|
|
278
|
+
receipts with independent retryable export.
|
|
273
279
|
|
|
274
280
|
Schema validity is not truth. Yield cannot prove that an agent performed only
|
|
275
281
|
the requested work. `runCommand` is different: the Yield CLI executes the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operatorstack/yield",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
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.
|
|
54
|
-
"@operatorstack/yield-darwin-arm64": "0.
|
|
55
|
-
"@operatorstack/yield-linux-amd64": "0.
|
|
56
|
-
"@operatorstack/yield-linux-arm64": "0.
|
|
57
|
-
"@operatorstack/yield-windows-amd64": "0.
|
|
58
|
-
"@operatorstack/yield-windows-arm64": "0.
|
|
53
|
+
"@operatorstack/yield-darwin-amd64": "0.6.0",
|
|
54
|
+
"@operatorstack/yield-darwin-arm64": "0.6.0",
|
|
55
|
+
"@operatorstack/yield-linux-amd64": "0.6.0",
|
|
56
|
+
"@operatorstack/yield-linux-arm64": "0.6.0",
|
|
57
|
+
"@operatorstack/yield-windows-amd64": "0.6.0",
|
|
58
|
+
"@operatorstack/yield-windows-arm64": "0.6.0"
|
|
59
59
|
}
|
|
60
60
|
}
|