@operatorstack/yield 0.1.33 → 0.1.35

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.
Files changed (2) hide show
  1. package/README.md +15 -17
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -14,16 +14,14 @@
14
14
 
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
- <a href="https://pypi.org/project/yieldskill/"><img alt="PyPI version" src="https://img.shields.io/pypi/v/yieldskill?style=flat-square" /></a>
18
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&amp;style=flat-square&amp;label=build" /></a>
19
- <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>
20
19
  </p>
21
20
 
22
21
  <p align="center">
23
22
  <a href="https://yield.operatorstack.systems/">Website</a> ·
24
23
  <a href="https://yield.operatorstack.systems/docs/">Documentation</a> ·
25
24
  <a href="https://www.npmjs.com/package/@operatorstack/yield">npm</a> ·
26
- <a href="https://pypi.org/project/yieldskill/">PyPI</a> ·
27
25
  <a href="https://github.com/operatorstack/yield">GitHub</a>
28
26
  </p>
29
27
 
@@ -98,7 +96,7 @@ defineSkill((ctx) => {
98
96
  The example uses harmless commands so its fixture can run in any checkout.
99
97
  Replace them with the test, publish, and registry commands for your project.
100
98
  The complete tested source is in
101
- [`examples/release-checklist`](examples/release-checklist/).
99
+ [`examples/release-checklist`](https://github.com/operatorstack/yield/tree/main/examples/release-checklist/).
102
100
 
103
101
  ## Use Yield in five steps
104
102
 
@@ -213,8 +211,8 @@ forking. Every side effect crosses one of these primitives:
213
211
  | `require` | Bind a required claim to recorded evidence. |
214
212
  | `blocked` / `refused` | Stop honestly when work cannot or must not continue. |
215
213
 
216
- See the [primitive guides](docs/primitives/README.md) and
217
- [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.
218
216
 
219
217
  ## Languages and coding agents
220
218
 
@@ -223,10 +221,10 @@ the same program in every language and compares observable behavior.
223
221
 
224
222
  | Language | SDK | Example |
225
223
  |---|---|---|
226
- | TypeScript | [`@operatorstack/yield`](sdk/typescript/) | [`release-checklist`](examples/release-checklist/) |
227
- | Python | [`yieldskill`](sdk/python/) | [`env-doctor`](examples/env-doctor/) |
228
- | Go | [`sdk/yield`](sdk/yield/) | [`investigate`](examples/investigate/) |
229
- | 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/) |
230
228
 
231
229
  Cursor, Codex, and Claude Code are verified integrations. Yield also includes
232
230
  registry-backed project paths for 73 more coding agents. Those paths support
@@ -250,12 +248,12 @@ loop, multi-agent orchestrator, or security sandbox.
250
248
  ## Documentation and development
251
249
 
252
250
  - [Read the public documentation](https://yield.operatorstack.systems/docs/)
253
- - [What a skill workflow is](docs/skill-workflows.md)
254
- - [Ten-minute TypeScript quickstart](docs/quickstart.md)
255
- - [Working examples in all four languages](docs/examples.md)
256
- - [Coding-agent setup](docs/agent-setup.md)
257
- - [Testing workflow effects](docs/testing-fixtures.md)
258
- - [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)
259
257
 
260
258
  Run the main checks from the repository root:
261
259
 
@@ -264,7 +262,7 @@ go test ./...
264
262
  npm run test:release
265
263
  ```
266
264
 
267
- 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
268
266
  four SDKs, including code review, failure investigation, CI repair, dependency
269
267
  updates, database migration, security audit, and package release.
270
268
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@operatorstack/yield",
3
- "version": "0.1.33",
3
+ "version": "0.1.35",
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.33",
54
- "@operatorstack/yield-darwin-arm64": "0.1.33",
55
- "@operatorstack/yield-linux-amd64": "0.1.33",
56
- "@operatorstack/yield-linux-arm64": "0.1.33",
57
- "@operatorstack/yield-windows-amd64": "0.1.33",
58
- "@operatorstack/yield-windows-arm64": "0.1.33"
53
+ "@operatorstack/yield-darwin-amd64": "0.1.35",
54
+ "@operatorstack/yield-darwin-arm64": "0.1.35",
55
+ "@operatorstack/yield-linux-amd64": "0.1.35",
56
+ "@operatorstack/yield-linux-arm64": "0.1.35",
57
+ "@operatorstack/yield-windows-amd64": "0.1.35",
58
+ "@operatorstack/yield-windows-arm64": "0.1.35"
59
59
  }
60
60
  }