@operatorstack/yield 0.1.32 → 0.1.34
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 +16 -16
- package/assets/yield-mark.svg +2 -2
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<a href="https://yield.operatorstack.systems/">
|
|
3
|
-
<img src="https://raw.githubusercontent.com/operatorstack/yield/main/assets/yield-mark.svg" width="96"
|
|
3
|
+
<img src="https://raw.githubusercontent.com/operatorstack/yield/main/assets/yield-mark.svg" width="96" alt="Yield" />
|
|
4
4
|
</a>
|
|
5
5
|
</p>
|
|
6
6
|
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<p align="center">
|
|
16
16
|
<a href="https://www.npmjs.com/package/@operatorstack/yield"><img alt="npm version" src="https://img.shields.io/npm/v/@operatorstack/yield?style=flat-square" /></a>
|
|
17
17
|
<a href="https://github.com/operatorstack/yield/actions/workflows/verify.yml"><img alt="Build status" src="https://img.shields.io/github/actions/workflow/status/operatorstack/yield/verify.yml?branch=main&style=flat-square&label=build" /></a>
|
|
18
|
-
<a href="LICENSE"><img alt="MIT license" src="https://img.shields.io/npm/l/@operatorstack/yield?style=flat-square" /></a>
|
|
18
|
+
<a href="https://github.com/operatorstack/yield/blob/main/LICENSE"><img alt="MIT license" src="https://img.shields.io/npm/l/@operatorstack/yield?style=flat-square" /></a>
|
|
19
19
|
</p>
|
|
20
20
|
|
|
21
21
|
<p align="center">
|
|
@@ -96,7 +96,7 @@ defineSkill((ctx) => {
|
|
|
96
96
|
The example uses harmless commands so its fixture can run in any checkout.
|
|
97
97
|
Replace them with the test, publish, and registry commands for your project.
|
|
98
98
|
The complete tested source is in
|
|
99
|
-
[`examples/release-checklist`](examples/release-checklist/).
|
|
99
|
+
[`examples/release-checklist`](https://github.com/operatorstack/yield/tree/main/examples/release-checklist/).
|
|
100
100
|
|
|
101
101
|
## Use Yield in five steps
|
|
102
102
|
|
|
@@ -211,8 +211,8 @@ forking. Every side effect crosses one of these primitives:
|
|
|
211
211
|
| `require` | Bind a required claim to recorded evidence. |
|
|
212
212
|
| `blocked` / `refused` | Stop honestly when work cannot or must not continue. |
|
|
213
213
|
|
|
214
|
-
See the [primitive guides](docs/primitives/README.md) and
|
|
215
|
-
[runtime reference](docs/reference/cli.md) for the full contract.
|
|
214
|
+
See the [primitive guides](https://github.com/operatorstack/yield/blob/main/docs/primitives/README.md) and
|
|
215
|
+
[runtime reference](https://github.com/operatorstack/yield/blob/main/docs/reference/cli.md) for the full contract.
|
|
216
216
|
|
|
217
217
|
## Languages and coding agents
|
|
218
218
|
|
|
@@ -221,10 +221,10 @@ the same program in every language and compares observable behavior.
|
|
|
221
221
|
|
|
222
222
|
| Language | SDK | Example |
|
|
223
223
|
|---|---|---|
|
|
224
|
-
| TypeScript | [`@operatorstack/yield`](sdk/typescript/) | [`release-checklist`](examples/release-checklist/) |
|
|
225
|
-
| Python | [`yieldskill`](sdk/python/) | [`env-doctor`](examples/env-doctor/) |
|
|
226
|
-
| Go | [`sdk/yield`](sdk/yield/) | [`investigate`](examples/investigate/) |
|
|
227
|
-
| Rust | [`yieldskill`](sdk/rust/) | [`data-migration`](examples/data-migration/) |
|
|
224
|
+
| TypeScript | [`@operatorstack/yield`](https://github.com/operatorstack/yield/tree/main/sdk/typescript/) | [`release-checklist`](https://github.com/operatorstack/yield/tree/main/examples/release-checklist/) |
|
|
225
|
+
| Python | [`yieldskill`](https://github.com/operatorstack/yield/tree/main/sdk/python/) | [`env-doctor`](https://github.com/operatorstack/yield/tree/main/examples/env-doctor/) |
|
|
226
|
+
| Go | [`sdk/yield`](https://github.com/operatorstack/yield/tree/main/sdk/yield/) | [`investigate`](https://github.com/operatorstack/yield/tree/main/examples/investigate/) |
|
|
227
|
+
| Rust | [`yieldskill`](https://github.com/operatorstack/yield/tree/main/sdk/rust/) | [`data-migration`](https://github.com/operatorstack/yield/tree/main/examples/data-migration/) |
|
|
228
228
|
|
|
229
229
|
Cursor, Codex, and Claude Code are verified integrations. Yield also includes
|
|
230
230
|
registry-backed project paths for 73 more coding agents. Those paths support
|
|
@@ -248,12 +248,12 @@ loop, multi-agent orchestrator, or security sandbox.
|
|
|
248
248
|
## Documentation and development
|
|
249
249
|
|
|
250
250
|
- [Read the public documentation](https://yield.operatorstack.systems/docs/)
|
|
251
|
-
- [What a skill workflow is](docs/skill-workflows.md)
|
|
252
|
-
- [Ten-minute TypeScript quickstart](docs/quickstart.md)
|
|
253
|
-
- [Working examples in all four languages](docs/examples.md)
|
|
254
|
-
- [Coding-agent setup](docs/agent-setup.md)
|
|
255
|
-
- [Testing workflow effects](docs/testing-fixtures.md)
|
|
256
|
-
- [Guarantees and evaluation results](evals/README.md)
|
|
251
|
+
- [What a skill workflow is](https://github.com/operatorstack/yield/blob/main/docs/skill-workflows.md)
|
|
252
|
+
- [Ten-minute TypeScript quickstart](https://github.com/operatorstack/yield/blob/main/docs/quickstart.md)
|
|
253
|
+
- [Working examples in all four languages](https://github.com/operatorstack/yield/blob/main/docs/examples.md)
|
|
254
|
+
- [Coding-agent setup](https://github.com/operatorstack/yield/blob/main/docs/agent-setup.md)
|
|
255
|
+
- [Testing workflow effects](https://github.com/operatorstack/yield/blob/main/docs/testing-fixtures.md)
|
|
256
|
+
- [Guarantees and evaluation results](https://github.com/operatorstack/yield/blob/main/evals/README.md)
|
|
257
257
|
|
|
258
258
|
Run the main checks from the repository root:
|
|
259
259
|
|
|
@@ -262,7 +262,7 @@ go test ./...
|
|
|
262
262
|
npm run test:release
|
|
263
263
|
```
|
|
264
264
|
|
|
265
|
-
The [example library](examples/library/) contains ten common workflows in all
|
|
265
|
+
The [example library](https://github.com/operatorstack/yield/tree/main/examples/library/) contains ten common workflows in all
|
|
266
266
|
four SDKs, including code review, failure investigation, CI repair, dependency
|
|
267
267
|
updates, database migration, security audit, and package release.
|
|
268
268
|
|
package/assets/yield-mark.svg
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" role="img" aria-labelledby="title">
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="96" height="96" viewBox="0 0 60 60" role="img" aria-labelledby="title">
|
|
2
2
|
<title id="title">Yield</title>
|
|
3
3
|
<defs>
|
|
4
4
|
<linearGradient id="band" x1="0" y1="0" x2="1" y2="1">
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<stop offset="1" stop-color="#277168"/>
|
|
7
7
|
</linearGradient>
|
|
8
8
|
</defs>
|
|
9
|
-
<
|
|
9
|
+
<path d="M18 1h24C53.4 1 59 6.6 59 18v24c0 11.4-5.6 17-17 17H18C6.6 59 1 53.4 1 42V18C1 6.6 6.6 1 18 1Z" fill="#fff" stroke="#e5e6e3" stroke-width=".75"/>
|
|
10
10
|
<path d="M7 20h17M36 40h17" fill="none" stroke="#0a0a0a" stroke-width="5"/>
|
|
11
11
|
<path d="M22 12h17l2 7v22H24l-2-7Z" fill="url(#band)"/>
|
|
12
12
|
<path d="m34 20-6 14" fill="none" stroke="#fbfbfb" stroke-width="4"/>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operatorstack/yield",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.34",
|
|
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.1.
|
|
54
|
-
"@operatorstack/yield-darwin-arm64": "0.1.
|
|
55
|
-
"@operatorstack/yield-linux-amd64": "0.1.
|
|
56
|
-
"@operatorstack/yield-linux-arm64": "0.1.
|
|
57
|
-
"@operatorstack/yield-windows-amd64": "0.1.
|
|
58
|
-
"@operatorstack/yield-windows-arm64": "0.1.
|
|
53
|
+
"@operatorstack/yield-darwin-amd64": "0.1.34",
|
|
54
|
+
"@operatorstack/yield-darwin-arm64": "0.1.34",
|
|
55
|
+
"@operatorstack/yield-linux-amd64": "0.1.34",
|
|
56
|
+
"@operatorstack/yield-linux-arm64": "0.1.34",
|
|
57
|
+
"@operatorstack/yield-windows-amd64": "0.1.34",
|
|
58
|
+
"@operatorstack/yield-windows-arm64": "0.1.34"
|
|
59
59
|
}
|
|
60
60
|
}
|