forbocai 0.1.1 → 0.3.0
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 +25 -0
- package/dist/cli.js +533 -89
- package/dist/cli.mjs +533 -89
- package/dist/index.d.mts +12 -8
- package/dist/index.d.ts +12 -8
- package/dist/index.js +199 -134
- package/dist/index.mjs +199 -134
- package/package.json +11 -6
package/README.md
CHANGED
|
@@ -78,6 +78,31 @@ npm install forbocai
|
|
|
78
78
|
|
|
79
79
|
---
|
|
80
80
|
|
|
81
|
+
## CLI Reference
|
|
82
|
+
|
|
83
|
+
`CLI_Tóols // Cómmand_Líne`
|
|
84
|
+
|
|
85
|
+
The SDK includes a comprehensive CLI for managing your AI infrastructure.
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
# Agents
|
|
89
|
+
npx forbocai agent create "A wise wizard"
|
|
90
|
+
npx forbocai agent list
|
|
91
|
+
npx forbocai agent chat <agentId>
|
|
92
|
+
|
|
93
|
+
# Memory & Bridge
|
|
94
|
+
npx forbocai memory recall <agentId> "battle"
|
|
95
|
+
npx forbocai bridge validate action.json
|
|
96
|
+
|
|
97
|
+
# System
|
|
98
|
+
npx forbocai status
|
|
99
|
+
npx forbocai doctor
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
See [full CLI documentation](https://forbocai.docs.buildwithfern.com/docs/pages/cli).
|
|
103
|
+
|
|
104
|
+
---
|
|
105
|
+
|
|
81
106
|
## Quick Start
|
|
82
107
|
|
|
83
108
|
`Quíck_Stárt // Éxample`
|