@agentforge/cli 0.1.0 → 0.1.2

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 +44 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,17 +1,37 @@
1
1
  # @agentforge/cli
2
2
 
3
- > CLI tool for AgentForge - scaffolding, development, and deployment
3
+ > CLI tool for AgentForge - scaffolding, development, testing, and deployment
4
4
 
5
- ## Installation
5
+ [![npm version](https://img.shields.io/npm/v/@agentforge/cli)](https://www.npmjs.com/package/@agentforge/cli)
6
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.9-blue)](https://www.typescriptlang.org/)
7
+ [![Coverage](https://img.shields.io/badge/coverage-98.11%25-brightgreen)](https://www.npmjs.com/package/@agentforge/cli)
8
+ [![License](https://img.shields.io/badge/license-MIT-green)](../../LICENSE)
9
+
10
+ ## 🎉 Status: Production Ready & Published
11
+
12
+ **156 tests passing** | **98.11% coverage** | **13 commands** | **4 project templates**
13
+
14
+ ## 📦 Installation
6
15
 
7
16
  ```bash
8
- # Global installation
17
+ # Global installation (recommended)
9
18
  npm install -g @agentforge/cli
10
19
 
11
- # Or use with npx
20
+ # Or use with npx (no installation needed)
12
21
  npx @agentforge/cli create my-agent-project
13
22
  ```
14
23
 
24
+ ## ✨ Features
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
34
+
15
35
  ## Commands
16
36
 
17
37
  ### Project Scaffolding
@@ -219,6 +239,26 @@ agentforge tool:publish myTool --tag beta --dry-run
219
239
  - `--tag <tag>` - npm tag [default: latest]
220
240
  - `--dry-run` - Dry run without actual publishing
221
241
 
242
+ ## 📖 Documentation
243
+
244
+ - 📚 **[Full Documentation](https://tvscoundrel.github.io/agentforge/)**
245
+ - 🚀 **[Quick Start](https://tvscoundrel.github.io/agentforge/guide/quick-start)**
246
+ - 🛠️ **[CLI API Reference](https://tvscoundrel.github.io/agentforge/api/cli)**
247
+ - 💡 **[Getting Started Tutorial](https://tvscoundrel.github.io/agentforge/tutorials/first-agent)**
248
+
249
+ ## 🔗 Links
250
+
251
+ - [GitHub Repository](https://github.com/TVScoundrel/agentforge)
252
+ - [npm Package](https://www.npmjs.com/package/@agentforge/cli)
253
+ - [Report Issues](https://github.com/TVScoundrel/agentforge/issues)
254
+
255
+ ## 📚 Related Packages
256
+
257
+ - [@agentforge/core](https://www.npmjs.com/package/@agentforge/core) - Core abstractions
258
+ - [@agentforge/patterns](https://www.npmjs.com/package/@agentforge/patterns) - Agent patterns
259
+ - [@agentforge/tools](https://www.npmjs.com/package/@agentforge/tools) - Standard tools
260
+ - [@agentforge/testing](https://www.npmjs.com/package/@agentforge/testing) - Testing utilities
261
+
222
262
  ## License
223
263
 
224
264
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentforge/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "CLI tool for AgentForge - scaffolding, development, and deployment",
5
5
  "type": "module",
6
6
  "bin": {