@innominatum/agentforge-cli 1.1.3 → 1.1.22
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/.github/workflows/publish.yml +4 -7
- package/dist/index.js +443 -292
- package/package.json +1 -1
- package/src/index.ts +503 -356
- package/templates/CLI_MANUAL.md +11 -1
package/templates/CLI_MANUAL.md
CHANGED
|
@@ -42,10 +42,20 @@ agentforge pull all
|
|
|
42
42
|
Downloads all agents and skills from the GoClaw server. It performs a **surgical extraction**, retrieving only the core `agent.json`, `context_files/`, and skill definitions to keep your workspace perfectly clean. Note: This will ask for confirmation before overwriting local files.
|
|
43
43
|
|
|
44
44
|
### Bulk Deployment
|
|
45
|
+
```bash
|
|
46
|
+
agentforge deploy agents
|
|
47
|
+
```
|
|
48
|
+
Performs a full deployment (config + context + memory) for **all agents** found in your `agents/` directory.
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
agentforge deploy skills
|
|
52
|
+
```
|
|
53
|
+
Packages and uploads **all skills** (including those in the `system/` directory) found in your `skills/` directory.
|
|
54
|
+
|
|
45
55
|
```bash
|
|
46
56
|
agentforge deploy all
|
|
47
57
|
```
|
|
48
|
-
Performs a full deployment
|
|
58
|
+
Performs a full deployment for **all agents and skills**. This is the most efficient way to synchronize your entire team and toolset after making cross-cutting changes.
|
|
49
59
|
|
|
50
60
|
### Agent Management
|
|
51
61
|
```bash
|