helloagents 2.2.7 → 2.2.8

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 +11 -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.7-orange.svg)](./pyproject.toml)
11
+ [![Version](https://img.shields.io/badge/version-2.2.8-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)
@@ -175,7 +175,7 @@ L0 user memory (global preferences), L1 project knowledge base (structured docs
175
175
 
176
176
  npx helloagents
177
177
 
178
- > Installs the Python package and launches an interactive menu. You can also specify directly: `npx helloagents install codex`
178
+ > Installs the Python package and launches an interactive menu. You can also specify directly: `npx helloagents install codex` (or use `npx -y` to auto-download without prompting)
179
179
 
180
180
  > Requires Python >= 3.10. After first install, use the native `helloagents` command directly.
181
181
 
@@ -250,7 +250,7 @@ L0 user memory (global preferences), L1 project knowledge base (structured docs
250
250
  # Windows PowerShell
251
251
  irm https://raw.githubusercontent.com/hellowind777/helloagents/main/install.ps1 | iex
252
252
 
253
- # npx
253
+ # npx (or use npx -y to auto-download without prompting)
254
254
  npx helloagents install codex
255
255
 
256
256
  # UV
@@ -274,7 +274,7 @@ L0 user memory (global preferences), L1 project knowledge base (structured docs
274
274
  # Windows PowerShell
275
275
  irm https://raw.githubusercontent.com/hellowind777/helloagents/main/install.ps1 | iex
276
276
 
277
- # npx
277
+ # npx (or use npx -y to auto-download without prompting)
278
278
  npx helloagents install claude
279
279
 
280
280
  # UV
@@ -298,7 +298,7 @@ To install from the `beta` branch, append `@beta` to the repository URL:
298
298
  # Windows PowerShell
299
299
  $env:HELLOAGENTS_BRANCH="beta"; irm https://raw.githubusercontent.com/hellowind777/helloagents/beta/install.ps1 | iex
300
300
 
301
- # npx
301
+ # npx (or use npx -y to auto-download without prompting)
302
302
  npx helloagents@beta
303
303
 
304
304
  # UV
@@ -321,7 +321,7 @@ To install from the `beta` branch, append `@beta` to the repository URL:
321
321
 
322
322
  - AGENTS.md: router and workflow protocol
323
323
  - SKILL.md: skill discovery metadata for CLI targets
324
- - pyproject.toml: package metadata (v2.2.7)
324
+ - pyproject.toml: package metadata (v2.2.8)
325
325
  - helloagents/cli.py: installer entry
326
326
  - helloagents/functions: workflow commands
327
327
  - helloagents/stages: analyze, design, develop
@@ -386,7 +386,11 @@ These commands run inside AI chat, not your system shell.
386
386
 
387
387
  ## Version History
388
388
 
389
- ### v2.2.7 (current)
389
+ ### v2.2.8 (current)
390
+
391
+ - **AGENTS.md:** Codex CLI attention optimization for more stable HelloAGENTS execution
392
+
393
+ ### v2.2.7
390
394
 
391
395
  - **G12 Hooks integration spec:** 9 Claude Code lifecycle hooks + Codex CLI notify hook
392
396
  - **Auto-deploy Hooks:** auto-deploy and clean up Hooks config during install/uninstall
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "helloagents",
3
- "version": "2.2.7",
3
+ "version": "2.2.8",
4
4
  "type": "module",
5
5
  "description": "HelloAGENTS - AI-native sub-agent orchestration framework for multi-CLI environments",
6
6
  "author": "HelloWind",