@operatorstack/yield 0.1.31 → 0.1.33

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 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" alt="Yield" />
4
4
  </a>
5
5
  </p>
6
6
 
@@ -14,14 +14,16 @@
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>
17
18
  <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>
18
19
  <a href="LICENSE"><img alt="MIT license" src="https://img.shields.io/npm/l/@operatorstack/yield?style=flat-square" /></a>
19
20
  </p>
20
21
 
21
22
  <p align="center">
22
23
  <a href="https://yield.operatorstack.systems/">Website</a> ·
23
- <a href="docs/README.md">Documentation</a> ·
24
+ <a href="https://yield.operatorstack.systems/docs/">Documentation</a> ·
24
25
  <a href="https://www.npmjs.com/package/@operatorstack/yield">npm</a> ·
26
+ <a href="https://pypi.org/project/yieldskill/">PyPI</a> ·
25
27
  <a href="https://github.com/operatorstack/yield">GitHub</a>
26
28
  </p>
27
29
 
@@ -98,7 +100,7 @@ Replace them with the test, publish, and registry commands for your project.
98
100
  The complete tested source is in
99
101
  [`examples/release-checklist`](examples/release-checklist/).
100
102
 
101
- ## Use Yield in four steps
103
+ ## Use Yield in five steps
102
104
 
103
105
  ### 1. Install Yield
104
106
 
@@ -148,7 +150,7 @@ npm exec -- yskill doctor skills/release --test
148
150
  This runs commands for real and supplies agent and user responses from the
149
151
  fixture. A successful test reaches `completed` without leaving a run journal.
150
152
 
151
- ### 4. Register and use the skill
153
+ ### 4. Register the skill
152
154
 
153
155
  Registration is the discovery step. This command detects installed verified
154
156
  agents and writes a small adapter for each one:
@@ -173,9 +175,25 @@ If all three are selected, Yield creates these generated files:
173
175
  ```
174
176
 
175
177
  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.
178
+ install its dependencies again.
179
+
180
+ ### 5. Run the skill
181
+
182
+ Start a new coding-agent session so it discovers the registered skill. Where
183
+ slash skills are supported, run:
184
+
185
+ ```text
186
+ /release
187
+ ```
188
+
189
+ Otherwise, ask the agent in plain language:
190
+
191
+ ```text
192
+ Use the release skill to publish this package.
193
+ ```
194
+
195
+ The agent follows the generated adapter, runs the canonical workflow in
196
+ `skills/release`, and asks for each required agent or user response.
179
197
 
180
198
  ## How Yield runs and resumes
181
199
 
@@ -231,6 +249,7 @@ loop, multi-agent orchestrator, or security sandbox.
231
249
 
232
250
  ## Documentation and development
233
251
 
252
+ - [Read the public documentation](https://yield.operatorstack.systems/docs/)
234
253
  - [What a skill workflow is](docs/skill-workflows.md)
235
254
  - [Ten-minute TypeScript quickstart](docs/quickstart.md)
236
255
  - [Working examples in all four languages](docs/examples.md)
@@ -251,4 +270,5 @@ updates, database migration, security audit, and package release.
251
270
 
252
271
  ---
253
272
 
254
- Yield is MIT licensed. This repository is its canonical source.
273
+ Yield is MIT licensed. This repository contains its canonical source and
274
+ versioned technical documentation.
@@ -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
- <rect x="1" y="1" width="58" height="58" rx="12" fill="#fbfbfb" stroke="#d7d7d1" stroke-width="2"/>
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.31",
3
+ "version": "0.1.33",
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.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"
59
59
  }
60
60
  }