helloagents 1.0.0 → 1.1.0

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 CHANGED
@@ -4,9 +4,10 @@
4
4
 
5
5
  **AI Programming Modular Skill System — Transform chaotic AI agent outputs into structured, traceable, production-ready code through intelligent routing and human-centric workflows**
6
6
 
7
+ [![npm version](https://img.shields.io/npm/v/helloagents.svg)](https://www.npmjs.com/package/helloagents)
8
+ [![npm downloads](https://img.shields.io/npm/dm/helloagents.svg)](https://www.npmjs.com/package/helloagents)
7
9
  [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](./LICENSE)
8
10
  [![Documentation](https://img.shields.io/badge/docs-CC%20BY%204.0-green.svg)](https://creativecommons.org/licenses/by/4.0/)
9
- [![Version](https://img.shields.io/badge/version-2025--12--18.2-orange.svg)](#-version-history)
10
11
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](./CONTRIBUTING.md)
11
12
  [![Test](https://github.com/hellowind777/helloagents/actions/workflows/test.yml/badge.svg)](https://github.com/hellowind777/helloagents/actions/workflows/test.yml)
12
13
 
@@ -127,7 +128,7 @@ Transparent and safe AI behavior:
127
128
 
128
129
  ### Prerequisites
129
130
  - CLI environment with file system access (Codex CLI, Claude Code, or custom AI client)
130
- - Node.js >= 14.0.0 (only required for npx installation)
131
+ - Node.js >= 16.0.0 (only required for npx installation)
131
132
 
132
133
  ### Installation
133
134
 
package/lib/utils.js CHANGED
@@ -99,7 +99,7 @@ async function readFileContent(filePath, deps = {}) {
99
99
  }
100
100
 
101
101
  /**
102
- * Recursive delete (compatible with Node 14)
102
+ * Recursive delete (compatible with Node 16)
103
103
  * @param {string} targetPath - Path to delete
104
104
  * @param {Object} deps - Dependencies
105
105
  * @returns {Promise<void>}
@@ -117,7 +117,7 @@ async function rmrf(targetPath, deps = {}) {
117
117
  throw err;
118
118
  }
119
119
 
120
- // Try fs.rm first (Node 14.14+)
120
+ // Try fs.rm first (Node 16+)
121
121
  if (fsModule.rm) {
122
122
  try {
123
123
  await fsModule.rm(targetPath, { recursive: true, force: true });
@@ -127,7 +127,7 @@ async function rmrf(targetPath, deps = {}) {
127
127
  }
128
128
  }
129
129
 
130
- // Fallback to fs.rmdir with recursive (Node 14.0+)
130
+ // Fallback to fs.rmdir with recursive (Node 16+)
131
131
  if (fsModule.rmdir) {
132
132
  await fsModule.rmdir(targetPath, { recursive: true });
133
133
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "helloagents",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "CLI tool to configure HelloAGENTS for Claude Code and Codex",
5
5
  "bin": {
6
6
  "helloagents": "bin/cli.js"
@@ -15,7 +15,7 @@
15
15
  "test": "node test/run.js"
16
16
  },
17
17
  "engines": {
18
- "node": ">=14.0.0"
18
+ "node": ">=16.0.0"
19
19
  },
20
20
  "keywords": [
21
21
  "cli",
@@ -29,7 +29,7 @@
29
29
  "license": "Apache-2.0",
30
30
  "repository": {
31
31
  "type": "git",
32
- "url": "https://github.com/hellowind777/helloagents.git"
32
+ "url": "git+https://github.com/hellowind777/helloagents.git"
33
33
  },
34
34
  "homepage": "https://github.com/hellowind777/helloagents#readme",
35
35
  "bugs": {