@operatorstack/yield 0.0.0-canary.20260807113910.6cdf03f5769b → 0.1.30
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 +2 -11
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
# Yield
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
<a href="https://www.npmjs.com/package/@operatorstack/yield"><img alt="npm" src="https://img.shields.io/npm/v/@operatorstack/yield?style=flat-square" /></a>
|
|
5
|
-
<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>
|
|
6
|
-
</p>
|
|
7
|
-
|
|
8
|
-
Yield runs portable, resumable workflows for coding agents.
|
|
3
|
+
Yield is an open-source execution runtime for programmable Agent Skill workflows.
|
|
9
4
|
|
|
10
5
|
**Write one skill workflow. Run it from your coding agents.**
|
|
11
6
|
|
|
@@ -37,7 +32,7 @@ repository. Generated adapters never use a global `yskill` from `PATH`.
|
|
|
37
32
|
|
|
38
33
|
```bash
|
|
39
34
|
# TypeScript (public npm)
|
|
40
|
-
npm install --save-exact @operatorstack/yield@0.1.
|
|
35
|
+
npm install --save-exact @operatorstack/yield@0.1.29
|
|
41
36
|
npm exec -- yskill --version
|
|
42
37
|
|
|
43
38
|
# Python, after creating and activating .venv
|
|
@@ -56,10 +51,6 @@ cargo install yieldskill@0.1.29 --root .yield \
|
|
|
56
51
|
.yield/bin/yskill --version
|
|
57
52
|
```
|
|
58
53
|
|
|
59
|
-
[Public npm releases](https://www.npmjs.com/package/@operatorstack/yield)
|
|
60
|
-
use trusted publishing. The SDK package and all six runtime packages include
|
|
61
|
-
SLSA v1 provenance.
|
|
62
|
-
|
|
63
54
|
Yield creates `.yield/.gitignore` when it registers a Go or Rust workflow, so
|
|
64
55
|
the local runtime and run state stay out of Git.
|
|
65
56
|
On Windows, run the local binary as `.\.yield\bin\yskill.exe`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operatorstack/yield",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.30",
|
|
4
4
|
"description": "Yield skill-program SDK for TypeScript: turn SKILL.md workflows into resumable programs.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -49,11 +49,11 @@
|
|
|
49
49
|
"registry": "https://registry.npmjs.org/"
|
|
50
50
|
},
|
|
51
51
|
"optionalDependencies": {
|
|
52
|
-
"@operatorstack/yield-darwin-amd64": "0.
|
|
53
|
-
"@operatorstack/yield-darwin-arm64": "0.
|
|
54
|
-
"@operatorstack/yield-linux-amd64": "0.
|
|
55
|
-
"@operatorstack/yield-linux-arm64": "0.
|
|
56
|
-
"@operatorstack/yield-windows-amd64": "0.
|
|
57
|
-
"@operatorstack/yield-windows-arm64": "0.
|
|
52
|
+
"@operatorstack/yield-darwin-amd64": "0.1.30",
|
|
53
|
+
"@operatorstack/yield-darwin-arm64": "0.1.30",
|
|
54
|
+
"@operatorstack/yield-linux-amd64": "0.1.30",
|
|
55
|
+
"@operatorstack/yield-linux-arm64": "0.1.30",
|
|
56
|
+
"@operatorstack/yield-windows-amd64": "0.1.30",
|
|
57
|
+
"@operatorstack/yield-windows-arm64": "0.1.30"
|
|
58
58
|
}
|
|
59
59
|
}
|