helloagents 2.2.7 → 2.2.9
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/README.md +15 -7
- 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
|
-
[](./pyproject.toml)
|
|
12
12
|
[](https://www.npmjs.com/package/helloagents)
|
|
13
13
|
[](./pyproject.toml)
|
|
14
14
|
[](./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.
|
|
324
|
+
- pyproject.toml: package metadata (v2.2.9)
|
|
325
325
|
- helloagents/cli.py: installer entry
|
|
326
326
|
- helloagents/functions: workflow commands
|
|
327
327
|
- helloagents/stages: analyze, design, develop
|
|
@@ -386,7 +386,15 @@ These commands run inside AI chat, not your system shell.
|
|
|
386
386
|
|
|
387
387
|
## Version History
|
|
388
388
|
|
|
389
|
-
### v2.2.
|
|
389
|
+
### v2.2.9 (current)
|
|
390
|
+
|
|
391
|
+
- Comprehensive Windows file-locking fix: preemptive unlock and rename-aside fallback for install/update/uninstall/clean
|
|
392
|
+
|
|
393
|
+
### v2.2.8
|
|
394
|
+
|
|
395
|
+
- Codex CLI attention optimization for more stable HelloAGENTS execution
|
|
396
|
+
|
|
397
|
+
### v2.2.7
|
|
390
398
|
|
|
391
399
|
- **G12 Hooks integration spec:** 9 Claude Code lifecycle hooks + Codex CLI notify hook
|
|
392
400
|
- **Auto-deploy Hooks:** auto-deploy and clean up Hooks config during install/uninstall
|