@operatorstack/create-yield 0.4.0 → 0.5.0
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 +4 -2
- package/bin/create-yield.mjs +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
# Create Yield
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Compatibility initializer for the optional Yield developer helper:
|
|
4
4
|
|
|
5
5
|
```sh
|
|
6
6
|
npm create @operatorstack/yield@latest
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
-
The command
|
|
9
|
+
The command is an alias for `yskill helper install`. It shows every proposed
|
|
10
|
+
change and asks for confirmation before it writes files. Installing the Yield
|
|
11
|
+
SDK alone does not run this initializer.
|
package/bin/create-yield.mjs
CHANGED
|
@@ -9,7 +9,7 @@ const sdkEntry = require.resolve("@operatorstack/yield")
|
|
|
9
9
|
const cli = resolve(dirname(sdkEntry), "../bin/yskill.mjs")
|
|
10
10
|
const result = spawnSync(
|
|
11
11
|
process.execPath,
|
|
12
|
-
[cli, "
|
|
12
|
+
[cli, "helper", "install", "--language", "typescript", ...process.argv.slice(2)],
|
|
13
13
|
{
|
|
14
14
|
stdio: "inherit",
|
|
15
15
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operatorstack/create-yield",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Create a tested Yield skill workflow for your coding agent.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -30,6 +30,6 @@
|
|
|
30
30
|
"registry": "https://registry.npmjs.org/"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@operatorstack/yield": "0.
|
|
33
|
+
"@operatorstack/yield": "0.5.0"
|
|
34
34
|
}
|
|
35
35
|
}
|