helloagents 2.2.9 → 2.2.12

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 +35 -14
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  **A multi-CLI workflow system that keeps going until tasks are implemented and verified.**
10
10
 
11
- [![Version](https://img.shields.io/badge/version-2.2.9-orange.svg)](./pyproject.toml)
11
+ [![Version](https://img.shields.io/badge/version-2.2.12-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/workflow_commands-15-6366f1.svg)](./helloagents/functions)
@@ -65,8 +65,8 @@ Compared with legacy multi-bundle releases, the v2.x line is now package-first w
65
65
  | Distribution | Multiple bundle folders per CLI | One Python package + installer CLI |
66
66
  | Installation | Manual copy of config and skill folders | pip/uv install + `helloagents` interactive menu |
67
67
  | Routing | Three-layer (Context → Tools → Intent) | Five-dimension scoring (R0–R3) |
68
- | Workflow stages | 4 stages (Evaluate, Analyze, Design, Develop) | 4 stages + R1 fast flow, with sub-agent dispatch |
69
- | Agent system | None | RLM with 12 specialized roles and session isolation |
68
+ | Workflow stages | 4 stages (Evaluate, Analyze, Design, Develop) | 3 stages (Evaluate, Design, Develop) + R1 fast flow, with sub-agent dispatch |
69
+ | Agent system | None | RLM with 5 specialized roles + native sub-agents and session isolation |
70
70
  | Memory | No persistence | Three-layer: L0 user, L1 project KB, L2 session |
71
71
  | Safety | Basic EHRB | Three-layer EHRB (keyword + semantic + tool output) |
72
72
  | Hooks | None | Auto-deploy lifecycle hooks (Claude Code 9 events + Codex CLI notify) |
@@ -84,7 +84,7 @@ Compared with legacy multi-bundle releases, the v2.x line is now package-first w
84
84
 
85
85
  **RLM sub-agent orchestration**
86
86
 
87
- 12 specialized roles (explorer, analyzer, designer, implementer, reviewer, tester, etc.) are dispatched automatically based on task complexity, with session isolation per CLI instance. Supports cross-CLI parallel scheduling and Agent Teams collaboration.
87
+ 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, with session isolation per CLI instance. Supports cross-CLI parallel scheduling and Agent Teams collaboration.
88
88
 
89
89
  **Your gain:** complex tasks are broken down and handled by the right specialist, with parallel execution when possible.
90
90
  </td>
@@ -124,8 +124,8 @@ L0 user memory (global preferences), L1 project knowledge base (structured docs
124
124
 
125
125
  - 6 CLI targets from helloagents/cli.py
126
126
  - 15 workflow commands from helloagents/functions
127
- - 12 RLM roles from helloagents/rlm/roles
128
- - 4 stage definitions from helloagents/stages
127
+ - 5 RLM roles from helloagents/rlm/roles
128
+ - 2 stage definitions from helloagents/stages
129
129
  - 5 core services from helloagents/services
130
130
  - 4 rule modules from helloagents/rules
131
131
  - 9 helper scripts from helloagents/scripts
@@ -193,6 +193,8 @@ L0 user memory (global preferences), L1 project knowledge base (structured docs
193
193
 
194
194
  > After installing UV, restart your terminal to make the `uv` command available.
195
195
 
196
+ > ⚠️ Windows PowerShell 5.1 does not support `&&`. Please run commands separately, or upgrade to [PowerShell 7+](https://learn.microsoft.com/powershell/scripting/install/installing-powershell-on-windows).
197
+
196
198
  **Install and select targets (one command):**
197
199
 
198
200
  uv tool install --from git+https://github.com/hellowind777/helloagents helloagents && helloagents
@@ -263,6 +265,13 @@ L0 user memory (global preferences), L1 project knowledge base (structured docs
263
265
 
264
266
  helloagents update
265
267
 
268
+ > ⚠️ **Codex CLI config.toml compatibility notes:** The following settings may affect HelloAGENTS:
269
+ > - `[features]` `steer = true` — changes input submission behavior, may interfere with workflow interaction
270
+ > - `[features]` `child_agents_md = true` — experimental, injects extra instructions that may conflict with HelloAGENTS
271
+ > - `project_doc_max_bytes` too low — default 32KB, AGENTS.md will be truncated (auto-set to 98304 during install)
272
+ > - `agent_max_depth = 1` — limits sub-agent nesting depth, recommend keeping default or ≥2
273
+ > - `agent_max_threads` too low — default 6, lower values limit parallel sub-agent scheduling
274
+
266
275
  ### Claude Code example
267
276
 
268
277
  **First install:**
@@ -311,8 +320,8 @@ To install from the `beta` branch, append `@beta` to the repository URL:
311
320
 
312
321
  1. Install the package (script/pip/uv) and run `helloagents` to launch an interactive menu for selecting target CLIs (or specify directly with `helloagents install <target>`). Hooks and SKILL.md are auto-deployed during installation.
313
322
  2. In AI chat, every input is scored on five dimensions and routed to R0–R3.
314
- 3. R2/R3 tasks enter the stage chain: EVALUATE → ANALYZE → DESIGN → DEVELOP. R1 fast flow handles single-point operations directly.
315
- 4. RLM dispatches specialized sub-agents (e.g. explorer, designer, implementer) based on task complexity. Supports parallel scheduling and Agent Teams for complex tasks.
323
+ 3. R2/R3 tasks enter the stage chain: EVALUATE → DESIGN → DEVELOP. R1 fast flow handles single-point operations directly.
324
+ 4. RLM dispatches native sub-agents and specialized roles based on task complexity. Supports parallel scheduling and Agent Teams for complex tasks.
316
325
  5. EHRB scans each step for destructive operations; risky actions require explicit user confirmation. Hooks provide additional pre-tool safety checks when available.
317
326
  6. Three-layer memory (user / project KB / session) preserves context across sessions.
318
327
  7. Stage chain completes with verified output and optional knowledge base sync.
@@ -321,10 +330,10 @@ To install from the `beta` branch, append `@beta` to the repository URL:
321
330
 
322
331
  - AGENTS.md: router and workflow protocol
323
332
  - SKILL.md: skill discovery metadata for CLI targets
324
- - pyproject.toml: package metadata (v2.2.9)
333
+ - pyproject.toml: package metadata (v2.2.12)
325
334
  - helloagents/cli.py: installer entry
326
335
  - helloagents/functions: workflow commands
327
- - helloagents/stages: analyze, design, develop
336
+ - helloagents/stages: design, develop
328
337
  - helloagents/services: knowledge, package, memory and support services
329
338
  - helloagents/rules: state, cache, tools, scaling
330
339
  - helloagents/rlm: role library and orchestration helpers
@@ -362,7 +371,7 @@ These commands run inside AI chat, not your system shell.
362
371
  A: Non-HelloAGENTS files are backed up before replacement.
363
372
 
364
373
  - Q: What is RLM?
365
- A: Role Language Model — a sub-agent orchestration system with 12 specialized roles dispatched based on task complexity.
374
+ A: Role Language Model — a sub-agent orchestration system with 5 specialized roles + native CLI sub-agents dispatched based on task complexity.
366
375
 
367
376
  - Q: Where does project knowledge go?
368
377
  A: In the project-local `.helloagents/` directory, auto-synced when code changes.
@@ -386,7 +395,19 @@ These commands run inside AI chat, not your system shell.
386
395
 
387
396
  ## Version History
388
397
 
389
- ### v2.2.9 (current)
398
+ ### v2.2.12 (current)
399
+
400
+ - Comprehensive parallel sub-agent orchestration across all flows and commands, extend G10 coverage, eliminate hardcoded agent counts, add universal parallel information gathering principle
401
+
402
+ ### v2.2.11
403
+
404
+ - Three-stage gate model: merge analysis into design stage (EVALUATE → DESIGN → DEVELOP), optimize stop points and fix sub-agent orchestration consistency
405
+
406
+ ### v2.2.10
407
+
408
+ - Streamline sub-agent roles and integrate native multi-agent orchestration for all supported CLIs
409
+
410
+ ### v2.2.9
390
411
 
391
412
  - Comprehensive Windows file-locking fix: preemptive unlock and rename-aside fallback for install/update/uninstall/clean
392
413
 
@@ -402,13 +423,13 @@ These commands run inside AI chat, not your system shell.
402
423
  - **Agent Teams protocol:** G10 adds Claude Code multi-role collaboration protocol
403
424
  - **SKILL integration:** auto-deploy SKILL.md to skills discovery directory for all CLI targets
404
425
  - **RLM command expansion:** add ~rlm agents/resume/team subcommands with parallel multi-role dispatch
405
- - **Stage parallel optimization:** parallel rules for analyze/develop stages, serial annotation for design
426
+ - **Stage parallel optimization:** parallel rules for develop stage, serial annotation for design
406
427
  - **Memory v2 bridge:** add Codex Memory v2 bridge protocol
407
428
  - **Script modularization:** extract config_helpers.py module
408
429
 
409
430
  ### v2.2.5
410
431
 
411
- - **RLM sub-agent system:** 12 specialized roles with automatic dispatch and session isolation
432
+ - **RLM sub-agent system:** 5 specialized roles + native sub-agents with automatic dispatch and session isolation
412
433
  - **Five-dimension routing (R0–R3):** replaces legacy three-layer routing
413
434
  - **Four-stage workflow + R1 fast flow:** stage chain (Evaluate → Analyze → Design → Develop) with R1 fast flow for single-point operations
414
435
  - **Three-layer memory:** L0 user preferences, L1 project knowledge base, L2 session summaries
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "helloagents",
3
- "version": "2.2.9",
3
+ "version": "2.2.12",
4
4
  "type": "module",
5
5
  "description": "HelloAGENTS - AI-native sub-agent orchestration framework for multi-CLI environments",
6
6
  "author": "HelloWind",