@agentforge/cli 0.1.0 → 0.1.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 +24 -4
- 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
|
-
|
|
5
|
+
[](https://www.npmjs.com/package/@agentforge/cli)
|
|
6
|
+
[](https://www.typescriptlang.org/)
|
|
7
|
+
[](https://www.npmjs.com/package/@agentforge/cli)
|
|
8
|
+
[](../../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
|