helloagents 2.3.3-beta.1 → 2.3.4-beta.1
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 +16 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
|
|
9
9
|
**Let AI go beyond analysis — keep pushing until implementation and verification are done.**
|
|
10
10
|
|
|
11
|
-
[](./pyproject.toml)
|
|
12
12
|
[](https://www.npmjs.com/package/helloagents)
|
|
13
13
|
[](./pyproject.toml)
|
|
14
|
-
[](./helloagents/functions)
|
|
15
15
|
[](./LICENSE.md)
|
|
16
16
|
[](./CONTRIBUTING.md)
|
|
17
17
|
|
|
@@ -495,9 +495,11 @@ On the first response of each session, the system silently checks for new versio
|
|
|
495
495
|
|
|
496
496
|
- AGENTS.md: router and workflow protocol
|
|
497
497
|
- SKILL.md: skill discovery metadata for CLI targets
|
|
498
|
-
- pyproject.toml: package metadata (v2.3.
|
|
499
|
-
- helloagents/cli.py:
|
|
500
|
-
- helloagents/
|
|
498
|
+
- pyproject.toml: package metadata (v2.3.4)
|
|
499
|
+
- helloagents/cli.py: CLI entry point
|
|
500
|
+
- helloagents/_common.py: shared constants and utilities
|
|
501
|
+
- helloagents/core/: CLI management modules (install, uninstall, update, status)
|
|
502
|
+
- helloagents/functions: command definitions (15)
|
|
501
503
|
- helloagents/stages: design, develop
|
|
502
504
|
- helloagents/services: knowledge, package, memory and support services
|
|
503
505
|
- helloagents/rules: state, cache, tools, scaling, evaluation, sub-agent protocols
|
|
@@ -542,7 +544,15 @@ On the first response of each session, the system silently checks for new versio
|
|
|
542
544
|
|
|
543
545
|
## Version History
|
|
544
546
|
|
|
545
|
-
### v2.3.
|
|
547
|
+
### v2.3.4 (current)
|
|
548
|
+
|
|
549
|
+
- Split 3 oversized files (>450 lines) into 6 independent modules
|
|
550
|
+
- Consolidated 9 CLI management scripts into core/ subpackage
|
|
551
|
+
- Extracted shared constants and utilities into dedicated module, eliminating circular dependencies
|
|
552
|
+
- Removed redundant backward-compatible re-exports
|
|
553
|
+
- Elevated Codex CLI routing protocol priority to prevent system prompt override
|
|
554
|
+
|
|
555
|
+
### v2.3.3
|
|
546
556
|
|
|
547
557
|
- AGENTS.md slimmed from 1186 to ~700 lines (-41%), reducing risk of LLMs selectively ignoring rules
|
|
548
558
|
- G4 evaluation details, G9/G10 sub-agent protocols extracted to on-demand module files via G7
|