network-ai 3.3.4 → 3.3.5
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 +11 -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
|
[](https://clawhub.ai/skills/network-ai)
|
|
10
10
|
[](https://nodejs.org)
|
|
@@ -60,6 +60,16 @@ console.log(result.data); // "Hello, World! Your task: welcome"
|
|
|
60
60
|
|
|
61
61
|
That's it. No config files, no setup wizards. Add more agents, swap frameworks, layer on security -- all optional.
|
|
62
62
|
|
|
63
|
+
## Demo
|
|
64
|
+
|
|
65
|
+
[](https://youtu.be/UyMsNhaw9lU)
|
|
66
|
+
|
|
67
|
+
*5-agent code review swarm — parallel specialist agents coordinated through a shared blackboard*
|
|
68
|
+
|
|
69
|
+
> The demo shows a code review swarm, but Network-AI is not a code review tool. The same orchestration pattern works for research pipelines, data processing, content moderation, customer support routing, document analysis, financial workflows — any task where multiple agents need to coordinate without stepping on each other.
|
|
70
|
+
|
|
71
|
+
> **Live demo source coming soon:** The full source for `04-live-swarm.ts` and `05-code-review-swarm.ts` will be added to the repo with a `.env.example` so you can run them against your own API keys. In the meantime, examples `01`–`03` cover all core framework features — atomic blackboard, FSM governance, parallel dispatch — with no API key or external dependency required.
|
|
72
|
+
|
|
63
73
|
## Why This Exists -- The Multi-Agent Race Condition Problem
|
|
64
74
|
|
|
65
75
|
Most agent frameworks let you run multiple AI agents in parallel. None of them protect you when those agents write to the same resource at the same time.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "network-ai",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.5",
|
|
4
4
|
"description": "AI agent orchestration framework for TypeScript/Node.js - plug-and-play multi-agent coordination with 12 frameworks (LangChain, AutoGen, CrewAI, OpenAI Assistants, LlamaIndex, Semantic Kernel, Haystack, DSPy, Agno, MCP, OpenClaw). Built-in security, swarm intelligence, and agentic workflow patterns.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|