@agentic15.com/agentic15-claude-zen 3.0.2 → 3.0.4

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
@@ -1,26 +1,43 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
-
8
- Copyright 2024-2025 agentic15.com
9
-
10
- ## [3.0.2] - 2025-12-25
11
-
12
- ### Summary
13
- Publishing update - no code changes from v3.0.1.
14
-
15
- This release publishes the interactive requirements mode to npm registry.
16
-
17
- ## [3.0.1] - 2025-12-25
18
-
19
- ### Summary
20
- Patch release to publish the interactive requirements mode feature to npm.
21
-
22
- This release makes v3.0.0 officially available on npm with the interactive mode feature fully documented and tested.
23
-
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ Copyright 2024-2025 agentic15.com
9
+
10
+ ## [3.0.4] - 2025-12-25
11
+
12
+ ### Summary
13
+ Package configuration cleanup - removed WORKFLOWS.md from files array as it's available on GitHub.
14
+
15
+ ### Changed
16
+ - Removed WORKFLOWS.md from package.json files array (documentation available at GitHub repo)
17
+ - No functional changes
18
+
19
+ ## [3.0.3] - 2025-12-25
20
+
21
+ ### Summary
22
+ Critical bug fix for interactive requirements mode.
23
+
24
+ ### Fixed
25
+ - Fixed interactive mode not detecting Ctrl+D/Ctrl+Z - removed `terminal: false` from readline configuration to properly detect EOF signals in terminal environments
26
+
27
+ ## [3.0.2] - 2025-12-25
28
+
29
+ ### Summary
30
+ Publishing update - no code changes from v3.0.1.
31
+
32
+ This release publishes the interactive requirements mode to npm registry.
33
+
34
+ ## [3.0.1] - 2025-12-25
35
+
36
+ ### Summary
37
+ Patch release to publish the interactive requirements mode feature to npm.
38
+
39
+ This release makes v3.0.0 officially available on npm with the interactive mode feature fully documented and tested.
40
+
24
41
  ## [3.0.0] - 2025-12-25
25
42
 
26
43
  ### 🎉 MAJOR RELEASE - Complete CLI Architecture Transformation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentic15.com/agentic15-claude-zen",
3
- "version": "3.0.2",
3
+ "version": "3.0.4",
4
4
  "description": "Structured AI-assisted development framework for Claude Code with enforced quality standards",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -45,7 +45,6 @@
45
45
  "templates/",
46
46
  "templates/.gitignore",
47
47
  "README.md",
48
- "WORKFLOWS.md",
49
48
  "CHANGELOG.md",
50
49
  "LICENSE"
51
50
  ],
@@ -59,8 +59,7 @@ export class PlanCommand {
59
59
  return new Promise((resolve) => {
60
60
  const rl = readline.createInterface({
61
61
  input: process.stdin,
62
- output: process.stdout,
63
- terminal: false
62
+ output: process.stdout
64
63
  });
65
64
 
66
65
  let lines = [];