@agentic-forge/cli 1.1.1 → 2.0.0-alpha.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 +38 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# @agentic-forge/cli
|
|
2
|
+
|
|
3
|
+
> **The Digital Architect for Autonomous Swarms.**
|
|
4
|
+
|
|
5
|
+
The AgentForge CLI (`forge`) is the orchestration bridge between your agent specifications and the Forge infrastructure. Use it to initialize workspaces, verify system health, and sync your "System of Record."
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @agentic-forge/cli
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Basic Usage
|
|
14
|
+
|
|
15
|
+
### 🛠️ Initialize a Workspace
|
|
16
|
+
Set up the standard AgentForge directory structure in your current folder.
|
|
17
|
+
```bash
|
|
18
|
+
forge init
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### 🏥 Health Check
|
|
22
|
+
Verify connections to the local Python environment and necessary infrastructure.
|
|
23
|
+
```bash
|
|
24
|
+
forge health
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### 🏗️ Brand Identity
|
|
28
|
+
Display the AgentForge vision, manifest, and architectural philosophy.
|
|
29
|
+
```bash
|
|
30
|
+
forge brand
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## How it Works
|
|
34
|
+
The CLI acts as a professional wrapper for the underlying AgentForge Python framework. It handles the scaffolding of agent directories, git-backed versioning logic, and provides a polished interface for managing the self-improving loop.
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
[Back to Monorepo Root](../../README.md)
|