helloagents 2.2.12 → 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.
Files changed (2) hide show
  1. package/README.md +35 -7
  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.12-orange.svg)](./pyproject.toml)
11
+ [![Version](https://img.shields.io/badge/version-2.2.15-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)
@@ -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
- 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.
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>
@@ -268,9 +268,11 @@ L0 user memory (global preferences), L1 project knowledge base (structured docs
268
268
  > ⚠️ **Codex CLI config.toml compatibility notes:** The following settings may affect HelloAGENTS:
269
269
  > - `[features]` `steer = true` — changes input submission behavior, may interfere with workflow interaction
270
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)
271
+ > - `project_doc_max_bytes` too low — default 32KB, AGENTS.md will be truncated (auto-set to 131072 during install)
272
272
  > - `agent_max_depth = 1` — limits sub-agent nesting depth, recommend keeping default or ≥2
273
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
274
276
 
275
277
  ### Claude Code example
276
278
 
@@ -296,6 +298,11 @@ L0 user memory (global preferences), L1 project knowledge base (structured docs
296
298
 
297
299
  helloagents update
298
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
+
299
306
  ### Beta branch
300
307
 
301
308
  To install from the `beta` branch, append `@beta` to the repository URL:
@@ -321,7 +328,7 @@ To install from the `beta` branch, append `@beta` to the repository URL:
321
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.
322
329
  2. In AI chat, every input is scored on five dimensions and routed to R0–R3.
323
330
  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.
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.
325
332
  5. EHRB scans each step for destructive operations; risky actions require explicit user confirmation. Hooks provide additional pre-tool safety checks when available.
326
333
  6. Three-layer memory (user / project KB / session) preserves context across sessions.
327
334
  7. Stage chain completes with verified output and optional knowledge base sync.
@@ -330,7 +337,7 @@ To install from the `beta` branch, append `@beta` to the repository URL:
330
337
 
331
338
  - AGENTS.md: router and workflow protocol
332
339
  - SKILL.md: skill discovery metadata for CLI targets
333
- - pyproject.toml: package metadata (v2.2.12)
340
+ - pyproject.toml: package metadata (v2.2.15)
334
341
  - helloagents/cli.py: installer entry
335
342
  - helloagents/functions: workflow commands
336
343
  - helloagents/stages: design, develop
@@ -371,7 +378,7 @@ These commands run inside AI chat, not your system shell.
371
378
  A: Non-HelloAGENTS files are backed up before replacement.
372
379
 
373
380
  - Q: What is RLM?
374
- A: Role Language Model — a sub-agent orchestration system with 5 specialized roles + native CLI sub-agents dispatched based on task complexity.
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.
375
382
 
376
383
  - Q: Where does project knowledge go?
377
384
  A: In the project-local `.helloagents/` directory, auto-synced when code changes.
@@ -395,7 +402,28 @@ These commands run inside AI chat, not your system shell.
395
402
 
396
403
  ## Version History
397
404
 
398
- ### v2.2.12 (current)
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
399
427
 
400
428
  - Comprehensive parallel sub-agent orchestration across all flows and commands, extend G10 coverage, eliminate hardcoded agent counts, add universal parallel information gathering principle
401
429
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "helloagents",
3
- "version": "2.2.12",
3
+ "version": "2.2.15",
4
4
  "type": "module",
5
5
  "description": "HelloAGENTS - AI-native sub-agent orchestration framework for multi-CLI environments",
6
6
  "author": "HelloWind",