helloagents 2.3.5-beta.1 → 2.3.7-beta.1

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.
Files changed (2) hide show
  1. package/README.md +52 -23
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  **Let AI go beyond analysis — keep pushing until implementation and verification are done.**
10
10
 
11
- [![Version](https://img.shields.io/badge/version-2.3.5-orange.svg)](./pyproject.toml)
11
+ [![Version](https://img.shields.io/badge/version-2.3.7-orange.svg)](./pyproject.toml)
12
12
  [![npm](https://img.shields.io/npm/v/helloagents.svg)](https://www.npmjs.com/package/helloagents)
13
13
  [![Python](https://img.shields.io/badge/python-%3E%3D3.10-3776AB.svg)](./pyproject.toml)
14
14
  [![Commands](https://img.shields.io/badge/commands-15-6366f1.svg)](./helloagents/functions)
@@ -83,7 +83,7 @@
83
83
 
84
84
  **RLM Sub-Agent Orchestration**
85
85
 
86
- 5 specialized roles (reviewer / synthesizer / kb_keeper / pkg_keeper / writer) plus host CLI native sub-agents (explore / implement / test / design) are dispatched automatically based on task complexity. Tasks are scheduled via DAG dependency analysis with topological sort and layer-by-layer parallel dispatch. Supports cross-CLI parallel scheduling and Agent Teams collaboration.
86
+ 3 specialized roles (reviewer / writer / brainstormer) plus host CLI native sub-agents (explore / code / brainstorm) are dispatched automatically based on task complexity. Tasks are scheduled via DAG dependency analysis with topological sort and layer-by-layer parallel dispatch. Supports cross-CLI parallel scheduling and Agent Teams collaboration.
87
87
 
88
88
  **Your gain:** complex tasks are broken down and handled by the right specialist, with parallel execution when possible.
89
89
  </td>
@@ -110,9 +110,9 @@ Keyword scan, semantic analysis, and tool-output inspection catch destructive op
110
110
  <td width="50%" valign="top">
111
111
  <img src="./readme_images/05-feature-icon-compat.svg" width="48" align="left">
112
112
 
113
- **Three-Layer Memory Model**
113
+ **Two-Layer Memory Model**
114
114
 
115
- L0 user memory (global preferences), L1 project knowledge base (structured docs synced from code), and L2 session summaries (auto-persisted at stage transitions).
115
+ L0 user memory (global preferences) and L1 project knowledge base (structured docs synced from code).
116
116
 
117
117
  **Your gain:** context survives across sessions and projects.
118
118
  </td>
@@ -132,7 +132,7 @@ Voice notifications (5 event sounds), custom command extension (`.helloagents/co
132
132
 
133
133
  **Multi-CLI Support**
134
134
 
135
- One rule set works across Claude Code, Codex CLI, OpenCode, Gemini CLI, Qwen CLI, and Grok CLI. Automatic feature detection and graceful degradation ensure consistent experience regardless of CLI capabilities.
135
+ One rule set works across Claude Code, Codex CLI, OpenCode, Gemini CLI, Qwen CLI, and Grok CLI (Experimental/Community). Automatic feature detection and graceful degradation ensure consistent experience regardless of CLI capabilities.
136
136
 
137
137
  **Your gain:** switch between CLIs without relearning workflows or reconfiguring rules.
138
138
  </td>
@@ -143,12 +143,12 @@ One rule set works across Claude Code, Codex CLI, OpenCode, Gemini CLI, Qwen CLI
143
143
 
144
144
  | CLI | Native Sub-Agent Mechanism | RLM Mapping |
145
145
  |-----|---------------------------|-------------|
146
- | Claude Code | Task tool (explore / code / shell) | Direct mapping, supports Agent Teams |
146
+ | Claude Code | Agent tool (explore / code / shell) | Direct mapping, supports Agent Teams |
147
147
  | Codex CLI | spawn_agent / Collab (multi-thread) | spawn_agent parallel scheduling, CSV batch orchestration |
148
- | OpenCode | Built-in agent mode | Fallback to sequential execution |
148
+ | OpenCode | Task tool (build / plan / general / explore) | Direct sub-agent mapping |
149
149
  | Gemini CLI | Built-in tool calls | Fallback to sequential execution |
150
150
  | Qwen CLI | Built-in tool calls | Fallback to sequential execution |
151
- | Grok CLI | Built-in tool calls | Fallback to sequential execution |
151
+ | Grok CLI (Experimental) | Built-in tool calls | Fallback to sequential execution |
152
152
 
153
153
  Additionally, HelloAGENTS provides: **five-dimension routing scoring** (action need, target clarity, decision scope, impact range, EHRB risk) to automatically determine processing depth for each input; **6 CLI targets** (Claude Code / Codex CLI / OpenCode / Gemini CLI / Qwen CLI / Grok CLI) with one rule set across all; **Hooks integration** (Claude Code 11 lifecycle hooks + Codex CLI notify hook + Gemini/Grok CLI hooks) with automatic graceful degradation when unavailable.
154
154
 
@@ -158,10 +158,10 @@ Additionally, HelloAGENTS provides: **five-dimension routing scoring** (action n
158
158
  |-----|-------------------|--------------|---------------------|
159
159
  | **Claude Code** | Latest | Agent Teams, 11 lifecycle hooks, auto-memory | Requires `CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1` for teams mode |
160
160
  | **Codex CLI** | 0.110+ | spawn_agent, CSV batch, collaboration_modes | Enable sub-agents, CSV orchestration, set `project_doc_max_bytes >= 131072` |
161
- | **OpenCode** | Latest | Built-in agent mode | Sequential execution fallback |
161
+ | **OpenCode** | Latest | Task tool, custom agents, MCP | Supports primary agents (build/plan) + subagents (general/explore) |
162
162
  | **Gemini CLI** | Latest | Built-in tool calls | Sequential execution fallback |
163
163
  | **Qwen CLI** | Latest | Built-in tool calls | Sequential execution fallback |
164
- | **Grok CLI** | Latest | Built-in tool calls | Sequential execution fallback |
164
+ | **Grok CLI** (Experimental) | Latest | Built-in tool calls | Community wrapper, hooks not fully verified |
165
165
 
166
166
  <details>
167
167
  <summary>📋 Detailed CLI-specific notes (click to expand)</summary>
@@ -180,7 +180,8 @@ Additionally, HelloAGENTS provides: **five-dimension routing scoring** (action n
180
180
  - Auto-memory feature enabled by default
181
181
 
182
182
  **Other CLIs:**
183
- - OpenCode/Gemini/Qwen/Grok use sequential execution fallback
183
+ - OpenCode supports Task tool with primary agents (build/plan) and subagents (general/explore)
184
+ - Gemini/Qwen/Grok use sequential execution fallback
184
185
  - All features work with graceful degradation
185
186
  - Hooks may not be available on all platforms
186
187
 
@@ -354,7 +355,7 @@ Additionally, HelloAGENTS provides: **five-dimension routing scoring** (action n
354
355
  helloagents update
355
356
 
356
357
  > 💡 **Claude Code sub-agent orchestration tips:**
357
- > - Sub-agents (Task tool) work out of the box, no extra configuration needed
358
+ > - Sub-agents (Agent tool) work out of the box, no extra configuration needed
358
359
  > - Agent Teams collaboration mode requires environment variable: `CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1`
359
360
  > - Parallel sub-agent count is managed automatically by the model, no user-side limit config needed
360
361
 
@@ -579,9 +580,9 @@ Beyond automatic dispatch, you can manually invoke specific roles:
579
580
 
580
581
  ~rlm spawn reviewer "review src/api/ for security issues"
581
582
  ~rlm spawn writer "generate API reference docs"
582
- ~rlm spawn reviewer,synthesizer "analyze and summarize the auth module" # parallel
583
+ ~rlm spawn reviewer,writer "analyze and document the auth module" # parallel
583
584
 
584
- Available roles: `reviewer` (code review), `synthesizer` (multi-source synthesis), `kb_keeper` (KB maintenance), `pkg_keeper` (plan package management), `writer` (documentation).
585
+ Available roles: `reviewer` (code review), `writer` (documentation), `brainstormer` (multi-proposal comparison).
585
586
 
586
587
  ### Multi-Terminal Collaboration
587
588
 
@@ -607,9 +608,9 @@ Tasks are stored in `{KB_ROOT}/tasks/` with file locking to prevent concurrent c
607
608
 
608
609
  The knowledge base syncs automatically at these points:
609
610
 
610
- - After every development stage, `kb_keeper` sub-agent syncs module docs to reflect actual code
611
+ - After every development stage, main agent syncs module docs to reflect actual code
611
612
  - After every R1/R2/R3 task completion, CHANGELOG is auto-appended
612
- - On session end (Claude Code Stop Hook), KB sync + L2 session summary write triggered asynchronously
613
+ - On session end (Claude Code Stop Hook), KB sync flag set asynchronously
613
614
 
614
615
  CHANGELOG uses semantic versioning (X.Y.Z). Version source priority: user-specified → project file (package.json, pyproject.toml, etc., supporting 15+ languages/frameworks) → git tag → last CHANGELOG entry → 0.1.0. R1 fast-path changes are recorded under a "Quick Modifications" category with file:line range.
615
616
 
@@ -637,7 +638,7 @@ On the first response of each session, the system silently checks for new versio
637
638
 
638
639
  - AGENTS.md: router and workflow protocol
639
640
  - SKILL.md: skill discovery metadata for CLI targets
640
- - pyproject.toml: package metadata (v2.3.5)
641
+ - pyproject.toml: package metadata (v2.3.7)
641
642
  - helloagents/cli.py: CLI entry point
642
643
  - helloagents/_common.py: shared constants and utilities
643
644
  - helloagents/core/: CLI management modules (install, uninstall, update, status, dispatcher, hooks settings)
@@ -648,8 +649,8 @@ On the first response of each session, the system silently checks for new versio
648
649
  - helloagents/rlm: role library and orchestration helpers
649
650
  - helloagents/hooks: Claude Code, Codex CLI, Gemini CLI, and Grok CLI hooks configs
650
651
  - helloagents/scripts: automation scripts (sound notify, progress snapshot, safety guard, etc.)
651
- - helloagents/agents: sub-agent definitions (5 RLM roles)
652
- - helloagents/commands: custom command templates
652
+ - helloagents/agents: sub-agent definitions (3 RLM roles)
653
+ - helloagents/user/commands: custom command templates
653
654
  - helloagents/assets: sound resources (5 event sounds)
654
655
  - helloagents/templates: KB and plan templates
655
656
 
@@ -669,7 +670,7 @@ A: HelloAGENTS automatically backs up non-HelloAGENTS files before replacement.
669
670
 
670
671
  **Q: What is RLM?**
671
672
 
672
- A: Role Language Model — HelloAGENTS's sub-agent orchestration system. It includes 5 specialized roles (reviewer, synthesizer, kb_keeper, pkg_keeper, writer) plus native CLI sub-agents. Tasks are scheduled via DAG dependency analysis with parallel execution when possible. Learn more in [Usage Guide](#usage-guide).
673
+ A: Role Language Model — HelloAGENTS's sub-agent orchestration system. It includes 3 specialized roles (reviewer, writer, brainstormer) plus native CLI sub-agents. Tasks are scheduled via DAG dependency analysis with parallel execution when possible. Learn more in [Usage Guide](#usage-guide).
673
674
 
674
675
  **Q: Where does project knowledge go?**
675
676
 
@@ -677,7 +678,7 @@ A: In the project-local `.helloagents/` directory. The knowledge base auto-syncs
677
678
 
678
679
  **Q: Does memory persist across sessions?**
679
680
 
680
- A: Yes, through three layers: L0 user memory (global preferences in `~/.helloagents/`), L1 project KB (per-project in `.helloagents/`), and L2 session summaries (auto-saved at stage transitions). Context survives even if you close and reopen your CLI.
681
+ A: Yes, through two layers: L0 user memory (global preferences in `~/.helloagents/`) and L1 project KB (per-project in `.helloagents/`). Context survives even if you close and reopen your CLI.
681
682
 
682
683
  **Q: What are Hooks?**
683
684
 
@@ -769,7 +770,7 @@ A: An experimental Claude Code feature where multiple Claude Code instances coll
769
770
  helloagents install claude # reinstall to specific CLI target
770
771
  helloagents update # update + auto-sync all installed targets
771
772
 
772
- **Prevention:** v2.3.5 adds automatic configuration integrity check on session start — if HelloAGENTS config is missing or corrupted, a warning is displayed with recovery instructions
773
+ **Prevention:** Since v2.3.5, automatic configuration integrity check on session start — if HelloAGENTS config is missing or corrupted, a warning is displayed with recovery instructions
773
774
 
774
775
  **Verification:** Run `helloagents status` to confirm all targets show as installed
775
776
 
@@ -787,7 +788,35 @@ A: An experimental Claude Code feature where multiple Claude Code instances coll
787
788
 
788
789
  ## Version History
789
790
 
790
- ### v2.3.5 (current)
791
+ ### v2.3.7 (current)
792
+
793
+ **Bug Fixes:**
794
+ - Fixed non-coding tasks incorrectly creating knowledge base when KB_CREATE_MODE=2 (added programming task check in design.md Phase1 step 1)
795
+ - Fixed R2 standard flow redirecting to archive instead of DEVELOP after proposal selection (constrained overview type to ~exec entry only)
796
+ - Fixed non-coding tasks incorrectly creating plan packages (added programming task precondition to package.md create() interface)
797
+
798
+ **Improvements:**
799
+ - Optimized implementation plan state recovery after context compression
800
+ - Optimized overall design flow
801
+
802
+ ### v2.3.6
803
+
804
+ **New Features:**
805
+ - Sub-agent orchestration overhaul: added brainstormer sub-agent for independent parallel proposal ideation during DESIGN multi-proposal comparison
806
+ - Sub-agent blocking mechanism: auto-block and fallback to main agent on sub-agent failure or timeout
807
+
808
+ **Improvements:**
809
+ - Tool/Shell constraint optimization: allow fallback to Shell when built-in tools fail (fixes Codex CLI Windows apply_patch repeated failures)
810
+ - Shell encoding constraint refinement: explicit UTF-8 no-BOM requirement, separate read/write encoding handling for PowerShell
811
+ - Added batch file write rule (merge ≥3 files into a single temp script to avoid sandbox per-command blocking)
812
+ - Removed session memory features that couldn't be fully implemented in CLI (session_summary template, SessionEnd memory sync), streamlined service layer
813
+ - Sub-agent consolidation: removed 3 redundant sub-agents (kb-keeper, pkg-keeper, synthesizer), functionality returned to main agent and RLM roles
814
+ - Sub-agent voice notification skip, task stability fixes
815
+ - Unified user config directory structure (user/memory/, user/commands/, user/sounds/)
816
+ - Uninstall script enhancements
817
+ - Visual verification gap and UI quality fixes
818
+
819
+ ### v2.3.5
791
820
 
792
821
  **New Features:**
793
822
  - Voice notification system with 5 event sounds (complete, idle, confirm, error, warning) across Windows/macOS/Linux, with smart two-layer routing (stop_reason + G3 format icon detection)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "helloagents",
3
- "version": "2.3.5-beta.1",
3
+ "version": "2.3.7-beta.1",
4
4
  "type": "module",
5
5
  "description": "HelloAGENTS - AI-native sub-agent orchestration framework for multi-CLI environments",
6
6
  "author": "HelloWind",