kiro-spec-engine 1.4.1 → 1.4.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,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.4.2] - 2026-01-23
11
+
12
+ ### Fixed - Test Suite and Documentation 🔧
13
+
14
+ **Test Fixes**:
15
+ - Fixed syntax error in `action-executor.test.js` caused by duplicate code
16
+ - Removed duplicate `expect` and timeout lines that caused Jest parse error
17
+ - All 289 tests now pass successfully in CI environment
18
+
19
+ **Documentation Improvements**:
20
+ - Corrected Integration Workflow diagram in README.md and README.zh.md
21
+ - Changed flow from "User → kse → User → AI Tool" to "User ↔ AI Tool ↔ kse"
22
+ - Added key insight: "You stay in your AI tool. The AI reads the Spec and generates code."
23
+ - Both English and Chinese versions updated
24
+
25
+ ### Why This Matters
26
+
27
+ This patch ensures CI/CD pipeline works correctly and reinforces the correct mental model: users stay in their AI tool, which calls kse behind the scenes.
28
+
10
29
  ## [1.4.1] - 2026-01-23
11
30
 
12
31
  ### Fixed - Documentation Clarity 🎯
package/README.md CHANGED
@@ -204,16 +204,18 @@ kse works with any AI coding assistant. Choose your tool for specific guidance:
204
204
  ```mermaid
205
205
  sequenceDiagram
206
206
  participant You
207
- participant kse
208
207
  participant AI Tool
209
- You->>kse: Create Spec (requirements, design, tasks)
210
- You->>kse: Export context
211
- kse->>You: context-export.md
212
- You->>AI Tool: Provide context
213
- AI Tool->>You: Generate code based on Spec
214
- You->>kse: Update task status
208
+ participant kse
209
+ You->>AI Tool: "I have a Spec for user-login, implement task 1.1"
210
+ AI Tool->>kse: kse context export user-login
211
+ kse->>AI Tool: Spec content (requirements, design, tasks)
212
+ AI Tool->>AI Tool: Generate code following Spec
213
+ AI Tool->>You: Here's the implementation
214
+ AI Tool->>kse: Update tasks.md (mark task complete)
215
215
  ```
216
216
 
217
+ **Key insight:** You stay in your AI tool. The AI reads the Spec and generates code that matches your design.
218
+
217
219
  ---
218
220
 
219
221
  ## Documentation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kiro-spec-engine",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "Kiro Spec Engine - A spec-driven development engine with steering rules and quality enhancement powered by Ultrawork spirit",
5
5
  "main": "index.js",
6
6
  "bin": {