agileflow 2.90.3 → 2.90.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
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [2.90.4] - 2026-01-17
11
+
12
+ ### Fixed
13
+ - Fix TUI to use simple-tui by default
14
+
10
15
  ## [2.90.2] - 2026-01-17
11
16
 
12
17
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agileflow",
3
- "version": "2.90.3",
3
+ "version": "2.90.4",
4
4
  "description": "AI-driven agile development system for Claude Code, Cursor, Windsurf, and more",
5
5
  "keywords": [
6
6
  "agile",
@@ -20,14 +20,9 @@
20
20
  * 1-9 - Switch session focus
21
21
  */
22
22
 
23
- // Check if we can use Ink (React-based TUI)
24
- let useInk = true;
25
- try {
26
- require('react');
27
- require('ink');
28
- } catch (e) {
29
- useInk = false;
30
- }
23
+ // Ink-based TUI is disabled due to React version conflicts in monorepo
24
+ // The simple-tui provides responsive layouts and works reliably
25
+ const useInk = false;
31
26
 
32
27
  /**
33
28
  * Main entry point