@operatorstack/create-yield 0.3.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 CHANGED
@@ -1,9 +1,11 @@
1
1
  # Create Yield
2
2
 
3
- Create and register the Yield workflow builder in a repository:
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 shows every proposed change. It asks for confirmation before it writes files.
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.
@@ -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, "bootstrap", "--language", "typescript", ...process.argv.slice(2)],
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.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.3.0"
33
+ "@operatorstack/yield": "0.5.0"
34
34
  }
35
35
  }