helloagents 2.2.16 → 2.3.0

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 +239 -131
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,9 +6,9 @@
6
6
 
7
7
  <div align="center">
8
8
 
9
- **A multi-CLI workflow system that keeps going until tasks are implemented and verified.**
9
+ **Let AI go beyond analysis keep pushing until implementation and verification are done.**
10
10
 
11
- [![Version](https://img.shields.io/badge/version-2.2.16-orange.svg)](./pyproject.toml)
11
+ [![Version](https://img.shields.io/badge/version-2.3.0-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)
@@ -26,83 +26,77 @@
26
26
 
27
27
  ## Table of Contents
28
28
 
29
- - [Why HelloAGENTS](#why-helloagents)
30
- - [What Changed vs Legacy Repo](#what-changed-vs-legacy-repo)
31
- - [Features](#features)
32
- - [Before and After (Snake Demo)](#before-and-after-snake-demo)
29
+ - [Before and After](#before-and-after)
30
+ - [Core Features](#core-features)
33
31
  - [Quick Start](#quick-start)
32
+ - [Configuration](#configuration)
34
33
  - [How It Works](#how-it-works)
35
34
  - [Repository Guide](#repository-guide)
36
35
  - [In-Chat Workflow Commands](#in-chat-workflow-commands)
36
+ - [Usage Guide](#usage-guide)
37
37
  - [FAQ](#faq)
38
38
  - [Troubleshooting](#troubleshooting)
39
39
  - [Version History](#version-history)
40
40
  - [Contributing](#contributing)
41
41
  - [License](#license)
42
42
 
43
- ## Why HelloAGENTS
43
+ ## Before and After
44
44
 
45
- Many assistants can analyze tasks but often stop before real delivery. HelloAGENTS adds strict routing, staged execution, and verification gates.
45
+ <table>
46
+ <tr>
47
+ <td width="50%" valign="top" align="center">
48
+
49
+ **Without HelloAGENTS**
50
+
51
+ <img src="./readme_images/08-demo-snake-without-helloagents.png" alt="Snake demo without HelloAGENTS" width="520">
52
+
53
+ </td>
54
+ <td width="50%" valign="top" align="center">
55
+
56
+ **With HelloAGENTS**
57
+
58
+ <img src="./readme_images/07-demo-snake-with-helloagents.png" alt="Snake demo with HelloAGENTS" width="520">
59
+
60
+ </td>
61
+ </tr>
62
+ </table>
46
63
 
47
64
  | Challenge | Without HelloAGENTS | With HelloAGENTS |
48
- |---|---|---|
65
+ |-----------|-------------------|-----------------|
49
66
  | Stops at planning | Ends with suggestions | Pushes to implementation and validation |
50
67
  | Output drift | Different structure every prompt | Unified routing and stage chain |
51
68
  | Risky operations | Easier to make destructive mistakes | EHRB risk detection and escalation |
52
69
  | Knowledge continuity | Context gets scattered | Built-in KB and session memory |
53
70
  | Reusability | Prompt-by-prompt effort | Commandized reusable workflow |
54
71
 
55
- <div align="center">
56
- <img src="./readme_images/06-divider.svg" width="420" alt="divider">
57
- </div>
58
-
59
- ## What Changed vs Legacy Repo
60
-
61
- Compared with legacy multi-bundle releases, the v2.x line is now package-first with a fundamentally different architecture.
62
-
63
- | Area | Legacy repo | Current repo |
64
- |---|---|---|
65
- | Distribution | Multiple bundle folders per CLI | One Python package + installer CLI |
66
- | Installation | Manual copy of config and skill folders | pip/uv install + `helloagents` interactive menu |
67
- | Routing | Three-layer (Context → Tools → Intent) | Five-dimension scoring (R0–R3) |
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
- | Memory | No persistence | Three-layer: L0 user, L1 project KB, L2 session |
71
- | Safety | Basic EHRB | Three-layer EHRB (keyword + semantic + tool output) |
72
- | Hooks | None | Auto-deploy lifecycle hooks (Claude Code 9 events + Codex CLI notify) |
73
- | CLI targets | 5 visible bundle targets | 6 targets: codex, claude, gemini, qwen, grok, opencode |
74
- | Commands | 12 | 15 workflow commands |
75
-
76
- > ⚠️ **Migration notice:** Because repository structure and installation workflow changed in v2.x, legacy versions were moved to **helloagents-archive**: https://github.com/hellowind777/helloagents-archive
77
-
78
- ## Features
72
+ ## Core Features
79
73
 
80
74
  <table>
81
75
  <tr>
82
76
  <td width="50%" valign="top">
83
77
  <img src="./readme_images/02-feature-icon-installer.svg" width="48" align="left">
84
78
 
85
- **RLM sub-agent orchestration**
79
+ **RLM Sub-Agent Orchestration**
86
80
 
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.
81
+ 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. 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.
88
82
 
89
83
  **Your gain:** complex tasks are broken down and handled by the right specialist, with parallel execution when possible.
90
84
  </td>
91
85
  <td width="50%" valign="top">
92
86
  <img src="./readme_images/03-feature-icon-workflow.svg" width="48" align="left">
93
87
 
94
- **Five-dimension routing (R0–R3)**
88
+ **Structured Workflow (Evaluate → Design → Develop)**
95
89
 
96
- Every input is scored on action need, target clarity, decision scope, impact range, and EHRB risk — then routed to R0 direct response, R1 fast flow, R2 simplified flow, or R3 standard flow.
90
+ Every input is scored on five dimensions and routed to R0 direct response, R1 fast flow, R2 simplified flow, or R3 standard flow. R2/R3 enter the full stage chain with explicit entry conditions, deliverables, and verification gates. Supports interactive and fully delegated modes.
97
91
 
98
- **Your gain:** proportional effort — simple queries stay fast, complex tasks get full process.
92
+ **Your gain:** proportional effort — simple queries stay fast, complex tasks get full process with verification at every step.
99
93
  </td>
100
94
  </tr>
101
95
  <tr>
102
96
  <td width="50%" valign="top">
103
97
  <img src="./readme_images/04-feature-icon-safety.svg" width="48" align="left">
104
98
 
105
- **Three-layer safety detection (EHRB)**
99
+ **Three-Layer Safety Detection (EHRB)**
106
100
 
107
101
  Keyword scan, semantic analysis, and tool-output inspection catch destructive operations before execution. Interactive and delegated modes enforce user confirmation.
108
102
 
@@ -111,7 +105,7 @@ Keyword scan, semantic analysis, and tool-output inspection catch destructive op
111
105
  <td width="50%" valign="top">
112
106
  <img src="./readme_images/05-feature-icon-compat.svg" width="48" align="left">
113
107
 
114
- **Three-layer memory model**
108
+ **Three-Layer Memory Model**
115
109
 
116
110
  L0 user memory (global preferences), L1 project knowledge base (structured docs synced from code), and L2 session summaries (auto-persisted at stage transitions).
117
111
 
@@ -120,41 +114,23 @@ L0 user memory (global preferences), L1 project knowledge base (structured docs
120
114
  </tr>
121
115
  </table>
122
116
 
123
- ### Data points from this repo
124
-
125
- - 6 CLI targets from helloagents/cli.py
126
- - 15 workflow commands from helloagents/functions
127
- - 5 RLM roles from helloagents/rlm/roles
128
- - 2 stage definitions from helloagents/stages
129
- - 5 core services from helloagents/services
130
- - 4 rule modules from helloagents/rules
131
- - 9 helper scripts from helloagents/scripts
132
- - 2 hooks configs from helloagents/hooks
133
- - 10 KB/plan templates from helloagents/templates
134
-
135
- ## Before and After (Snake Demo)
136
-
137
- <table>
138
- <tr>
139
- <td width="50%" valign="top" align="center">
140
-
141
- **Without HelloAGENTS**
142
-
143
- <img src="./readme_images/08-demo-snake-without-helloagents.png" alt="Snake demo without HelloAGENTS" width="520">
144
-
145
- </td>
146
- <td width="50%" valign="top" align="center">
147
-
148
- **With HelloAGENTS**
117
+ ### Sub-Agent Native Mapping
149
118
 
150
- <img src="./readme_images/07-demo-snake-with-helloagents.png" alt="Snake demo with HelloAGENTS" width="520">
119
+ | CLI | Native Sub-Agent Mechanism | RLM Mapping |
120
+ |-----|---------------------------|-------------|
121
+ | Claude Code | Task tool (explore / code / shell) | Direct mapping, supports Agent Teams |
122
+ | Codex CLI | spawn_agent / Collab (multi-thread) | spawn_agent parallel scheduling, CSV batch orchestration |
123
+ | OpenCode | Built-in agent mode | Fallback to sequential execution |
124
+ | Gemini CLI | Built-in tool calls | Fallback to sequential execution |
125
+ | Qwen CLI | Built-in tool calls | Fallback to sequential execution |
126
+ | Grok CLI | Built-in tool calls | Fallback to sequential execution |
151
127
 
152
- </td>
153
- </tr>
154
- </table>
128
+ Additionally, HelloAGENTS provides: **five-dimension routing scoring** (action need, target clarity, decision scope, impact range, EHRB risk) to automatically determine processing depth for each input; **6 CLI targets** (Claude Code / Codex CLI / OpenCode / Gemini CLI / Qwen CLI / Grok CLI) with one rule set across all; **Hooks integration** (Claude Code 9 lifecycle hooks + Codex CLI notify hook) with automatic graceful degradation when unavailable.
155
129
 
156
130
  ## Quick Start
157
131
 
132
+ > ⚠️ **Prerequisite:** All AI CLIs (Codex CLI / Claude Code, etc.) should be upgraded to the latest version with relevant feature flags enabled (e.g., sub-agents, CSV orchestration) to access all HelloAGENTS capabilities. VSCode extensions for these CLIs update more slowly — some newer features may require waiting for the extension to catch up. See CLI-specific compatibility notes below.
133
+
158
134
  ### Method A: One-line install script (recommended)
159
135
 
160
136
  **macOS / Linux:**
@@ -266,13 +242,17 @@ L0 user memory (global preferences), L1 project knowledge base (structured docs
266
242
  helloagents update
267
243
 
268
244
  > ⚠️ **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
245
  > - `[features]` `child_agents_md = true` — experimental, injects extra instructions that may conflict with HelloAGENTS
271
246
  > - `project_doc_max_bytes` too low — default 32KB, AGENTS.md will be truncated (auto-set to 131072 during install)
272
247
  > - `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
248
+ > - `agent_max_threads` too low — default 6, lower values limit parallel sub-agent scheduling (CSV batch mode recommends ≥16)
274
249
  > - `[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
250
+ > - `[features]` `sqlite = true` must be enabled for CSV batch orchestration (spawn_agents_on_csv)
251
+ > - Collab sub-agent scheduling requires Codex CLI feature gate to be enabled
252
+ >
253
+ > 💡 **Best practices:**
254
+ > - HelloAGENTS is optimized for Codex CLI — supports `high` and below reasoning effort levels. `xhigh` reasoning is **not supported** and may cause instruction-following issues
255
+ > - Use the terminal/CLI version of Codex for the best experience. The VSCode extension updates lag behind the CLI — newer features (e.g., CSV batch orchestration, Collab multi-agent) may require waiting for the extension to catch up
276
256
 
277
257
  ### Claude Code example
278
258
 
@@ -323,6 +303,38 @@ To install from the `beta` branch, append `@beta` to the repository URL:
323
303
  # pip
324
304
  pip install git+https://github.com/hellowind777/helloagents.git@beta && helloagents
325
305
 
306
+ ## Configuration
307
+
308
+ Customize workflow behavior via `config.json` after installation. Only include keys you want to override — missing keys use defaults.
309
+
310
+ **Storage locations (highest priority first):**
311
+
312
+ 1. Project-level: `{project_root}/.helloagents/config.json` — current project only
313
+ 2. Global: `~/.helloagents/config.json` — all projects
314
+ 3. Built-in defaults
315
+
316
+ **Available keys:**
317
+
318
+ | Key | Type | Default | Description |
319
+ |-----|------|---------|-------------|
320
+ | `OUTPUT_LANGUAGE` | string | `zh-CN` | Language for AI output and KB files |
321
+ | `KB_CREATE_MODE` | int | `2` | KB creation: `0`=OFF, `1`=on-demand (prompt ~init), `2`=auto on code changes, `3`=always auto |
322
+ | `BILINGUAL_COMMIT` | int | `1` | Commit language: `0`=OUTPUT_LANGUAGE only, `1`=OUTPUT_LANGUAGE + English |
323
+ | `EVAL_MODE` | int | `1` | Clarification mode: `1`=progressive (1 question/round, max 5), `2`=one-shot (all at once, max 3) |
324
+ | `UPDATE_CHECK` | int | `72` | Update check cache TTL in hours: `0`=OFF |
325
+ | `CSV_BATCH_MAX` | int | `16` | CSV batch max concurrency: `0`=OFF, cap 64 (Codex CLI only) |
326
+
327
+ **Example:**
328
+
329
+ ```json
330
+ {
331
+ "KB_CREATE_MODE": 0,
332
+ "EVAL_MODE": 2
333
+ }
334
+ ```
335
+
336
+ > File missing or unparseable is silently skipped with defaults applied. Unknown keys produce a warning and are ignored.
337
+
326
338
  ## How It Works
327
339
 
328
340
  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.
@@ -337,7 +349,7 @@ To install from the `beta` branch, append `@beta` to the repository URL:
337
349
 
338
350
  - AGENTS.md: router and workflow protocol
339
351
  - SKILL.md: skill discovery metadata for CLI targets
340
- - pyproject.toml: package metadata (v2.2.16)
352
+ - pyproject.toml: package metadata (v2.3.0)
341
353
  - helloagents/cli.py: installer entry
342
354
  - helloagents/functions: workflow commands
343
355
  - helloagents/stages: design, develop
@@ -366,6 +378,145 @@ These commands run inside AI chat, not your system shell.
366
378
  | ~rlm | role orchestration (spawn / agents / resume / team) |
367
379
  | ~status / ~help | status and help |
368
380
 
381
+ ## Usage Guide
382
+
383
+ ### Three Workflow Modes
384
+
385
+ | Mode | Description | When to use |
386
+ |------|-------------|-------------|
387
+ | `~auto` | Full autonomous flow from requirement to verified implementation (Evaluate → Design → Develop → Verify) | Clear requirement, want end-to-end delivery |
388
+ | `~plan` | Planning only, generates a proposal package then stops — no code written | Want to review the plan before committing |
389
+ | `~exec` | Skip evaluation and design, execute an existing plan package directly | After `~plan` review, ready to implement |
390
+
391
+ Typical pattern: `~plan` first → review → `~exec` to implement. Or just `~auto` for one-shot delivery.
392
+
393
+ ### Interactive vs Delegated Mode
394
+
395
+ When `~auto` or `~plan` presents its confirmation, you choose:
396
+
397
+ - **Interactive (default):** pauses at key decision points (plan selection, failure handling)
398
+ - **Delegated (fully automatic):** auto-advances all stages, auto-selects recommended options, only pauses on EHRB risk
399
+ - **Plan-only delegated:** fully automatic but stops after design, never enters development
400
+
401
+ Without `~` commands, plain-text input is automatically routed to R0–R3 based on complexity.
402
+
403
+ ### Requirement Evaluation
404
+
405
+ Before R2/R3 tasks enter execution, the system scores requirements on four dimensions (scope 0–3, deliverable spec 0–3, implementation conditions 0–2, acceptance criteria 0–2, total 10). Score ≥ 8 proceeds to confirmation; < 8 triggers clarifying questions:
406
+
407
+ - `EVAL_MODE=1` (default, progressive): asks 1 lowest-scoring dimension per round, up to 5 rounds
408
+ - `EVAL_MODE=2` (one-shot): asks all low-scoring dimensions at once, up to 3 rounds
409
+
410
+ Context inferred from the existing codebase counts toward the score automatically. Say "skip evaluation / just do it" to bypass the questioning phase.
411
+
412
+ ### Parallel Design Proposals
413
+
414
+ In the R3 standard path, the design stage dispatches 3–6 sub-agents to independently generate competing implementation proposals. The main agent evaluates all proposals across four dimensions: user value, solution soundness, risk (including EHRB), and implementation cost. Weights are dynamically adjusted based on project characteristics (e.g., performance-critical systems weight soundness higher; MVPs weight cost higher).
415
+
416
+ - Interactive mode: user selects a proposal or requests re-generation (max 1 retry)
417
+ - Delegated mode: recommended proposal is auto-selected
418
+ - R2 simplified path skips multi-proposal comparison and goes directly to planning
419
+
420
+ ### Auto Dependency Management
421
+
422
+ During development, the system auto-detects the project's package manager via lockfiles (`yarn.lock` → yarn, `uv.lock` → uv, `Gemfile.lock` → bundler, etc.) and handles dependencies:
423
+
424
+ - Declared but missing dependencies: auto-installed
425
+ - New dependencies required by tasks: auto-added with declaration file updated
426
+ - Ambiguous dependencies: user is asked before installing
427
+
428
+ ### Quality Verification (Ralph Loop & Break-loop)
429
+
430
+ **Ralph Loop** (Claude Code, via SubagentStop Hook): after a sub-agent completes code changes, the project's verification command runs automatically. On failure, the sub-agent is blocked from exiting and must fix the issue (max 1 retry loop). Verification command priority: `.helloagents/verify.yaml` → `package.json` scripts → auto-detected.
431
+
432
+ **Break-loop** (deep root cause analysis): triggered when a task fails repeatedly (after Ralph Loop + at least 1 manual fix attempt), performing five-dimension root cause analysis:
433
+
434
+ 1. Root cause classification (logic error / type mismatch / missing dependency / environment / design flaw)
435
+ 2. Why previous fixes didn't work
436
+ 3. Prevention mechanism suggestions
437
+ 4. Systemic scan — same issue in other modules?
438
+ 5. Lessons learned recorded in the acceptance report
439
+
440
+ ### Custom Command Extension
441
+
442
+ Create `.helloagents/commands/` in your project and drop in Markdown files — the filename becomes the command name:
443
+
444
+ .helloagents/commands/deploy.md → ~deploy
445
+ .helloagents/commands/release.md → ~release
446
+
447
+ File content defines the execution rules. The system applies a lightweight gate (requirement understanding + EHRB check).
448
+
449
+ ### Smart Commit (~commit)
450
+
451
+ `~commit` does more than generate a message:
452
+
453
+ - Analyzes `git diff` to auto-generate Conventional Commits formatted messages
454
+ - Pre-commit quality checks (code-doc consistency, test coverage, verification commands)
455
+ - Auto-excludes sensitive files (`.env`, `*.pem`, `*.key`, etc.) — never runs `git add .`
456
+ - Shows file list before staging, supports exclusion
457
+ - Options: local commit only / commit + push / commit + push + create PR
458
+ - Bilingual commit messages when `BILINGUAL_COMMIT=1`
459
+
460
+ ### Manual Sub-Agent Invocation
461
+
462
+ Beyond automatic dispatch, you can manually invoke specific roles:
463
+
464
+ ~rlm spawn reviewer "review src/api/ for security issues"
465
+ ~rlm spawn writer "generate API reference docs"
466
+ ~rlm spawn reviewer,synthesizer "analyze and summarize the auth module" # parallel
467
+
468
+ Available roles: `reviewer` (code review), `synthesizer` (multi-source synthesis), `kb_keeper` (KB maintenance), `pkg_keeper` (plan package management), `writer` (documentation).
469
+
470
+ ### Multi-Terminal Collaboration
471
+
472
+ Multiple terminals (across different CLIs) can share a task list:
473
+
474
+ # Terminal A
475
+ hellotasks=my-project codex
476
+
477
+ # Terminal B
478
+ hellotasks=my-project claude
479
+
480
+ Commands once enabled:
481
+
482
+ ~rlm tasks # view shared task list
483
+ ~rlm tasks available # see unclaimed tasks
484
+ ~rlm tasks claim <id> # claim a task
485
+ ~rlm tasks complete <id> # mark done
486
+ ~rlm tasks add "task title" # add a new task
487
+
488
+ Tasks are stored in `{KB_ROOT}/tasks/` with file locking to prevent concurrent conflicts.
489
+
490
+ ### KB Auto-Sync & CHANGELOG
491
+
492
+ The knowledge base syncs automatically at these points:
493
+
494
+ - After every development stage, `kb_keeper` sub-agent syncs module docs to reflect actual code
495
+ - After every R1/R2/R3 task completion, CHANGELOG is auto-appended
496
+ - On session end (Claude Code Stop Hook), KB sync + L2 session summary write triggered asynchronously
497
+
498
+ 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.
499
+
500
+ `KB_CREATE_MODE` controls automatic behavior: `0`=off, `1`=prompt on demand, `2`=auto on code changes (default), `3`=always auto.
501
+
502
+ ### Worktree Isolation
503
+
504
+ When multiple sub-agents need to modify different regions of the same file simultaneously (Claude Code only), the system automatically uses `Task(isolation="worktree")` to create an independent git worktree for each sub-agent, preventing Edit tool conflicts. The main agent merges all worktree changes in the consolidation phase. Only activated when sub-agents have overlapping file writes; read-only tasks don't use it.
505
+
506
+ ### CSV Batch Orchestration (Codex CLI)
507
+
508
+ When ≥6 structurally identical tasks exist in the same execution layer, the system auto-converts `tasks.md` into a task CSV and dispatches via `spawn_agents_on_csv`. Each worker receives its row data + instruction template, executes independently, and reports results.
509
+
510
+ - Progress tracked in real-time via `agent_job_progress` events (pending/running/completed/failed/ETA)
511
+ - State persisted in SQLite for crash recovery
512
+ - Partial failures still export results with failure summary
513
+ - Heterogeneous tasks automatically fall back to `spawn_agent` sequential dispatch
514
+ - Configure concurrency via `CSV_BATCH_MAX` (default 16, max 64, set to 0 to disable)
515
+
516
+ ### Update Check
517
+
518
+ On the first response of each session, the system silently checks for new versions. Results are cached at `~/.helloagents/.update_cache`, valid for the duration set by `UPDATE_CHECK` (default 72 hours, set to 0 to disable). When a new version is available, `⬆️ New version {version} available` appears in the response footer. Any errors during the check are silently skipped and never interrupt normal usage.
519
+
369
520
  ## FAQ
370
521
 
371
522
  - Q: Is this a Python CLI tool or prompt package?
@@ -402,7 +553,19 @@ These commands run inside AI chat, not your system shell.
402
553
 
403
554
  ## Version History
404
555
 
405
- ### v2.2.16 (current)
556
+ ### v2.3.0 (current)
557
+
558
+ - Comprehensive cross-audit fix: unified role output format, normalized path references, code-doc consistency alignment
559
+ - Quality verification loop (Ralph Loop): auto-verify after sub-agent completion, block and feedback on failure
560
+ - Auto context injection for sub-agents and rule reinforcement for main agent
561
+ - Deep 5-dimension root cause analysis on repeated failures (break-loop)
562
+ - Auto-inject project technical guidelines before sub-agent development
563
+ - Pre-commit quality checks (code-doc consistency, test coverage, verification commands)
564
+ - Worktree isolation for parallel editing
565
+ - Custom command extension (.helloagents/commands/)
566
+ - Auto-append Git author info to CHANGELOG entries
567
+
568
+ ### v2.2.16
406
569
 
407
570
  - 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
571
  - 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
@@ -425,62 +588,7 @@ These commands run inside AI chat, not your system shell.
425
588
 
426
589
  ### v2.2.13
427
590
 
428
- - 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
429
-
430
- ### v2.2.12
431
-
432
- - Comprehensive parallel sub-agent orchestration across all flows and commands, extend G10 coverage, eliminate hardcoded agent counts, add universal parallel information gathering principle
433
-
434
- ### v2.2.11
435
-
436
- - Three-stage gate model: merge analysis into design stage (EVALUATE → DESIGN → DEVELOP), optimize stop points and fix sub-agent orchestration consistency
437
-
438
- ### v2.2.10
439
-
440
- - Streamline sub-agent roles and integrate native multi-agent orchestration for all supported CLIs
441
-
442
- ### v2.2.9
443
-
444
- - Comprehensive Windows file-locking fix: preemptive unlock and rename-aside fallback for install/update/uninstall/clean
445
-
446
- ### v2.2.8
447
-
448
- - Codex CLI attention optimization for more stable HelloAGENTS execution
449
-
450
- ### v2.2.7
451
-
452
- - **G12 Hooks integration spec:** 9 Claude Code lifecycle hooks + Codex CLI notify hook
453
- - **Auto-deploy Hooks:** auto-deploy and clean up Hooks config during install/uninstall
454
- - **Codex CLI native sub-agent:** G10 adds spawn_agent protocol with cross-CLI parallel scheduling
455
- - **Agent Teams protocol:** G10 adds Claude Code multi-role collaboration protocol
456
- - **SKILL integration:** auto-deploy SKILL.md to skills discovery directory for all CLI targets
457
- - **RLM command expansion:** add ~rlm agents/resume/team subcommands with parallel multi-role dispatch
458
- - **Stage parallel optimization:** parallel rules for develop stage, serial annotation for design
459
- - **Memory v2 bridge:** add Codex Memory v2 bridge protocol
460
- - **Script modularization:** extract config_helpers.py module
461
-
462
- ### v2.2.5
463
-
464
- - **RLM sub-agent system:** 5 specialized roles + native sub-agents with automatic dispatch and session isolation
465
- - **Five-dimension routing (R0–R3):** replaces legacy three-layer routing
466
- - **Four-stage workflow + R1 fast flow:** stage chain (Evaluate → Analyze → Design → Develop) with R1 fast flow for single-point operations
467
- - **Three-layer memory:** L0 user preferences, L1 project knowledge base, L2 session summaries
468
- - **Three-layer EHRB:** keyword + semantic + tool-output safety detection
469
- - **Package-first installer:** pip/uv install with `helloagents` interactive menu
470
- - **15 workflow commands:** added ~rlm, ~validatekb, ~status
471
- - **6 CLI targets:** added OpenCode support
472
- - **Interactive installation menu:** multi-select target CLIs with one command
473
- - **Auto locale detection:** CLI messages switch between Chinese and English based on system locale
474
- - **Windows encoding fix:** UTF-8 safe subprocess handling on all platforms
475
- - **Knowledge base service:** structured project docs auto-synced from code changes
476
- - **Attention service:** live status tracking and progress snapshots
477
-
478
- ### v2.0.1 (legacy multi-bundle baseline)
479
-
480
- - Multi-bundle distribution with manual copy-based installation
481
- - Three-layer routing (Context → Tools → Intent)
482
- - 4 workflow stages, 12 commands, 5 CLI targets
483
- - No sub-agent system, no persistent memory
591
+ - R3 design proposals default ≥3 parallel, parallel batch limit ≤6, explicit sub-agent count principle
484
592
 
485
593
  ## Contributing
486
594
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "helloagents",
3
- "version": "2.2.16",
3
+ "version": "2.3.0",
4
4
  "type": "module",
5
5
  "description": "HelloAGENTS - AI-native sub-agent orchestration framework for multi-CLI environments",
6
6
  "author": "HelloWind",