helloagents 2.2.15 → 2.2.16

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 +14 -10
  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.15-orange.svg)](./pyproject.toml)
11
+ [![Version](https://img.shields.io/badge/version-2.2.16-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)
@@ -337,7 +337,7 @@ To install from the `beta` branch, append `@beta` to the repository URL:
337
337
 
338
338
  - AGENTS.md: router and workflow protocol
339
339
  - SKILL.md: skill discovery metadata for CLI targets
340
- - pyproject.toml: package metadata (v2.2.15)
340
+ - pyproject.toml: package metadata (v2.2.16)
341
341
  - helloagents/cli.py: installer entry
342
342
  - helloagents/functions: workflow commands
343
343
  - helloagents/stages: design, develop
@@ -402,14 +402,18 @@ These commands run inside AI chat, not your system shell.
402
402
 
403
403
  ## Version History
404
404
 
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)
405
+ ### v2.2.16 (current)
406
+
407
+ - Refactored evaluation dimension system with dimension isolation rule, pass threshold tuned to 8/10. Options are user-need-driven, organized by style direction rather than complexity tiers (e.g. UI design offers different styles instead of simple/medium/complex); recommended option points to the most complete deliverable, derived from recommendation principles and scoring criteria rather than hardcoded
408
+ - Proposal design requires both implementation path and deliverable design direction to differ across alternatives, each sub-agent independently outputs a complete proposal including presentation direction, style, and experience
409
+ - Proposal evaluation criteria optimized: user value weight is always no less than any other single dimension, evaluation dimensions dynamically adjusted by project context
410
+ - Universal task type support: generalized evaluation, follow-up, and proposal design terminology from programming-specific to documents, design, general tasks and more
411
+ - Added sub-agent DAG dependency scheduling with topological sort, layer-by-layer parallel dispatch, and failure propagation
412
+ - Dynamic sub-agent parallel count based on independent work units, eliminated hardcoded limits
413
+ - Unified output format: structured display for score breakdowns, follow-up options, and confirmation messages
414
+ - Streamlined execution paths with shorter stage chains and step-level on-demand module loading
415
+ - Adjusted Codex CLI memory limit to 128 KiB to prevent rules file truncation
416
+ - Improved recommendation option generation rules, proposal differentiation requirements, and evaluation scoring criteria
413
417
 
414
418
  ### v2.2.14
415
419
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "helloagents",
3
- "version": "2.2.15",
3
+ "version": "2.2.16",
4
4
  "type": "module",
5
5
  "description": "HelloAGENTS - AI-native sub-agent orchestration framework for multi-CLI environments",
6
6
  "author": "HelloWind",