helloagents 2.2.9 → 2.2.15
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 +63 -14
- 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
|
-
[](./pyproject.toml)
|
|
12
12
|
[](https://www.npmjs.com/package/helloagents)
|
|
13
13
|
[](./pyproject.toml)
|
|
14
14
|
[](./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) |
|
|
69
|
-
| Agent system | None | RLM with
|
|
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
|
-
|
|
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. Tasks are scheduled via DAG dependency analysis with layer-by-layer parallel dispatch. 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
|
-
-
|
|
128
|
-
-
|
|
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,15 @@ 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 131072 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
|
+
> - `[features]` `multi_agent = true` — must be enabled for sub-agent orchestration to work
|
|
275
|
+
> - Collab sub-agent scheduling is experimental, requires Codex CLI feature gate to be enabled
|
|
276
|
+
|
|
266
277
|
### Claude Code example
|
|
267
278
|
|
|
268
279
|
**First install:**
|
|
@@ -287,6 +298,11 @@ L0 user memory (global preferences), L1 project knowledge base (structured docs
|
|
|
287
298
|
|
|
288
299
|
helloagents update
|
|
289
300
|
|
|
301
|
+
> 💡 **Claude Code sub-agent orchestration tips:**
|
|
302
|
+
> - Sub-agents (Task tool) work out of the box, no extra configuration needed
|
|
303
|
+
> - Agent Teams collaboration mode requires environment variable: `CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1`
|
|
304
|
+
> - Parallel sub-agent count is managed automatically by the model, no user-side limit config needed
|
|
305
|
+
|
|
290
306
|
### Beta branch
|
|
291
307
|
|
|
292
308
|
To install from the `beta` branch, append `@beta` to the repository URL:
|
|
@@ -311,8 +327,8 @@ To install from the `beta` branch, append `@beta` to the repository URL:
|
|
|
311
327
|
|
|
312
328
|
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
329
|
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 →
|
|
315
|
-
4. RLM dispatches
|
|
330
|
+
3. R2/R3 tasks enter the stage chain: EVALUATE → DESIGN → DEVELOP. R1 fast flow handles single-point operations directly.
|
|
331
|
+
4. RLM dispatches native sub-agents and specialized roles based on task complexity. Tasks with dependencies are scheduled via DAG topological sort with layer-by-layer parallel dispatch.
|
|
316
332
|
5. EHRB scans each step for destructive operations; risky actions require explicit user confirmation. Hooks provide additional pre-tool safety checks when available.
|
|
317
333
|
6. Three-layer memory (user / project KB / session) preserves context across sessions.
|
|
318
334
|
7. Stage chain completes with verified output and optional knowledge base sync.
|
|
@@ -321,10 +337,10 @@ To install from the `beta` branch, append `@beta` to the repository URL:
|
|
|
321
337
|
|
|
322
338
|
- AGENTS.md: router and workflow protocol
|
|
323
339
|
- SKILL.md: skill discovery metadata for CLI targets
|
|
324
|
-
- pyproject.toml: package metadata (v2.2.
|
|
340
|
+
- pyproject.toml: package metadata (v2.2.15)
|
|
325
341
|
- helloagents/cli.py: installer entry
|
|
326
342
|
- helloagents/functions: workflow commands
|
|
327
|
-
- helloagents/stages:
|
|
343
|
+
- helloagents/stages: design, develop
|
|
328
344
|
- helloagents/services: knowledge, package, memory and support services
|
|
329
345
|
- helloagents/rules: state, cache, tools, scaling
|
|
330
346
|
- helloagents/rlm: role library and orchestration helpers
|
|
@@ -362,7 +378,7 @@ These commands run inside AI chat, not your system shell.
|
|
|
362
378
|
A: Non-HelloAGENTS files are backed up before replacement.
|
|
363
379
|
|
|
364
380
|
- Q: What is RLM?
|
|
365
|
-
A: Role Language Model — a sub-agent orchestration system with
|
|
381
|
+
A: Role Language Model — a sub-agent orchestration system with 5 specialized roles + native CLI sub-agents, DAG-based parallel scheduling, and standardized prompt/return format.
|
|
366
382
|
|
|
367
383
|
- Q: Where does project knowledge go?
|
|
368
384
|
A: In the project-local `.helloagents/` directory, auto-synced when code changes.
|
|
@@ -386,7 +402,40 @@ These commands run inside AI chat, not your system shell.
|
|
|
386
402
|
|
|
387
403
|
## Version History
|
|
388
404
|
|
|
389
|
-
### v2.2.
|
|
405
|
+
### v2.2.15 (current)
|
|
406
|
+
|
|
407
|
+
- Professional evaluation dimensions: Scope(0-3), Specs(0-3), Constraints(0-2), Acceptance(0-2), mapped to PM fundamentals
|
|
408
|
+
- Evaluation threshold raised from 7 to 8, ensuring all zero-score dimensions are covered during follow-up
|
|
409
|
+
- Dimension isolation rule: each follow-up question targets exactly one dimension, no cross-dimension merging
|
|
410
|
+
- Simplified option generation rules, removed redundancy with dimension isolation
|
|
411
|
+
- R3 proposal differentiation strengthened: both technical path and deliverable design direction must differ
|
|
412
|
+
- Universal task support: terminology generalized beyond programming to cover all task types (documents, design, general tasks)
|
|
413
|
+
|
|
414
|
+
### v2.2.14
|
|
415
|
+
|
|
416
|
+
- DAG dependency scheduling for task execution (depends_on, topological sort, layer-by-layer parallel dispatch with failure propagation)
|
|
417
|
+
- Graded retry and standardized sub-agent return format with scope verification
|
|
418
|
+
- Sub-agent orchestration paradigm: four-step method, prompt template, behavior constraints (route-skip, output format)
|
|
419
|
+
- Execution path hardening: explicit R1 upgrade triggers, DESIGN retry limits, DEVELOP entry/exit conditions
|
|
420
|
+
- Workflow rule audit: terminology and format consistency, redundancy cleanup
|
|
421
|
+
|
|
422
|
+
### v2.2.13
|
|
423
|
+
|
|
424
|
+
- R3 design proposals default ≥3 parallel, parallel batch limit ≤6, explicit sub-agent count principle (count = independent work units, no vague wording), add sub-agent orchestration config tips to README
|
|
425
|
+
|
|
426
|
+
### v2.2.12
|
|
427
|
+
|
|
428
|
+
- Comprehensive parallel sub-agent orchestration across all flows and commands, extend G10 coverage, eliminate hardcoded agent counts, add universal parallel information gathering principle
|
|
429
|
+
|
|
430
|
+
### v2.2.11
|
|
431
|
+
|
|
432
|
+
- Three-stage gate model: merge analysis into design stage (EVALUATE → DESIGN → DEVELOP), optimize stop points and fix sub-agent orchestration consistency
|
|
433
|
+
|
|
434
|
+
### v2.2.10
|
|
435
|
+
|
|
436
|
+
- Streamline sub-agent roles and integrate native multi-agent orchestration for all supported CLIs
|
|
437
|
+
|
|
438
|
+
### v2.2.9
|
|
390
439
|
|
|
391
440
|
- Comprehensive Windows file-locking fix: preemptive unlock and rename-aside fallback for install/update/uninstall/clean
|
|
392
441
|
|
|
@@ -402,13 +451,13 @@ These commands run inside AI chat, not your system shell.
|
|
|
402
451
|
- **Agent Teams protocol:** G10 adds Claude Code multi-role collaboration protocol
|
|
403
452
|
- **SKILL integration:** auto-deploy SKILL.md to skills discovery directory for all CLI targets
|
|
404
453
|
- **RLM command expansion:** add ~rlm agents/resume/team subcommands with parallel multi-role dispatch
|
|
405
|
-
- **Stage parallel optimization:** parallel rules for
|
|
454
|
+
- **Stage parallel optimization:** parallel rules for develop stage, serial annotation for design
|
|
406
455
|
- **Memory v2 bridge:** add Codex Memory v2 bridge protocol
|
|
407
456
|
- **Script modularization:** extract config_helpers.py module
|
|
408
457
|
|
|
409
458
|
### v2.2.5
|
|
410
459
|
|
|
411
|
-
- **RLM sub-agent system:**
|
|
460
|
+
- **RLM sub-agent system:** 5 specialized roles + native sub-agents with automatic dispatch and session isolation
|
|
412
461
|
- **Five-dimension routing (R0–R3):** replaces legacy three-layer routing
|
|
413
462
|
- **Four-stage workflow + R1 fast flow:** stage chain (Evaluate → Analyze → Design → Develop) with R1 fast flow for single-point operations
|
|
414
463
|
- **Three-layer memory:** L0 user preferences, L1 project knowledge base, L2 session summaries
|