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.
Files changed (2) hide show
  1. package/README.md +13 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  [![Website](https://img.shields.io/badge/website-jovancoding.github.io/Network--AI-4b9df2?style=flat&logo=github-pages&logoColor=white)](https://jovancoding.github.io/Network-AI/)
6
6
  [![CI](https://github.com/Jovancoding/Network-AI/actions/workflows/ci.yml/badge.svg)](https://github.com/Jovancoding/Network-AI/actions/workflows/ci.yml)
7
7
  [![CodeQL](https://github.com/Jovancoding/Network-AI/actions/workflows/codeql.yml/badge.svg)](https://github.com/Jovancoding/Network-AI/actions/workflows/codeql.yml)
8
- [![Release](https://img.shields.io/badge/release-v4.9.0-blue.svg)](https://github.com/Jovancoding/Network-AI/releases)
8
+ [![Release](https://img.shields.io/badge/release-v4.9.1-blue.svg)](https://github.com/Jovancoding/Network-AI/releases)
9
9
  [![npm](https://img.shields.io/npm/dw/network-ai.svg?label=npm%20downloads)](https://www.npmjs.com/package/network-ai)
10
10
  [![Tests](https://img.shields.io/badge/tests-1582%20passing-brightgreen.svg)](#testing)
11
11
  [![Adapters](https://img.shields.io/badge/frameworks-16%20supported-blueviolet.svg)](#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 gating)"]:::security
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
  [![Code Review Swarm Demo](https://img.youtube.com/vi/UyMsNhaw9lU/0.jpg)](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
+ [![NemoClaw Sandbox Demo](https://img.youtube.com/vi/c-UWDrdP4ZE/0.jpg)](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.0",
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",