network-ai 4.10.2 → 4.10.3
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 +2 -2
- package/SKILL.md +8 -17
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
**TypeScript/Node.js multi-agent orchestrator — shared state, guardrails, budgets, and cross-framework coordination**
|
|
4
4
|
|
|
5
|
-
[](https://network-ai.org/)
|
|
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)
|
package/SKILL.md
CHANGED
|
@@ -1,40 +1,31 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: Network-AI
|
|
3
|
-
description: "Python orchestration skill:
|
|
3
|
+
description: "Local Python orchestration skill: multi-agent workflows via shared blackboard file, permission gating, token budget scripts, and persistent project context. All execution is local with zero network calls and zero third-party dependencies."
|
|
4
4
|
metadata:
|
|
5
5
|
openclaw:
|
|
6
6
|
emoji: "\U0001F41D"
|
|
7
|
-
homepage: https://
|
|
8
|
-
bundle_scope: "Python scripts only (scripts/*.py).
|
|
7
|
+
homepage: https://network-ai.org
|
|
8
|
+
bundle_scope: "Python scripts only (scripts/*.py). All execution is local."
|
|
9
9
|
network_calls: none
|
|
10
|
-
sessions_ops: "platform-provided
|
|
10
|
+
sessions_ops: "platform-provided"
|
|
11
11
|
requires:
|
|
12
12
|
bins:
|
|
13
13
|
- python3
|
|
14
|
-
optional_bins: []
|
|
14
|
+
optional_bins: []
|
|
15
15
|
env:
|
|
16
|
-
SWARM_TOKEN_SECRET:
|
|
17
|
-
required: false
|
|
18
|
-
description: "Node.js MCP server only — not used by these Python scripts. The Python permission layer uses UUID-based tokens stored in data/active_grants.json."
|
|
19
|
-
SWARM_ENCRYPTION_KEY:
|
|
20
|
-
required: false
|
|
21
|
-
description: "Node.js MCP server only — not used by these Python scripts. The Python blackboard does not encrypt data at rest."
|
|
22
16
|
OPENAI_API_KEY:
|
|
23
17
|
required: false
|
|
24
|
-
description: "Not used by
|
|
25
|
-
MINIMAX_API_KEY:
|
|
26
|
-
required: false
|
|
27
|
-
description: "Not used by these Python scripts. Only used by the optional Node.js MiniMaxAdapter when running the companion npm package."
|
|
18
|
+
description: "Not used by this skill."
|
|
28
19
|
privacy:
|
|
29
20
|
audit_log:
|
|
30
21
|
path: data/audit_log.jsonl
|
|
31
22
|
scope: local-only
|
|
32
|
-
description: "Local append-only JSONL file recording operation metadata
|
|
23
|
+
description: "Local append-only JSONL file recording operation metadata. No data leaves the machine."
|
|
33
24
|
---
|
|
34
25
|
|
|
35
26
|
# Swarm Orchestrator Skill
|
|
36
27
|
|
|
37
|
-
> **Scope
|
|
28
|
+
> **Scope:** All instructions below run local Python scripts (`scripts/*.py`). No network calls are made. Tokens are UUID-based (`grant_{uuid4().hex}`) stored in `data/active_grants.json`. Audit logging is plain JSONL (`data/audit_log.jsonl`).
|
|
38
29
|
|
|
39
30
|
## Setup
|
|
40
31
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "network-ai",
|
|
3
|
-
"version": "4.10.
|
|
3
|
+
"version": "4.10.3",
|
|
4
4
|
"description": "AI agent orchestration framework for TypeScript/Node.js - 17 adapters (LangChain, AutoGen, CrewAI, OpenAI Assistants, LlamaIndex, Semantic Kernel, Haystack, DSPy, Agno, MCP, OpenClaw, A2A, Codex, MiniMax, NemoClaw, APS + streaming variants). Built-in CLI, security, swarm intelligence, real-time streaming, and agentic workflow patterns.",
|
|
5
|
-
"homepage": "https://
|
|
5
|
+
"homepage": "https://network-ai.org",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"bin": {
|