helloagents 3.0.2-beta.1 → 3.0.7
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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/README.md +147 -45
- package/README_CN.md +148 -46
- package/bootstrap-lite.md +104 -46
- package/bootstrap.md +143 -112
- package/cli.mjs +80 -427
- package/gemini-extension.json +1 -1
- package/hooks/hooks-claude.json +10 -0
- package/hooks/hooks.json +10 -0
- package/package.json +2 -12
- package/scripts/advisor-state.mjs +222 -0
- package/scripts/capability-registry.mjs +59 -0
- package/scripts/cli-codex-backup.mjs +59 -0
- package/scripts/cli-codex-config.mjs +100 -0
- package/scripts/cli-codex.mjs +34 -156
- package/scripts/cli-config.mjs +1 -0
- package/scripts/cli-doctor-render.mjs +28 -0
- package/scripts/cli-doctor.mjs +367 -0
- package/scripts/cli-host-detect.mjs +94 -0
- package/scripts/cli-lifecycle-hosts.mjs +123 -0
- package/scripts/cli-lifecycle.mjs +213 -0
- package/scripts/cli-messages.mjs +76 -52
- package/scripts/closeout-state.mjs +213 -0
- package/scripts/delivery-gate.mjs +256 -0
- package/scripts/guard-rules.mjs +122 -0
- package/scripts/guard.mjs +190 -168
- package/scripts/notify-context.mjs +77 -17
- package/scripts/notify-events.mjs +5 -1
- package/scripts/notify-route.mjs +111 -0
- package/scripts/notify-shared.mjs +0 -2
- package/scripts/notify-source.mjs +113 -0
- package/scripts/notify-ui.mjs +40 -6
- package/scripts/notify.mjs +120 -59
- package/scripts/plan-contract.mjs +210 -0
- package/scripts/project-storage.mjs +235 -0
- package/scripts/ralph-loop.mjs +9 -58
- package/scripts/replay-state.mjs +210 -0
- package/scripts/review-state.mjs +220 -0
- package/scripts/runtime-context.mjs +74 -0
- package/scripts/verify-state.mjs +226 -0
- package/scripts/visual-state.mjs +244 -0
- package/scripts/workflow-core.mjs +165 -0
- package/scripts/workflow-plan-files.mjs +249 -0
- package/scripts/workflow-recommendation.mjs +335 -0
- package/scripts/workflow-state.mjs +113 -0
- package/skills/commands/auto/SKILL.md +37 -71
- package/skills/commands/build/SKILL.md +67 -0
- package/skills/commands/clean/SKILL.md +10 -8
- package/skills/commands/commit/SKILL.md +8 -4
- package/skills/commands/help/SKILL.md +19 -11
- package/skills/commands/idea/SKILL.md +55 -0
- package/skills/commands/init/SKILL.md +6 -3
- package/skills/commands/loop/SKILL.md +6 -5
- package/skills/commands/plan/SKILL.md +116 -0
- package/skills/commands/prd/SKILL.md +20 -15
- package/skills/commands/verify/SKILL.md +32 -9
- package/skills/commands/wiki/SKILL.md +59 -0
- package/skills/hello-review/SKILL.md +9 -0
- package/skills/hello-subagent/SKILL.md +4 -3
- package/skills/hello-ui/SKILL.md +36 -8
- package/skills/hello-verify/SKILL.md +10 -2
- package/skills/helloagents/SKILL.md +24 -13
- package/templates/DESIGN.md +25 -4
- package/templates/STATE.md +3 -0
- package/templates/plans/contract.json +48 -0
- package/templates/plans/plan.md +23 -0
- package/templates/plans/tasks.md +3 -3
- package/skills/commands/design/SKILL.md +0 -108
- package/skills/commands/review/SKILL.md +0 -16
- package/templates/plans/design.md +0 -14
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
{
|
|
10
10
|
"name": "helloagents",
|
|
11
11
|
"description": "Quality-driven orchestration kernel for AI CLIs: intelligent routing, quality verification, safety guards, and notifications",
|
|
12
|
-
"version": "3.0.
|
|
12
|
+
"version": "3.0.7",
|
|
13
13
|
"source": "./",
|
|
14
14
|
"author": {
|
|
15
15
|
"name": "HelloWind",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "helloagents",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.7",
|
|
4
4
|
"description": "HelloAGENTS — The orchestration kernel that makes any AI CLI smarter. Adds intelligent routing, quality verification (Ralph Loop), safety guards, and notifications.",
|
|
5
5
|
"author": "HelloWind",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "helloagents",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.7",
|
|
4
4
|
"description": "HelloAGENTS — Quality-driven orchestration kernel for AI CLIs with intelligent routing, quality verification (Ralph Loop), safety guards, and notifications.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "HelloWind",
|
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
**Quality-driven orchestration kernel for AI coding CLIs — 14 auto-activated skills, process discipline, and checklist gating.**
|
|
10
10
|
|
|
11
|
-
[](./package.json)
|
|
12
12
|
[](https://www.npmjs.com/package/helloagents)
|
|
13
13
|
[](./package.json)
|
|
14
14
|
[](./skills)
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
<summary><strong>Click to expand</strong></summary>
|
|
34
34
|
|
|
35
35
|
- [🎯 Why HelloAGENTS?](#-why-helloagents)
|
|
36
|
+
- [🆚 Compared with v2.3.8](#-compared-with-v238)
|
|
36
37
|
- [✨ Core Features](#-core-features)
|
|
37
38
|
- [🚀 Quick Start](#-quick-start)
|
|
38
39
|
- [🔄 Installation Lifecycle & File Writes](#-installation-lifecycle--file-writes)
|
|
@@ -90,6 +91,25 @@ HelloAGENTS fixes that. It's an orchestration layer that sits on top of your AI
|
|
|
90
91
|
- ❌ Simple one-off questions (HelloAGENTS adds process overhead)
|
|
91
92
|
- ❌ Non-coding tasks (optimized for software engineering)
|
|
92
93
|
|
|
94
|
+
## 🆚 Compared with v2.3.8
|
|
95
|
+
|
|
96
|
+
If the last version you used seriously was `v2.3.8`, this is not a minor update. The current line is a full product-line reset.
|
|
97
|
+
|
|
98
|
+
| Dimension | v2.3.8 | Local `v3.0.7` |
|
|
99
|
+
|-----------|--------|----------------|
|
|
100
|
+
| **Implementation base** | Python package plus mixed scripts/rules | Pure Node.js + Markdown runtime built around `cli.mjs`, `bootstrap*.md`, `skills/`, and `scripts/` |
|
|
101
|
+
| **Product shape** | More like a multi-CLI management tool plus prompt protocol bundle | More like a quality orchestration kernel for AI CLIs, centered on routing, gating, verification, and resumable execution |
|
|
102
|
+
| **Installation model** | pip / uv / npx / shell installers in parallel | npm-first; install the package, then deploy explicitly to Claude / Gemini / Codex |
|
|
103
|
+
| **CLI strategy** | 6 targets with uneven capabilities | Focused on 3 primary surfaces: Claude Code, Gemini CLI, and Codex CLI |
|
|
104
|
+
| **Workflow model** | R0/R1/R2 routing plus older design/develop semantics | ROUTE/TIER → SPEC → PLAN → BUILD → VERIFY → CONSOLIDATE routed kernel |
|
|
105
|
+
| **Command surface** | 15 commands including `~exec`, `~rollback`, `~rlm`, `~validatekb` | 12 focused commands such as `~idea`, `~plan`, `~build`, `~verify`, `~prd`, `~loop`, and `~wiki` |
|
|
106
|
+
| **Quality model** | More distributed rules, more reliance on prose | 14 auto-activated skills + checklist gating + Ralph Loop + structured evidence |
|
|
107
|
+
| **Project state** | KB felt auxiliary | `.helloagents/` is now the activation boundary; `STATE.md`, plan packages, `DESIGN.md`, and `contract.json` anchor the workflow |
|
|
108
|
+
| **KB storage** | Project-local only | Project-local by default, plus `project_store_mode=repo-shared` for sharing stable KB/plan assets across git worktrees |
|
|
109
|
+
| **Codex integration** | Earlier compatibility layers and legacy paths | Standby = injected rules + local links; global = native local-plugin chain with less noise and drift |
|
|
110
|
+
|
|
111
|
+
In one sentence: `v2.3.8` was closer to "workflow glue for multiple CLIs"; `v3.0.7` is a real orchestration kernel that unifies quality rules, plan artifacts, verification evidence, and installation lifecycle into one operating model.
|
|
112
|
+
|
|
93
113
|
## ✨ Core Features
|
|
94
114
|
|
|
95
115
|
HelloAGENTS enforces quality through three mechanisms working together:
|
|
@@ -136,10 +156,32 @@ L1 blocks destructive commands (`rm -rf /`, `git push --force`, `DROP DATABASE`)
|
|
|
136
156
|
|
|
137
157
|
**⚡ Structured Workflow**
|
|
138
158
|
|
|
139
|
-
Simple tasks
|
|
159
|
+
Simple tasks stay fast. Complex tasks use a routed kernel workflow: ROUTE/TIER → SPEC → PLAN → BUILD → VERIFY → CONSOLIDATE, with explicit command lanes for ideation, planning, implementation, and validation.
|
|
140
160
|
|
|
141
161
|
**Your gain:** proportional effort — quick tasks stay fast, complex tasks get full process.
|
|
142
162
|
|
|
163
|
+
</td>
|
|
164
|
+
</tr>
|
|
165
|
+
<tr>
|
|
166
|
+
<td width="50%" valign="top">
|
|
167
|
+
<img src="./readme_images/02-feature-icon-installer.svg" width="48" align="left">
|
|
168
|
+
|
|
169
|
+
**🧠 Structured Plan Artifacts**
|
|
170
|
+
|
|
171
|
+
Complex tasks no longer rely on one paragraph of planning prose. They land as `requirements.md`, `plan.md`, `tasks.md`, `contract.json`, `STATE.md`, and `DESIGN.md` when needed.
|
|
172
|
+
|
|
173
|
+
**Your gain:** routing, implementation, verification, and closeout all move around the same set of facts instead of drifting across free-form summaries.
|
|
174
|
+
|
|
175
|
+
</td>
|
|
176
|
+
<td width="50%" valign="top">
|
|
177
|
+
<img src="./readme_images/05-feature-icon-compat.svg" width="48" align="left">
|
|
178
|
+
|
|
179
|
+
**🗂️ Local / Shared Project Storage**
|
|
180
|
+
|
|
181
|
+
By default, KB and plan packages stay in the project's local `.helloagents/`. If you work with multiple worktrees, `project_store_mode=repo-shared` moves the stable project memory to `~/.helloagents/projects/<repo-key>/`.
|
|
182
|
+
|
|
183
|
+
**Your gain:** local runtime isolation stays intact while stable KB and plan assets stop fragmenting across worktrees.
|
|
184
|
+
|
|
143
185
|
</td>
|
|
144
186
|
</tr>
|
|
145
187
|
</table>
|
|
@@ -226,7 +268,7 @@ Codex CLI does not need a manual plugin command. `helloagents --global` now inst
|
|
|
226
268
|
```
|
|
227
269
|
💡【HelloAGENTS】- Help
|
|
228
270
|
|
|
229
|
-
Available commands: ~auto, ~
|
|
271
|
+
Available commands: ~idea, ~auto, ~plan, ~build, ~prd, ~loop, ~wiki, ~init, ~test, ~verify, ~commit, ~clean, ~help
|
|
230
272
|
|
|
231
273
|
Auto-activated skills (14): hello-ui, hello-api, hello-security, hello-test, hello-verify, hello-errors, hello-perf, hello-data, hello-arch, hello-debug, hello-subagent, hello-review, hello-write, hello-reflect
|
|
232
274
|
```
|
|
@@ -241,7 +283,7 @@ Auto-activated skills (14): hello-ui, hello-api, hello-security, hello-test, hel
|
|
|
241
283
|
~auto "Add user authentication with JWT"
|
|
242
284
|
|
|
243
285
|
# Want to review the plan first?
|
|
244
|
-
~
|
|
286
|
+
~plan "Refactor the payment module"
|
|
245
287
|
```
|
|
246
288
|
|
|
247
289
|
## 🔄 Installation Lifecycle & File Writes
|
|
@@ -280,8 +322,10 @@ All commands run inside AI chat with the `~` prefix:
|
|
|
280
322
|
|
|
281
323
|
| Command | Purpose |
|
|
282
324
|
|---------|---------|
|
|
283
|
-
| `~
|
|
284
|
-
| `~
|
|
325
|
+
| `~idea` | Lightweight ideation — compare directions and explore options without writing files |
|
|
326
|
+
| `~auto` | Automatic orchestration — chooses the right path across ideation / planning / build / verify / PRD, and reuses an active plan package before reopening a new lane |
|
|
327
|
+
| `~plan` | Structured planning — requirement gathering + solution convergence + plan package |
|
|
328
|
+
| `~build` | Execution workflow — implement from the current request or an existing plan package |
|
|
285
329
|
| `~prd` | Complete PRD — 13-dimension brainstorm-style exploration, generates product requirements |
|
|
286
330
|
| `~loop` | Autonomous iteration — set a target + metric, AI loops until goal is met |
|
|
287
331
|
|
|
@@ -290,18 +334,23 @@ All commands run inside AI chat with the `~` prefix:
|
|
|
290
334
|
| Command | Purpose |
|
|
291
335
|
|---------|---------|
|
|
292
336
|
| `~test` | Write complete tests (TDD: Red → Green → Refactor) |
|
|
293
|
-
| `~verify` |
|
|
294
|
-
| `~review` | Code review with severity classification |
|
|
337
|
+
| `~verify` | Unified verification entry — review, lint, typecheck, test, build, and fix loops |
|
|
295
338
|
|
|
296
339
|
**Utility Commands:**
|
|
297
340
|
|
|
298
341
|
| Command | Purpose |
|
|
299
342
|
|---------|---------|
|
|
300
|
-
| `~
|
|
343
|
+
| `~wiki` | Create or sync the project knowledge base only (`.helloagents/`) |
|
|
344
|
+
| `~init` | Full project bootstrap: KB + project-local carrier files |
|
|
301
345
|
| `~commit` | Generate conventional commit message + KB sync |
|
|
302
346
|
| `~clean` | Archive completed plans, clean temp files |
|
|
303
347
|
| `~help` | Show all commands and current config |
|
|
304
348
|
|
|
349
|
+
Compatibility aliases:
|
|
350
|
+
- `~design` → `~plan`
|
|
351
|
+
- `~do` → `~build`
|
|
352
|
+
- `~review` → `~verify` (review-priority mode)
|
|
353
|
+
|
|
305
354
|
## 🔧 Configuration
|
|
306
355
|
|
|
307
356
|
Config file: `~/.helloagents/helloagents.json` (auto-created on install)
|
|
@@ -316,6 +365,7 @@ Only include keys you want to override — missing keys use defaults.
|
|
|
316
365
|
"ralph_loop_enabled": true,
|
|
317
366
|
"guard_enabled": true,
|
|
318
367
|
"kb_create_mode": 1,
|
|
368
|
+
"project_store_mode": "local",
|
|
319
369
|
"commit_attribution": "",
|
|
320
370
|
"install_mode": "standby"
|
|
321
371
|
}
|
|
@@ -328,7 +378,8 @@ Only include keys you want to override — missing keys use defaults.
|
|
|
328
378
|
| `notify_level` | `0` | `0`=off, `1`=desktop, `2`=sound, `3`=both |
|
|
329
379
|
| `ralph_loop_enabled` | `true` | Auto-run verification after task completion |
|
|
330
380
|
| `guard_enabled` | `true` | Block dangerous commands |
|
|
331
|
-
| `kb_create_mode` | `1` | `0`=off, `1`=auto on coding tasks, `2`=always |
|
|
381
|
+
| `kb_create_mode` | `1` | `0`=off, `1`=auto on coding tasks in activated projects or global mode, `2`=always in activated projects or global mode |
|
|
382
|
+
| `project_store_mode` | `"local"` | `"local"` = keep KB/plan files in project-local `.helloagents/`; `"repo-shared"` = keep local `.helloagents/` only for activation/STATE/runtime artifacts and move KB/plan files to `~/.helloagents/projects/<repo-key>/` |
|
|
332
383
|
| `commit_attribution` | `""` | Empty = no attribution. Set text to append to commit messages |
|
|
333
384
|
| `install_mode` | `"standby"` | `"standby"` = per-project activation (lite rules), `"global"` = full rules for all projects |
|
|
334
385
|
|
|
@@ -355,6 +406,11 @@ helloagents --standby
|
|
|
355
406
|
{ "kb_create_mode": 0 }
|
|
356
407
|
```
|
|
357
408
|
|
|
409
|
+
**Share KB and plan packages across multiple worktrees:**
|
|
410
|
+
```json
|
|
411
|
+
{ "project_store_mode": "repo-shared" }
|
|
412
|
+
```
|
|
413
|
+
|
|
358
414
|
**Enable desktop + sound notifications:**
|
|
359
415
|
```json
|
|
360
416
|
{ "notify_level": 3 }
|
|
@@ -369,22 +425,33 @@ helloagents --standby
|
|
|
369
425
|
|
|
370
426
|
## ⚙️ How It Works
|
|
371
427
|
|
|
372
|
-
**Short version:** HelloAGENTS selects execution depth based on task
|
|
428
|
+
**Short version:** HelloAGENTS selects execution depth based on task type, risk, and project state. In standby mode, unactivated projects keep a lightweight rule set: safety, completion constraints, a compact quality floor, and explicit `~command` lanes. Once the project is activated through `.helloagents/`, or when global mode is enabled, HelloAGENTS switches to the full routed kernel workflow with explicit ideation, planning, build, verification, and consolidation stages.
|
|
373
429
|
|
|
374
|
-
**The
|
|
430
|
+
**The routed 6-stage kernel:**
|
|
375
431
|
|
|
376
|
-
1. **
|
|
377
|
-
2. **
|
|
378
|
-
3. **PLAN** — Mark
|
|
379
|
-
4. **
|
|
380
|
-
5. **
|
|
432
|
+
1. **ROUTE / TIER** — Decide whether the task belongs in `~idea`, `~plan`, `~build`, `~verify`, `~prd`, or `~auto`
|
|
433
|
+
2. **SPEC** — Clarify goals, constraints, and success criteria
|
|
434
|
+
3. **PLAN** — Mark required quality skills and prepare artifacts such as `requirements.md`, `plan.md`, and `tasks.md`
|
|
435
|
+
4. **BUILD** — Implement with TDD (test → code → refactor), verify incrementally
|
|
436
|
+
5. **VERIFY** — Run Ralph Loop, review diffs when needed, and collect delivery checklists
|
|
437
|
+
6. **CONSOLIDATE** — Update `STATE.md`, sync KB artifacts, and archive completed plan packages
|
|
381
438
|
|
|
382
|
-
**
|
|
383
|
-
-
|
|
384
|
-
-
|
|
439
|
+
**Delivery Tier:**
|
|
440
|
+
- `T0` — read-only exploration and idea comparison
|
|
441
|
+
- `T1` — low-risk focused fixes or explicit verification
|
|
442
|
+
- `T2` — multi-file features, new projects, or work that needs structured artifacts
|
|
443
|
+
- `T3` — high-risk or irreversible chains such as auth, security, payment, database, or production release work
|
|
385
444
|
|
|
386
|
-
**
|
|
387
|
-
-
|
|
445
|
+
**Routing rules:**
|
|
446
|
+
- Exploration / compare options → `~idea`
|
|
447
|
+
- Simple tasks (single file, clear fix) → Direct execution or `~build`
|
|
448
|
+
- Complex tasks (3+ files, architecture change, new project) → `~plan`, `~auto`, or `~prd`
|
|
449
|
+
- Review / validation requests → `~verify`
|
|
450
|
+
|
|
451
|
+
**Quality rules and skills by task type:**
|
|
452
|
+
- UI / frontend / visual interaction work always follows the active bootstrap carrier's shared UI kernel
|
|
453
|
+
- In activated projects, global mode, or explicit UI workflow commands, `hello-ui` adds deeper design-contract execution, design-system mapping, and visual validation
|
|
454
|
+
- When a UI `contract.json` explicitly asks for heavier UI assurance, HelloAGENTS keeps the default path light and only then adds optional `.helloagents/.ralph-advisor.json` and `.helloagents/.ralph-visual.json` evidence
|
|
388
455
|
- Touching API endpoints? → `hello-api` activates (REST conventions, validation, error format)
|
|
389
456
|
- Any code change? → `hello-test`, `hello-verify`, `hello-review` activate
|
|
390
457
|
|
|
@@ -394,10 +461,12 @@ HelloAGENTS supports two installation modes with different installation methods:
|
|
|
394
461
|
|
|
395
462
|
| Mode | Install Method | Rules | Skills | Best For |
|
|
396
463
|
|------|---------------|-------|--------|----------|
|
|
397
|
-
| **Standby** (default) | `helloagents install <target> --standby` or `helloagents install --all --standby` | `bootstrap-lite.md` (lite rules) | `~command` on demand,
|
|
464
|
+
| **Standby** (default) | `helloagents install <target> --standby` or `helloagents install --all --standby` | `bootstrap-lite.md` (lite rules with compact quality floor, shared UI kernel, safety, and completion constraints) | `~command` on demand; before activation, UI tasks still follow the shared UI kernel; after `.helloagents/`, the full workflow activates | Selective use, keeping other projects unaffected |
|
|
398
465
|
| **Global** | Manual plugins for Claude/Gemini; native local-plugin auto-install for Codex | `bootstrap.md` (full rules) | 14 skills auto-activate | All-in on HelloAGENTS across every project |
|
|
399
466
|
|
|
400
|
-
Standby mode injects rules into `~/.claude/CLAUDE.md`, `~/.gemini/GEMINI.md`, and `~/.codex/AGENTS.md`; Codex then
|
|
467
|
+
Standby mode injects rules into `~/.claude/CLAUDE.md`, `~/.gemini/GEMINI.md`, and `~/.codex/AGENTS.md`; Codex then keeps `developer_instructions` in `~/.codex/config.toml` as the managed fallback so the home `AGENTS.md` remains the primary baseline. During a managed Codex install, HelloAGENTS temporarily removes any existing `model_instructions_file` entry because that setting can shadow the `AGENTS.md` chain; cleanup restores the user's original value. Each CLI also gets a `helloagents` package-root symlink. Claude Code and Gemini still use hooks where their host surfaces support quiet injection well. Codex deliberately does **not** enable HelloAGENTS hooks by default: the latest pre-source shows hook lifecycle output in TUI and does not honor `suppressOutput` as a true silent injection path, so Codex relies on the injected rules file plus the local symlink/native plugin layout instead. In global mode, Claude Code uses plugin hooks from `.claude-plugin/plugin.json`, Gemini loads `bootstrap.md` via `contextFileName` plus extension hooks, and Codex uses the native local-plugin chain (marketplace + local plugin root + cache + plugin enablement in `config.toml`) plus a synced `~/.codex/AGENTS.md` home baseline, still without plugin hooks.
|
|
468
|
+
|
|
469
|
+
In standby mode, `.helloagents/` is the activation boundary. Before activation, the lite carrier does **not** run the full 6-stage kernel or semantic auto-routing; it keeps the lightweight execution rules, explicit `~command` entry points, and minimum quality/completion guardrails. Once `.helloagents/` exists, the active project switches to the full project workflow and `bootstrap.md` becomes the runtime source of truth.
|
|
401
470
|
|
|
402
471
|
Bulk switch via CLI: `helloagents --global` or `helloagents --standby`
|
|
403
472
|
|
|
@@ -405,39 +474,45 @@ Re-running the same mode command is also valid. It refreshes the current mode's
|
|
|
405
474
|
|
|
406
475
|
## 📚 Usage Guide
|
|
407
476
|
|
|
408
|
-
###
|
|
477
|
+
### Core Workflow Lanes
|
|
409
478
|
|
|
410
479
|
| Mode | Description | When to use |
|
|
411
480
|
|------|-------------|-------------|
|
|
412
|
-
| `~
|
|
413
|
-
| `~
|
|
481
|
+
| `~idea` | Lightweight ideation only, no files written | Need help choosing a direction without activating full project flow |
|
|
482
|
+
| `~plan` | Interactive planning only, generates a plan package | Want to review the plan before coding |
|
|
483
|
+
| `~build` | Implementation workflow from the current task or existing plan package | Requirement is clear and you want execution |
|
|
484
|
+
| `~verify` | Verification / review workflow | Want audit, checks, and fix loops |
|
|
485
|
+
| `~auto` | Automatic orchestration across the lanes above | Want HelloAGENTS to choose the right path end-to-end |
|
|
414
486
|
| `~prd` | 13-dimension PRD generation | Need comprehensive product requirements |
|
|
415
487
|
|
|
416
|
-
Typical pattern: `~
|
|
488
|
+
Typical pattern: `~idea` first to compare directions, then `~plan` to lock a solution, then `~build`, then `~verify`. Or just `~auto` for one-shot orchestration. If the project already has an active plan package, `~auto` should reuse that workflow state before reopening ideation or planning. For UI work, the decision priority is always `plan.md` / PRD UI decisions → `DESIGN.md` → generic UI rules.
|
|
417
489
|
|
|
418
490
|
### Quality Verification (Ralph Loop)
|
|
419
491
|
|
|
420
492
|
After every task, Ralph Loop auto-runs your project's verification commands:
|
|
421
|
-
- Priority: `.helloagents/verify.yaml` → `package.json` scripts → auto-detected
|
|
493
|
+
- Priority: logical `.helloagents/verify.yaml` (`project_store_mode=repo-shared` resolves it from the shared project store) → `package.json` scripts → auto-detected
|
|
422
494
|
- All pass? → Collect skill checklists → Verify → Done
|
|
423
495
|
- Any fail? → Reflect → Fix → Re-run (circuit breaker after 3 failures)
|
|
496
|
+
- Completion is also held back if the active plan package still has open tasks, missing required artifacts, or unreplaced template placeholders
|
|
424
497
|
|
|
425
498
|
### Knowledge Base (`.helloagents/`)
|
|
426
499
|
|
|
427
|
-
`~
|
|
500
|
+
`~wiki` creates or syncs the project knowledge base only. `~init` is the fuller bootstrap: it also writes project-local carrier files (`AGENTS.md`, `CLAUDE.md`, `.gemini/GEMINI.md`), refreshes the project `skills/helloagents` link, and appends the related ignore rules. In standby mode, the presence of the local `.helloagents/` is what promotes the current project into the full project workflow; project-local carrier files are optional.
|
|
501
|
+
|
|
502
|
+
By default, KB and plan files live in the project's local `.helloagents/`. If `project_store_mode = "repo-shared"`, the local `.helloagents/` directory keeps only the activation signal, `STATE.md`, and runtime artifacts such as `.ralph-*`, while `context.md`, `guidelines.md`, `DESIGN.md`, `verify.yaml`, `modules/`, `plans/`, and `archive/` move to `~/.helloagents/projects/<repo-key>/` so multiple worktrees of the same git repo can share stable project memory.
|
|
428
503
|
|
|
429
|
-
It is created and continuously updated for long-running project workflows such as `~init`, `~
|
|
504
|
+
`STATE.md` is a project-level recovery snapshot, not a universal memory file for every interaction. It is created and continuously updated for long-running project workflows such as `~wiki`, `~init`, `~plan`, `~build`, `~auto`, `~prd`, and `~loop`; updated when already present for verification/review style tasks; and intentionally not created for one-off read-only interactions such as `~help`.
|
|
430
505
|
|
|
431
506
|
| File | Purpose |
|
|
432
507
|
|------|---------|
|
|
433
|
-
| `STATE.md` | Project-level recovery snapshot (≤
|
|
434
|
-
| `DESIGN.md` |
|
|
508
|
+
| `STATE.md` | Project-level recovery snapshot (≤70 lines, survives compression as a resumable snapshot) |
|
|
509
|
+
| `DESIGN.md` | Project-level UI contract (design system, component patterns, state coverage, accessibility) |
|
|
435
510
|
| `context.md` | Project architecture, tech stack, conventions |
|
|
436
511
|
| `guidelines.md` | Non-obvious coding rules |
|
|
437
512
|
| `verify.yaml` | Verification commands |
|
|
438
513
|
| `CHANGELOG.md` | Change history |
|
|
439
514
|
| `modules/*.md` | Module documentation + experience |
|
|
440
|
-
| `plans/` | Active plan packages |
|
|
515
|
+
| `plans/` | Active plan packages (`requirements.md`, `plan.md`, `tasks.md`, `contract.json`) |
|
|
441
516
|
| `archive/` | Completed plan packages |
|
|
442
517
|
|
|
443
518
|
### Smart Commit (`~commit`)
|
|
@@ -483,7 +558,7 @@ The test suite validates:
|
|
|
483
558
|
|
|
484
559
|
**A:** Everything. The v3 line is a complete rewrite:
|
|
485
560
|
- Python package → pure Node.js/Markdown architecture
|
|
486
|
-
- 15 commands →
|
|
561
|
+
- 15 commands → 12 commands + 14 auto-activated quality skills
|
|
487
562
|
- 6 CLI targets → 3 (Claude Code + Codex CLI + Gemini CLI)
|
|
488
563
|
- New: checklist gate control, guard system, ~prd, ~loop, ~verify, design system generation
|
|
489
564
|
- See [Version History](#-version-history) for full details.
|
|
@@ -499,7 +574,7 @@ The test suite validates:
|
|
|
499
574
|
<summary><strong>Q: What are the 14 quality skills?</strong></summary>
|
|
500
575
|
|
|
501
576
|
**A:** They auto-activate based on task type:
|
|
502
|
-
- **hello-ui**: UI
|
|
577
|
+
- **hello-ui**: deep UI implementation and validation (contracts, design-system mapping, accessibility, responsive, animation)
|
|
503
578
|
- **hello-api**: API design (REST, validation, error format, rate limiting)
|
|
504
579
|
- **hello-security**: Security (auth, input validation, XSS/CSRF, secrets management)
|
|
505
580
|
- **hello-test**: Testing (TDD workflow, boundary cases, AAA pattern)
|
|
@@ -520,13 +595,13 @@ Subagents may skip workflow packaging such as routing, interaction flow, and out
|
|
|
520
595
|
<details>
|
|
521
596
|
<summary><strong>Q: What is standby vs global mode?</strong></summary>
|
|
522
597
|
|
|
523
|
-
**A:** Standby mode (default) deploys lite rules to the targets you choose, typically with `helloagents install <target> --standby` or `helloagents install --all --standby`.
|
|
598
|
+
**A:** Standby mode (default) deploys lite rules to the targets you choose, typically with `helloagents install <target> --standby` or `helloagents install --all --standby`. A project enters the full project flow once it has `.helloagents/`, usually via `~wiki` (KB only) or `~init` (full bootstrap). Global mode uses each CLI's native plugin/extension system for full rules everywhere; deploy it with `helloagents install <target> --global`, `helloagents install --all --global`, or bulk-switch with `helloagents --global`.
|
|
524
599
|
</details>
|
|
525
600
|
|
|
526
601
|
<details>
|
|
527
602
|
<summary><strong>Q: Where does project knowledge go?</strong></summary>
|
|
528
603
|
|
|
529
|
-
**A:**
|
|
604
|
+
**A:** By default, in the project-local `.helloagents/` directory. It can be created by `~wiki` (KB only) or `~init` (full project bootstrap), then auto-synced on code changes according to `kb_create_mode`. If `project_store_mode = "repo-shared"`, the local `.helloagents/` keeps only the activation signal, `STATE.md`, and `.ralph-*` runtime artifacts, while KB and plan files move to `~/.helloagents/projects/<repo-key>/`. `STATE.md` is used as a concise recovery snapshot for long-running workflows, not as a catch-all memory file for every interaction.
|
|
530
605
|
</details>
|
|
531
606
|
|
|
532
607
|
<details>
|
|
@@ -589,7 +664,7 @@ Subagents may skip workflow packaging such as routing, interaction flow, and out
|
|
|
589
664
|
- Verify installation: `npm list -g helloagents`
|
|
590
665
|
- Claude Code: check `~/.claude/CLAUDE.md` contains HelloAGENTS markers
|
|
591
666
|
- Gemini CLI: check `~/.gemini/GEMINI.md` contains HelloAGENTS markers
|
|
592
|
-
- Codex CLI: check `~/.codex/
|
|
667
|
+
- Codex CLI: check `~/.codex/AGENTS.md` contains HelloAGENTS markers, `~/.codex/config.toml` still has HelloAGENTS `developer_instructions` and `notify`, and no unexpected `model_instructions_file` is shadowing the managed baseline
|
|
593
668
|
- Restart your CLI
|
|
594
669
|
|
|
595
670
|
---
|
|
@@ -643,7 +718,32 @@ Subagents may skip workflow packaging such as routing, interaction flow, and out
|
|
|
643
718
|
|
|
644
719
|
## 📈 Version History
|
|
645
720
|
|
|
646
|
-
### v3.0.
|
|
721
|
+
### v3.0.7 (current)
|
|
722
|
+
|
|
723
|
+
**What the current line now delivers relative to `v2.3.8`:**
|
|
724
|
+
- ✨ Full rewrite from a Python package to a Node.js/Markdown orchestration kernel, including install flow, runtime injection, skill system, and verification chain
|
|
725
|
+
- ✨ Replaced the older layered routing / design-develop model with one routed kernel: ROUTE/TIER → SPEC → PLAN → BUILD → VERIFY → CONSOLIDATE
|
|
726
|
+
- ✨ Re-centered the command surface around `~idea`, `~plan`, `~build`, `~verify`, `~prd`, `~loop`, and `~wiki`, plus 14 auto-activated quality skills
|
|
727
|
+
- ✨ Turned project artifacts into first-class workflow facts: `STATE.md`, `DESIGN.md`, `requirements.md`, `plan.md`, `tasks.md`, `contract.json`, and `.ralph-*` evidence
|
|
728
|
+
- ✨ Rebuilt installation around standby/global dual-mode deployment; Codex now uses the native local-plugin chain while Claude/Gemini keep host-native integration
|
|
729
|
+
- ✨ Added `project_store_mode=repo-shared`, so multiple worktrees of one git repo can share stable KB and plan assets while local `.helloagents/` still isolates activation and runtime state
|
|
730
|
+
|
|
731
|
+
### v3.0.4
|
|
732
|
+
|
|
733
|
+
**Standby and runtime boundaries:**
|
|
734
|
+
- 🔧 Clarified the activation boundary relative to `v3.0.3`: the full 6-stage kernel stays in `bootstrap.md`, while `bootstrap-lite.md` is treated as the standby carrier before project activation
|
|
735
|
+
- ✨ Solidified standby, unactivated projects with a compact quality floor so lightweight mode still keeps modern stack, performance, and UI-quality baselines
|
|
736
|
+
- 🔧 Refined bootstrap terminology and runtime wording for more precise, professional guidance without changing the existing guardrail model
|
|
737
|
+
|
|
738
|
+
### v3.0.3
|
|
739
|
+
|
|
740
|
+
**Workflow and KB activation:**
|
|
741
|
+
- ✨ Added `~wiki` for creating or syncing `.helloagents/` without writing project-local carrier files
|
|
742
|
+
- 🔧 Clarified the activation boundary: in standby mode, `.helloagents/` is the actual project activation signal; project-local carrier files remain optional and belong to `~init`
|
|
743
|
+
- 🔧 Refined `kb_create_mode` wording across bootstrap, help text, and README so it only describes sync timing inside activated projects or global mode
|
|
744
|
+
- 🧪 Added routing coverage for `~wiki` and kept standby `.helloagents/` activation behavior under test
|
|
745
|
+
|
|
746
|
+
### v3.0.2
|
|
647
747
|
|
|
648
748
|
**Fixes and verification:**
|
|
649
749
|
- 🔧 Removed the Codex-only static runtime-context block that had been reintroduced into generated `AGENTS.md` carriers in standby/global installs
|
|
@@ -664,7 +764,7 @@ Subagents may skip workflow packaging such as routing, interaction flow, and out
|
|
|
664
764
|
|
|
665
765
|
**Breaking Changes:**
|
|
666
766
|
- 🔴 Complete rewrite: Python package → pure Node.js/Markdown architecture. `pip`/`uv` installation no longer available
|
|
667
|
-
- 🔴 Commands renamed/removed: `~plan` → `~
|
|
767
|
+
- 🔴 Commands renamed/removed: `~design` → `~plan`, `~review` → `~verify`, `~do` → `~build`, removed `~exec`/`~rollback`/`~rlm`/`~status`/`~validatekb`/`~upgradekb`/`~cleanplan`
|
|
668
768
|
- 🔴 Configuration keys changed from uppercase to lowercase. Removed: `BILINGUAL_COMMIT`, `EVAL_MODE`, `UPDATE_CHECK`, `CSV_BATCH_MAX`
|
|
669
769
|
|
|
670
770
|
**New Features:**
|
|
@@ -676,12 +776,14 @@ Subagents may skip workflow packaging such as routing, interaction flow, and out
|
|
|
676
776
|
- ✨ `~verify` command: auto-detect and run all verification commands
|
|
677
777
|
- ✨ Guard system (`guard.mjs`): L1 blocking for destructive commands + L2 advisory for security patterns
|
|
678
778
|
- ✨ Standby/Global mode: `install_mode` config for per-project or global activation
|
|
679
|
-
- ✨ Flow state management (`STATE.md`):
|
|
680
|
-
- ✨ Design system generation (`DESIGN.md`): auto-created for UI projects
|
|
681
|
-
- ✨ Plan package system: `requirements.md` + `
|
|
779
|
+
- ✨ Flow state management (`STATE.md`): recovery snapshot for compaction/resume handoff (≤70 lines)
|
|
780
|
+
- ✨ Design system generation (`DESIGN.md`): auto-created for UI projects as a project-level contract
|
|
781
|
+
- ✨ Plan package system: `requirements.md` + `plan.md` + `tasks.md` + `contract.json`
|
|
782
|
+
- ✨ Optional advisor contract/evidence: only for T3 / UI / high-risk flows, via `contract.json` + `.helloagents/.ralph-advisor.json`
|
|
783
|
+
- ✨ Optional visual validation evidence: only when the UI contract explicitly requires it, via `contract.json` + `.helloagents/.ralph-visual.json`
|
|
682
784
|
|
|
683
785
|
**Architecture:**
|
|
684
|
-
- 📦
|
|
786
|
+
- 📦 Routed 6-stage kernel: ROUTE/TIER → SPEC → PLAN → BUILD → VERIFY → CONSOLIDATE
|
|
685
787
|
- 📦 Simplified configuration: 8 lowercase keys with sensible defaults
|
|
686
788
|
- 📦 Dual-mode installation: standby (explicit non-plugin deploy) / global (plugin/extension)
|
|
687
789
|
- 📦 Modular script architecture: `cli-utils.mjs` (shared utilities), `notify-ui.mjs` (cross-platform sound/desktop), `guard.mjs` (security), `ralph-loop.mjs` (verification)
|