@operatorstack/yield 0.1.31 → 0.1.32

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 +26 -8
  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="assets/yield-mark.svg" width="96" height="96" alt="Yield" />
3
+ <img src="https://raw.githubusercontent.com/operatorstack/yield/main/assets/yield-mark.svg" width="96" height="96" alt="Yield" />
4
4
  </a>
5
5
  </p>
6
6
 
@@ -20,7 +20,7 @@
20
20
 
21
21
  <p align="center">
22
22
  <a href="https://yield.operatorstack.systems/">Website</a> ·
23
- <a href="docs/README.md">Documentation</a> ·
23
+ <a href="https://yield.operatorstack.systems/docs/">Documentation</a> ·
24
24
  <a href="https://www.npmjs.com/package/@operatorstack/yield">npm</a> ·
25
25
  <a href="https://github.com/operatorstack/yield">GitHub</a>
26
26
  </p>
@@ -98,7 +98,7 @@ Replace them with the test, publish, and registry commands for your project.
98
98
  The complete tested source is in
99
99
  [`examples/release-checklist`](examples/release-checklist/).
100
100
 
101
- ## Use Yield in four steps
101
+ ## Use Yield in five steps
102
102
 
103
103
  ### 1. Install Yield
104
104
 
@@ -148,7 +148,7 @@ npm exec -- yskill doctor skills/release --test
148
148
  This runs commands for real and supplies agent and user responses from the
149
149
  fixture. A successful test reaches `completed` without leaving a run journal.
150
150
 
151
- ### 4. Register and use the skill
151
+ ### 4. Register the skill
152
152
 
153
153
  Registration is the discovery step. This command detects installed verified
154
154
  agents and writes a small adapter for each one:
@@ -173,9 +173,25 @@ If all three are selected, Yield creates these generated files:
173
173
  ```
174
174
 
175
175
  The adapters point back to `skills/release`. They do not copy the workflow or
176
- install its dependencies again. Start a new agent session after registration,
177
- then invoke `/release` where slash skills are supported or ask the agent to use
178
- the release skill.
176
+ install its dependencies again.
177
+
178
+ ### 5. Run the skill
179
+
180
+ Start a new coding-agent session so it discovers the registered skill. Where
181
+ slash skills are supported, run:
182
+
183
+ ```text
184
+ /release
185
+ ```
186
+
187
+ Otherwise, ask the agent in plain language:
188
+
189
+ ```text
190
+ Use the release skill to publish this package.
191
+ ```
192
+
193
+ The agent follows the generated adapter, runs the canonical workflow in
194
+ `skills/release`, and asks for each required agent or user response.
179
195
 
180
196
  ## How Yield runs and resumes
181
197
 
@@ -231,6 +247,7 @@ loop, multi-agent orchestrator, or security sandbox.
231
247
 
232
248
  ## Documentation and development
233
249
 
250
+ - [Read the public documentation](https://yield.operatorstack.systems/docs/)
234
251
  - [What a skill workflow is](docs/skill-workflows.md)
235
252
  - [Ten-minute TypeScript quickstart](docs/quickstart.md)
236
253
  - [Working examples in all four languages](docs/examples.md)
@@ -251,4 +268,5 @@ updates, database migration, security audit, and package release.
251
268
 
252
269
  ---
253
270
 
254
- Yield is MIT licensed. This repository is its canonical source.
271
+ Yield is MIT licensed. This repository contains its canonical source and
272
+ versioned technical documentation.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@operatorstack/yield",
3
- "version": "0.1.31",
3
+ "version": "0.1.32",
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.31",
54
- "@operatorstack/yield-darwin-arm64": "0.1.31",
55
- "@operatorstack/yield-linux-amd64": "0.1.31",
56
- "@operatorstack/yield-linux-arm64": "0.1.31",
57
- "@operatorstack/yield-windows-amd64": "0.1.31",
58
- "@operatorstack/yield-windows-arm64": "0.1.31"
53
+ "@operatorstack/yield-darwin-amd64": "0.1.32",
54
+ "@operatorstack/yield-darwin-arm64": "0.1.32",
55
+ "@operatorstack/yield-linux-amd64": "0.1.32",
56
+ "@operatorstack/yield-linux-arm64": "0.1.32",
57
+ "@operatorstack/yield-windows-amd64": "0.1.32",
58
+ "@operatorstack/yield-windows-arm64": "0.1.32"
59
59
  }
60
60
  }