@agentforge/cli 0.16.22 → 0.16.24

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
@@ -7,11 +7,11 @@
7
7
  [![Coverage](https://img.shields.io/badge/coverage-98.11%25-brightgreen)](https://www.npmjs.com/package/@agentforge/cli)
8
8
  [![License](https://img.shields.io/badge/license-MIT-green)](../../LICENSE)
9
9
 
10
- ## 🎉 Status: Production Ready & Published
10
+ ## Status: Production Ready & Published
11
11
 
12
12
  **156 tests passing** | **98.11% coverage** | **13 commands** | **4 project templates**
13
13
 
14
- ## 📦 Installation
14
+ ## Installation
15
15
 
16
16
  ```bash
17
17
  # Global installation (recommended)
@@ -21,16 +21,16 @@ npm install -g @agentforge/cli
21
21
  npx @agentforge/cli create my-agent-project
22
22
  ```
23
23
 
24
- ## Features
24
+ ## Features
25
25
 
26
- - 🚀 **Project Scaffolding** - 4 templates (minimal, full, api, cli)
27
- - 🛠️ **Development Tools** - Dev server, build, test commands
28
- - 📦 **Deployment** - Deploy to Docker, Kubernetes, cloud platforms
29
- - 🔧 **Code Generation** - Generate agents, tools, middleware
30
- - **Validation** - Project structure and configuration validation
31
- - 📊 **Diagnostics** - Health checks and issue detection
32
- - 🔄 **Upgrades** - Dependency and framework upgrades
33
- - 📝 **Configuration** - Manage project settings
26
+ - **Project Scaffolding** - 4 templates (minimal, full, api, cli)
27
+ - **Development Tools** - Dev server, build, test commands
28
+ - **Deployment** - Deploy to Docker, Kubernetes, cloud platforms
29
+ - **Code Generation** - Generate agents, tools, middleware
30
+ - **Validation** - Project structure and configuration validation
31
+ - **Diagnostics** - Health checks and issue detection
32
+ - **Upgrades** - Dependency and framework upgrades
33
+ - **Configuration** - Manage project settings
34
34
 
35
35
  ## Commands
36
36
 
@@ -291,21 +291,21 @@ agentforge tool:publish myTool --tag beta --dry-run
291
291
  - `--tag <tag>` - npm tag [default: latest]
292
292
  - `--dry-run` - Dry run without actual publishing
293
293
 
294
- ## 📖 Documentation
294
+ ## Documentation
295
295
 
296
- - 📚 **[Full Documentation](https://tvscoundrel.github.io/agentforge/)**
297
- - 🚀 **[Quick Start](https://tvscoundrel.github.io/agentforge/guide/quick-start)**
298
- - 🛠️ **[CLI API Reference](https://tvscoundrel.github.io/agentforge/api/cli)**
299
- - 💡 **[Getting Started Tutorial](https://tvscoundrel.github.io/agentforge/tutorials/first-agent)**
296
+ - **[Full Documentation](https://tvscoundrel.github.io/agentforge/)**
297
+ - **[Quick Start](https://tvscoundrel.github.io/agentforge/guide/quick-start)**
298
+ - **[CLI API Reference](https://tvscoundrel.github.io/agentforge/api/cli)**
299
+ - **[Getting Started Tutorial](https://tvscoundrel.github.io/agentforge/tutorials/first-agent)**
300
300
 
301
- ## 🔗 Links
301
+ ## Links
302
302
 
303
303
  - [GitHub Repository](https://github.com/TVScoundrel/agentforge)
304
304
  - [npm Package](https://www.npmjs.com/package/@agentforge/cli)
305
305
  - [Changelog](https://tvscoundrel.github.io/agentforge/changelog.html) - See what's new before upgrading
306
306
  - [Report Issues](https://github.com/TVScoundrel/agentforge/issues)
307
307
 
308
- ## 📚 Related Packages
308
+ ## Related Packages
309
309
 
310
310
  - [@agentforge/core](https://www.npmjs.com/package/@agentforge/core) - Core abstractions
311
311
  - [@agentforge/patterns](https://www.npmjs.com/package/@agentforge/patterns) - Agent patterns
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentforge/cli",
3
- "version": "0.16.22",
3
+ "version": "0.16.24",
4
4
  "description": "CLI for AgentForge to scaffold TypeScript AI agent projects, generate boilerplate, and manage local development workflows.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -160,4 +160,3 @@ To create a custom template:
160
160
  ## License
161
161
 
162
162
  MIT
163
-
@@ -6,13 +6,13 @@ A REST API service powered by AgentForge agents.
6
6
 
7
7
  ## Features
8
8
 
9
- - Express.js REST API
10
- - ReAct agent integration
11
- - Health check endpoint
12
- - CORS support
13
- - Error handling
14
- - Request logging
15
- - Environment configuration
9
+ - Express.js REST API
10
+ - ReAct agent integration
11
+ - Health check endpoint
12
+ - CORS support
13
+ - Error handling
14
+ - Request logging
15
+ - Environment configuration
16
16
 
17
17
  ## Getting Started
18
18
 
@@ -150,4 +150,3 @@ See the [deployment guides](../../templates/deployment/) for deploying to:
150
150
  ## License
151
151
 
152
152
  MIT
153
-
@@ -17,8 +17,8 @@
17
17
  "format": "prettier --write ."
18
18
  },
19
19
  "dependencies": {
20
- "@agentforge/core": "^0.16.22",
21
- "@agentforge/patterns": "^0.16.22",
20
+ "@agentforge/core": "^0.16.24",
21
+ "@agentforge/patterns": "^0.16.24",
22
22
  "@langchain/core": "^1.1.17",
23
23
  "@langchain/langgraph": "^1.1.2",
24
24
  "@langchain/openai": "^1.2.3",
@@ -6,13 +6,13 @@ A command-line interface powered by AgentForge agents.
6
6
 
7
7
  ## Features
8
8
 
9
- - Interactive chat command
10
- - File analysis command
11
- - Commander.js CLI framework
12
- - Colored output (chalk)
13
- - Spinners and progress (ora)
14
- - Interactive prompts (inquirer)
15
- - ReAct agent integration
9
+ - Interactive chat command
10
+ - File analysis command
11
+ - Commander.js CLI framework
12
+ - Colored output (chalk)
13
+ - Spinners and progress (ora)
14
+ - Interactive prompts (inquirer)
15
+ - ReAct agent integration
16
16
 
17
17
  ## Getting Started
18
18
 
@@ -161,4 +161,3 @@ npm publish
161
161
  ## License
162
162
 
163
163
  MIT
164
-
@@ -20,8 +20,8 @@
20
20
  "format": "prettier --write ."
21
21
  },
22
22
  "dependencies": {
23
- "@agentforge/core": "^0.16.22",
24
- "@agentforge/patterns": "^0.16.22",
23
+ "@agentforge/core": "^0.16.24",
24
+ "@agentforge/patterns": "^0.16.24",
25
25
  "@langchain/core": "^1.1.17",
26
26
  "@langchain/langgraph": "^1.1.2",
27
27
  "@langchain/openai": "^1.2.3",
@@ -4,13 +4,13 @@
4
4
 
5
5
  ## Features
6
6
 
7
- - ReAct agent pattern with tool support
8
- - Example tool implementation
9
- - Logging and error handling
10
- - Environment configuration
11
- - Test suite with Vitest
12
- - TypeScript support
13
- - Hot reload development
7
+ - ReAct agent pattern with tool support
8
+ - Example tool implementation
9
+ - Logging and error handling
10
+ - Environment configuration
11
+ - Test suite with Vitest
12
+ - TypeScript support
13
+ - Hot reload development
14
14
 
15
15
  ## Getting Started
16
16
 
@@ -148,4 +148,3 @@ See the [deployment guides](../../templates/deployment/) for deploying to:
148
148
  ## License
149
149
 
150
150
  MIT
151
-
@@ -19,8 +19,8 @@
19
19
  "clean": "rm -rf dist"
20
20
  },
21
21
  "dependencies": {
22
- "@agentforge/core": "^0.16.22",
23
- "@agentforge/patterns": "^0.16.22",
22
+ "@agentforge/core": "^0.16.24",
23
+ "@agentforge/patterns": "^0.16.24",
24
24
  "@langchain/core": "^1.1.17",
25
25
  "@langchain/langgraph": "^1.1.2",
26
26
  "@langchain/openai": "^1.2.3",
@@ -16,8 +16,8 @@
16
16
  "format": "prettier --write ."
17
17
  },
18
18
  "dependencies": {
19
- "@agentforge/core": "^0.16.22",
20
- "@agentforge/patterns": "^0.16.22",
19
+ "@agentforge/core": "^0.16.24",
20
+ "@agentforge/patterns": "^0.16.24",
21
21
  "@langchain/core": "^1.1.17",
22
22
  "@langchain/langgraph": "^1.1.2",
23
23
  "@langchain/openai": "^1.2.3",
@@ -8,12 +8,12 @@ A configurable, vertical AI agent built with AgentForge.
8
8
 
9
9
  ## Features
10
10
 
11
- - **Factory Function Pattern** - Easy to instantiate with different configurations
12
- - **External Prompt Templates** - Prompts stored in `.md` files for easy editing
13
- - **Tool Injection** - Add custom tools via ToolRegistry or direct injection
14
- - **Feature Flags** - Enable/disable capabilities as needed
15
- - **Configuration Validation** - Type-safe configuration with Zod schemas
16
- - **Comprehensive Tests** - Full test coverage demonstrating all features
11
+ - **Factory Function Pattern** - Easy to instantiate with different configurations
12
+ - **External Prompt Templates** - Prompts stored in `.md` files for easy editing
13
+ - **Tool Injection** - Add custom tools via ToolRegistry or direct injection
14
+ - **Feature Flags** - Enable/disable capabilities as needed
15
+ - **Configuration Validation** - Type-safe configuration with Zod schemas
16
+ - **Comprehensive Tests** - Full test coverage demonstrating all features
17
17
 
18
18
  ## Installation
19
19
 
@@ -147,4 +147,3 @@ npm test
147
147
  ## License
148
148
 
149
149
  MIT
150
-