kiro-spec-engine 1.46.0 → 1.46.2

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/CHANGELOG.md CHANGED
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.46.2] - 2026-02-14
11
+
12
+ ### Added
13
+ - **Spec 112 value realization program**: Added `112-00-spec-value-realization-program` with full requirements/design/tasks and reusable assets for positioning, KPI baselines, weekly review, risk policy, pilot evidence, and day-30/day-60 gate reviews.
14
+
15
+ ### Fixed
16
+ - **Windows orchestrate prompt delivery**: `AgentSpawner` now pipes bootstrap prompt via stdin (`-`) in the PowerShell path to avoid Windows argument splitting that caused `error: unexpected argument 'Spec' found`.
17
+ - **Windows orchestrate regression coverage**: Added assertions in orchestrator unit tests to verify PowerShell command composition for stdin-piped prompt mode.
18
+
19
+ ## [1.46.1] - 2026-02-13
20
+
21
+ ### Fixed
22
+ - **NPM publish metadata normalization**: Updated `package.json` `bin` entries to use `bin/kiro-spec-engine.js` (without `./`) so npm no longer strips CLI bin mappings during publish.
23
+ - **Repository metadata format**: Normalized `repository.url` to `git+https://github.com/heguangyong/kiro-spec-engine.git` to remove npm publish auto-correction warnings.
24
+
10
25
  ## [1.46.0] - 2026-02-13
11
26
 
12
27
  ### Added
package/README.md CHANGED
@@ -675,6 +675,6 @@ A deep conversation about AI development trends, Neo-Confucian philosophy, and s
675
675
 
676
676
  ---
677
677
 
678
- **Version**: 1.46.0
678
+ **Version**: 1.46.2
679
679
  **Last Updated**: 2026-02-13
680
680
 
package/README.zh.md CHANGED
@@ -538,7 +538,7 @@ kse spec bootstrap --name 01-00-my-first-feature --non-interactive
538
538
 
539
539
  ---
540
540
 
541
- **版本**:1.46.0
541
+ **版本**:1.46.2
542
542
  **最后更新**:2026-02-13
543
543
 
544
544
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  > Quick reference for all kse commands
4
4
 
5
- **Version**: 1.46.0
5
+ **Version**: 1.46.2
6
6
  **Last Updated**: 2026-02-13
7
7
 
8
8
  ---
@@ -102,6 +102,6 @@ You're now using Spec-driven development. Your AI understands the methodology an
102
102
 
103
103
  ---
104
104
 
105
- **Version**: 1.46.0
105
+ **Version**: 1.46.2
106
106
  **Last Updated**: 2026-02-13
107
107
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  ---
6
6
 
7
- **版本**: 1.46.0
7
+ **版本**: 1.46.2
8
8
  **最后更新**: 2026-02-13
9
9
  **预计时间**: 5 分钟
10
10
  **目标读者**: 初学者
@@ -722,6 +722,6 @@ kse spec bootstrap --name 02-00-your-next-feature --non-interactive
722
722
 
723
723
  ---
724
724
 
725
- **版本**: 1.46.0
725
+ **版本**: 1.46.2
726
726
  **最后更新**: 2026-02-13
727
727
 
@@ -160,9 +160,9 @@ class AgentSpawner extends EventEmitter {
160
160
  return /\s/.test(a) ? `"${a}"` : a;
161
161
  });
162
162
 
163
- // Use -Encoding UTF8 to correctly read UTF-8 files with non-ASCII characters (e.g., Chinese steering files)
164
- // Store in $prompt variable first, then pass as argument to avoid PowerShell parameter expansion issues
165
- const psScript = `$prompt = Get-Content -Raw -Encoding UTF8 '${promptTmpFile.replace(/'/g, "''")}'; & ${cmdParts.join(' ')} $prompt`;
163
+ // Use -Encoding UTF8 to correctly read UTF-8 files with non-ASCII characters (e.g., Chinese steering files).
164
+ // Pipe prompt via stdin (`-` prompt argument) to avoid Windows native argument splitting for long/multi-line prompts.
165
+ const psScript = `$prompt = Get-Content -Raw -Encoding UTF8 '${promptTmpFile.replace(/'/g, "''")}'; $prompt | & ${cmdParts.join(' ')} -`;
166
166
 
167
167
  spawnCommand = 'powershell.exe';
168
168
  spawnArgs = ['-NoProfile', '-Command', psScript];
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "kiro-spec-engine",
3
- "version": "1.46.0",
3
+ "version": "1.46.2",
4
4
  "description": "kiro-spec-engine (kse) - A CLI tool and npm package for spec-driven development with AI coding assistants. NOT the Kiro IDE desktop application.",
5
5
  "main": "index.js",
6
6
  "bin": {
7
- "kiro-spec-engine": "./bin/kiro-spec-engine.js",
8
- "kse": "./bin/kiro-spec-engine.js"
7
+ "kiro-spec-engine": "bin/kiro-spec-engine.js",
8
+ "kse": "bin/kiro-spec-engine.js"
9
9
  },
10
10
  "files": [
11
11
  "bin/",
@@ -56,7 +56,7 @@
56
56
  "license": "MIT",
57
57
  "repository": {
58
58
  "type": "git",
59
- "url": "https://github.com/heguangyong/kiro-spec-engine.git"
59
+ "url": "git+https://github.com/heguangyong/kiro-spec-engine.git"
60
60
  },
61
61
  "bugs": {
62
62
  "url": "https://github.com/heguangyong/kiro-spec-engine/issues"