helloagents 2.3.5-beta.1 → 2.3.6-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 +32 -15
  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.6-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>
@@ -579,9 +579,9 @@ Beyond automatic dispatch, you can manually invoke specific roles:
579
579
 
580
580
  ~rlm spawn reviewer "review src/api/ for security issues"
581
581
  ~rlm spawn writer "generate API reference docs"
582
- ~rlm spawn reviewer,synthesizer "analyze and summarize the auth module" # parallel
582
+ ~rlm spawn reviewer,writer "analyze and document the auth module" # parallel
583
583
 
584
- Available roles: `reviewer` (code review), `synthesizer` (multi-source synthesis), `kb_keeper` (KB maintenance), `pkg_keeper` (plan package management), `writer` (documentation).
584
+ Available roles: `reviewer` (code review), `writer` (documentation), `brainstormer` (multi-proposal comparison).
585
585
 
586
586
  ### Multi-Terminal Collaboration
587
587
 
@@ -607,9 +607,9 @@ Tasks are stored in `{KB_ROOT}/tasks/` with file locking to prevent concurrent c
607
607
 
608
608
  The knowledge base syncs automatically at these points:
609
609
 
610
- - After every development stage, `kb_keeper` sub-agent syncs module docs to reflect actual code
610
+ - After every development stage, main agent syncs module docs to reflect actual code
611
611
  - 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
612
+ - On session end (Claude Code Stop Hook), KB sync flag set asynchronously
613
613
 
614
614
  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
615
 
@@ -637,7 +637,7 @@ On the first response of each session, the system silently checks for new versio
637
637
 
638
638
  - AGENTS.md: router and workflow protocol
639
639
  - SKILL.md: skill discovery metadata for CLI targets
640
- - pyproject.toml: package metadata (v2.3.5)
640
+ - pyproject.toml: package metadata (v2.3.6)
641
641
  - helloagents/cli.py: CLI entry point
642
642
  - helloagents/_common.py: shared constants and utilities
643
643
  - helloagents/core/: CLI management modules (install, uninstall, update, status, dispatcher, hooks settings)
@@ -648,8 +648,8 @@ On the first response of each session, the system silently checks for new versio
648
648
  - helloagents/rlm: role library and orchestration helpers
649
649
  - helloagents/hooks: Claude Code, Codex CLI, Gemini CLI, and Grok CLI hooks configs
650
650
  - 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
651
+ - helloagents/agents: sub-agent definitions (3 RLM roles)
652
+ - helloagents/user/commands: custom command templates
653
653
  - helloagents/assets: sound resources (5 event sounds)
654
654
  - helloagents/templates: KB and plan templates
655
655
 
@@ -669,7 +669,7 @@ A: HelloAGENTS automatically backs up non-HelloAGENTS files before replacement.
669
669
 
670
670
  **Q: What is RLM?**
671
671
 
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).
672
+ 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
673
 
674
674
  **Q: Where does project knowledge go?**
675
675
 
@@ -677,7 +677,7 @@ A: In the project-local `.helloagents/` directory. The knowledge base auto-syncs
677
677
 
678
678
  **Q: Does memory persist across sessions?**
679
679
 
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.
680
+ 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
681
 
682
682
  **Q: What are Hooks?**
683
683
 
@@ -769,7 +769,7 @@ A: An experimental Claude Code feature where multiple Claude Code instances coll
769
769
  helloagents install claude # reinstall to specific CLI target
770
770
  helloagents update # update + auto-sync all installed targets
771
771
 
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
772
+ **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
773
 
774
774
  **Verification:** Run `helloagents status` to confirm all targets show as installed
775
775
 
@@ -787,7 +787,24 @@ A: An experimental Claude Code feature where multiple Claude Code instances coll
787
787
 
788
788
  ## Version History
789
789
 
790
- ### v2.3.5 (current)
790
+ ### v2.3.6 (current)
791
+
792
+ **New Features:**
793
+ - Sub-agent orchestration overhaul: added brainstormer sub-agent for independent parallel proposal ideation during DESIGN multi-proposal comparison
794
+ - Sub-agent blocking mechanism: auto-block and fallback to main agent on sub-agent failure or timeout
795
+
796
+ **Improvements:**
797
+ - Tool/Shell constraint optimization: allow fallback to Shell when built-in tools fail (fixes Codex CLI Windows apply_patch repeated failures)
798
+ - Shell encoding constraint refinement: explicit UTF-8 no-BOM requirement, separate read/write encoding handling for PowerShell
799
+ - Added batch file write rule (merge ≥3 files into a single temp script to avoid sandbox per-command blocking)
800
+ - Removed session memory features that couldn't be fully implemented in CLI (session_summary template, SessionEnd memory sync), streamlined service layer
801
+ - Sub-agent consolidation: removed 3 redundant sub-agents (kb-keeper, pkg-keeper, synthesizer), functionality returned to main agent and RLM roles
802
+ - Sub-agent voice notification skip, task stability fixes
803
+ - Unified user config directory structure (user/memory/, user/commands/, user/sounds/)
804
+ - Uninstall script enhancements
805
+ - Visual verification gap and UI quality fixes
806
+
807
+ ### v2.3.5
791
808
 
792
809
  **New Features:**
793
810
  - 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.6-beta.1",
4
4
  "type": "module",
5
5
  "description": "HelloAGENTS - AI-native sub-agent orchestration framework for multi-CLI environments",
6
6
  "author": "HelloWind",