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.
Files changed (2) hide show
  1. package/README.md +16 -6
  2. 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
- [![Version](https://img.shields.io/badge/version-2.3.3-orange.svg)](./pyproject.toml)
11
+ [![Version](https://img.shields.io/badge/version-2.3.4-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
- [![Commands](https://img.shields.io/badge/workflow_commands-15-6366f1.svg)](./helloagents/functions)
14
+ [![Commands](https://img.shields.io/badge/commands-15-6366f1.svg)](./helloagents/functions)
15
15
  [![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](./LICENSE.md)
16
16
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](./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.3)
499
- - helloagents/cli.py: installer entry
500
- - helloagents/functions: workflow commands (15)
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.3 (current)
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "helloagents",
3
- "version": "2.3.3-beta.1",
3
+ "version": "2.3.4-beta.1",
4
4
  "type": "module",
5
5
  "description": "HelloAGENTS - AI-native sub-agent orchestration framework for multi-CLI environments",
6
6
  "author": "HelloWind",