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 +15 -0
- package/README.md +1 -1
- package/README.zh.md +1 -1
- package/docs/command-reference.md +1 -1
- package/docs/quick-start.md +1 -1
- package/docs/zh/quick-start.md +2 -2
- package/lib/orchestrator/agent-spawner.js +3 -3
- package/package.json +4 -4
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
package/README.zh.md
CHANGED
package/docs/quick-start.md
CHANGED
package/docs/zh/quick-start.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
-
**版本**: 1.46.
|
|
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.
|
|
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
|
-
//
|
|
165
|
-
const psScript = `$prompt = Get-Content -Raw -Encoding UTF8 '${promptTmpFile.replace(/'/g, "''")}'; & ${cmdParts.join(' ')}
|
|
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.
|
|
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": "
|
|
8
|
-
"kse": "
|
|
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"
|