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.
- package/README.md +32 -15
- 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
|
-
[](./pyproject.toml)
|
|
12
12
|
[](https://www.npmjs.com/package/helloagents)
|
|
13
13
|
[](./pyproject.toml)
|
|
14
14
|
[](./helloagents/functions)
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
|
|
84
84
|
**RLM Sub-Agent Orchestration**
|
|
85
85
|
|
|
86
|
-
|
|
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
|
-
**
|
|
113
|
+
**Two-Layer Memory Model**
|
|
114
114
|
|
|
115
|
-
L0 user memory (global preferences)
|
|
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,
|
|
582
|
+
~rlm spawn reviewer,writer "analyze and document the auth module" # parallel
|
|
583
583
|
|
|
584
|
-
Available roles: `reviewer` (code review), `
|
|
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,
|
|
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
|
|
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.
|
|
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 (
|
|
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
|
|
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
|
|
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
|
|
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.
|
|
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)
|