network-ai 4.9.0 → 4.9.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 +13 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[](https://jovancoding.github.io/Network-AI/)
|
|
6
6
|
[](https://github.com/Jovancoding/Network-AI/actions/workflows/ci.yml)
|
|
7
7
|
[](https://github.com/Jovancoding/Network-AI/actions/workflows/codeql.yml)
|
|
8
|
-
[](https://github.com/Jovancoding/Network-AI/releases)
|
|
9
9
|
[](https://www.npmjs.com/package/network-ai)
|
|
10
10
|
[](#testing)
|
|
11
11
|
[](#adapter-system)
|
|
@@ -75,16 +75,12 @@ flowchart TD
|
|
|
75
75
|
classDef blackboard fill:#0c4a6e,stroke:#0284c7,color:#bae6fd
|
|
76
76
|
classDef adapters fill:#064e3b,stroke:#059669,color:#a7f3d0
|
|
77
77
|
classDef audit fill:#1e293b,stroke:#475569,color:#94a3b8
|
|
78
|
-
classDef context fill:#3b1f00,stroke:#b45309,color:#fef3c7
|
|
79
78
|
|
|
80
79
|
App["Your Application"]:::app
|
|
81
80
|
App -->|"createSwarmOrchestrator()"| SO
|
|
82
81
|
|
|
83
|
-
PC["ProjectContextManager\n(Layer 3 — persistent memory)\ngoals · stack · decisions\nmilestones · banned"]:::context
|
|
84
|
-
PC -->|"injected into system prompt"| SO
|
|
85
|
-
|
|
86
82
|
subgraph SO["SwarmOrchestrator"]
|
|
87
|
-
AG["AuthGuardian\n(permission
|
|
83
|
+
AG["AuthGuardian\n(HMAC / Ed25519 permission tokens)"]:::security
|
|
88
84
|
AR["AdapterRegistry\n(route tasks to frameworks)"]:::routing
|
|
89
85
|
QG["QualityGateAgent\n(validate blackboard writes)"]:::quality
|
|
90
86
|
BB["SharedBlackboard\n(shared agent state)\npropose → validate → commit\nfilesystem mutex"]:::blackboard
|
|
@@ -96,10 +92,12 @@ flowchart TD
|
|
|
96
92
|
QG -->|"validates"| BB
|
|
97
93
|
end
|
|
98
94
|
|
|
99
|
-
SO --> AUDIT["data/audit_log.jsonl"]:::audit
|
|
95
|
+
SO --> AUDIT["data/audit_log.jsonl\n(HMAC / Ed25519-signed)"]:::audit
|
|
100
96
|
```
|
|
101
97
|
|
|
102
98
|
> `FederatedBudget` is a standalone export — instantiate it separately and optionally wire it to a blackboard backend for cross-node token budget enforcement.
|
|
99
|
+
>
|
|
100
|
+
> `ProjectContextManager` is a Layer-3 Python helper (`scripts/context_manager.py`) that injects persistent project goals, decisions, and milestones into agent system prompts — see [ARCHITECTURE.md § Layer 3](ARCHITECTURE.md#layer-3--projectcontextmanager).
|
|
103
101
|
|
|
104
102
|
→ [Full architecture, FSM journey, and handoff protocol](ARCHITECTURE.md)
|
|
105
103
|
|
|
@@ -265,6 +263,14 @@ npm run demo -- --07
|
|
|
265
263
|
|
|
266
264
|
[](https://youtu.be/UyMsNhaw9lU)
|
|
267
265
|
|
|
266
|
+
**NemoClaw sandbox swarm** *(no API key)* — 3 agents in isolated NVIDIA NemoClaw sandboxes with deny-by-default network policies:
|
|
267
|
+
|
|
268
|
+
```bash
|
|
269
|
+
npx ts-node examples/10-nemoclaw-sandbox-swarm.ts
|
|
270
|
+
```
|
|
271
|
+
|
|
272
|
+
[](https://www.youtube.com/watch?v=c-UWDrdP4ZE)
|
|
273
|
+
|
|
268
274
|
---
|
|
269
275
|
|
|
270
276
|
## Adapter System
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "network-ai",
|
|
3
|
-
"version": "4.9.
|
|
3
|
+
"version": "4.9.1",
|
|
4
4
|
"description": "AI agent orchestration framework for TypeScript/Node.js - 16 adapters (LangChain, AutoGen, CrewAI, OpenAI Assistants, LlamaIndex, Semantic Kernel, Haystack, DSPy, Agno, MCP, OpenClaw, A2A, Codex, MiniMax, NemoClaw + streaming variants). Built-in CLI, security, swarm intelligence, real-time streaming, and agentic workflow patterns.",
|
|
5
5
|
"homepage": "https://github.com/Jovancoding/Network-AI#readme",
|
|
6
6
|
"main": "dist/index.js",
|