network-ai 4.3.1 → 4.3.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.
- package/README.md +1 -1
- package/SKILL.md +30 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://github.com/jovanSAPFIONEER/Network-AI/actions/workflows/ci.yml)
|
|
6
6
|
[](https://github.com/jovanSAPFIONEER/Network-AI/actions/workflows/codeql.yml)
|
|
7
|
-
[](https://github.com/jovanSAPFIONEER/Network-AI/releases)
|
|
8
8
|
[](https://www.npmjs.com/package/network-ai)
|
|
9
9
|
[](#testing)
|
|
10
10
|
[](#adapter-system)
|
package/SKILL.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: Network-AI
|
|
3
|
-
description: Multi-agent swarm orchestration for complex workflows. Coordinates multiple agents, decomposes tasks, manages shared state via a local blackboard file, and enforces permission walls before sensitive operations. All execution is local and sandboxed.
|
|
3
|
+
description: Multi-agent swarm orchestration for complex workflows. Coordinates multiple agents, decomposes tasks, manages shared state via a local blackboard file, and enforces permission walls before sensitive operations. Includes a full CLI (network-ai bb/auth/budget/audit) for terminal-based control. All execution is local and sandboxed.
|
|
4
4
|
metadata:
|
|
5
5
|
openclaw:
|
|
6
6
|
emoji: "\U0001F41D"
|
|
@@ -211,6 +211,34 @@ python {baseDir}/scripts/blackboard.py read "task:q4_analysis"
|
|
|
211
211
|
python {baseDir}/scripts/blackboard.py list
|
|
212
212
|
```
|
|
213
213
|
|
|
214
|
+
### 5. Use the Node.js CLI (optional — requires `npm install -g network-ai`)
|
|
215
|
+
|
|
216
|
+
The CLI gives direct terminal access to all four subsystems without running a server:
|
|
217
|
+
|
|
218
|
+
```bash
|
|
219
|
+
# Blackboard
|
|
220
|
+
network-ai bb get task:q4_analysis
|
|
221
|
+
network-ai bb set task:q4_analysis '{"status": "complete"}' --agent orchestrator
|
|
222
|
+
network-ai bb list
|
|
223
|
+
network-ai bb snapshot
|
|
224
|
+
|
|
225
|
+
# Permissions
|
|
226
|
+
network-ai auth token data_analyst --resource DATABASE --action read \
|
|
227
|
+
--justification "Need Q4 invoices for revenue report"
|
|
228
|
+
network-ai auth check grant_a1b2c3...
|
|
229
|
+
network-ai auth revoke grant_a1b2c3...
|
|
230
|
+
|
|
231
|
+
# Budget
|
|
232
|
+
network-ai budget status
|
|
233
|
+
network-ai budget set-ceiling 50000
|
|
234
|
+
|
|
235
|
+
# Audit log
|
|
236
|
+
network-ai audit log --limit 50
|
|
237
|
+
network-ai audit tail # live-stream as events arrive
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
Global flags: `--data <path>` (override data directory) · `--json` (machine-readable output)
|
|
241
|
+
|
|
214
242
|
## Agent-to-Agent Handoff Protocol
|
|
215
243
|
|
|
216
244
|
When delegating tasks between agents/sessions:
|
|
@@ -597,3 +625,4 @@ python {baseDir}/scripts/swarm_guard.py supervisor-review --task-id "task_001"
|
|
|
597
625
|
- [AuthGuardian Details](references/auth-guardian.md) - Full permission system documentation
|
|
598
626
|
- [Blackboard Schema](references/blackboard-schema.md) - Data structure specifications
|
|
599
627
|
- [Agent Trust Levels](references/trust-levels.md) - How trust is calculated
|
|
628
|
+
- [CLI Reference](QUICKSTART.md) - Full `network-ai` CLI command reference (§ 10. CLI)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "network-ai",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.2",
|
|
4
4
|
"description": "AI agent orchestration framework for TypeScript/Node.js - 14 adapters (LangChain, AutoGen, CrewAI, OpenAI Assistants, LlamaIndex, Semantic Kernel, Haystack, DSPy, Agno, MCP, OpenClaw, A2A, Codex + streaming variants). Built-in CLI, security, swarm intelligence, real-time streaming, and agentic workflow patterns.",
|
|
5
5
|
"homepage": "https://github.com/jovanSAPFIONEER/Network-AI#readme",
|
|
6
6
|
"main": "dist/index.js",
|