network-ai 4.3.5 → 4.3.7
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 +2 -1
- package/package.json +1 -1
- package/socket.json +50 -0
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,10 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: Network-AI
|
|
3
|
-
description:
|
|
3
|
+
description: "Python orchestration skill: local multi-agent workflows via blackboard file, permission gating, and token budget scripts. All execution is local — no network calls, no Node.js required. TypeScript/Node.js features (HMAC tokens, AES-256, MCP server, 14 adapters, CLI) are in the SEPARATE companion npm package (npm install -g network-ai) and are NOT part of this skill bundle."
|
|
4
4
|
metadata:
|
|
5
5
|
openclaw:
|
|
6
6
|
emoji: "\U0001F41D"
|
|
7
7
|
homepage: https://github.com/jovanSAPFIONEER/Network-AI
|
|
8
|
+
bundle_scope: "Python scripts only (scripts/*.py). The README.md in this repo describes the FULL project including the companion Node.js npm package — features documented there (HMAC tokens, AES-256 encryption, MCP server, 14 adapters, CLI) are NOT implemented in these Python scripts and are NOT part of this ClawHub skill. Install the npm package separately for those features."
|
|
8
9
|
requires:
|
|
9
10
|
bins:
|
|
10
11
|
- python3
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "network-ai",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.7",
|
|
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",
|
package/socket.json
CHANGED
|
@@ -36,6 +36,56 @@
|
|
|
36
36
|
"path": "dist/bin/mcp-server.js",
|
|
37
37
|
"reason": "Intentional — network-ai-server is an opt-in CLI binary that starts an HTTP/SSE server to expose the Network-AI tool suite over MCP. Users invoke it explicitly; it is not a background side-effect."
|
|
38
38
|
}
|
|
39
|
+
],
|
|
40
|
+
"urlStrings": [
|
|
41
|
+
{
|
|
42
|
+
"path": "dist/adapters/custom-adapter.js",
|
|
43
|
+
"reason": "Intentional — CustomAdapter accepts user-supplied endpoint URLs (config.url) as its core function. URLs are provided by the caller at runtime, not hard-coded."
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"path": "dist/adapters/mcp-adapter.js",
|
|
47
|
+
"reason": "Intentional — MCPAdapter documents example MCP endpoint URL patterns in comments. No runtime URL is hard-coded."
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"path": "dist/bin/mcp-server.js",
|
|
51
|
+
"reason": "Intentional — mcp-server.js is the MCP server binary; localhost URLs are for the server it starts (e.g. http://localhost:3001/sse) and are documented in help text and comments."
|
|
52
|
+
}
|
|
53
|
+
],
|
|
54
|
+
"envVars": [
|
|
55
|
+
{
|
|
56
|
+
"path": "dist/security.js",
|
|
57
|
+
"reason": "Intentional — security.ts reads NETWORK_AI_ENCRYPTION_KEY and similar env vars as an opt-in mechanism for users to supply secrets without hard-coding them. This is the recommended pattern."
|
|
58
|
+
}
|
|
59
|
+
],
|
|
60
|
+
"filesystemAccess": [
|
|
61
|
+
{
|
|
62
|
+
"path": "dist/index.js",
|
|
63
|
+
"reason": "Intentional — the blackboard uses a file-backed store (data/ directory) as its persistence layer. Filesystem access is the explicit purpose of the local-first architecture."
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"path": "dist/run.js",
|
|
67
|
+
"reason": "Intentional — run.ts bootstraps the local blackboard and reads/writes the data directory. File I/O is the core mechanism."
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"path": "dist/security.js",
|
|
71
|
+
"reason": "Intentional — security module writes the HMAC-signed audit log to data/audit_log.jsonl. Append-only filesystem writes are the audit trail mechanism."
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"path": "dist/lib/locked-blackboard.js",
|
|
75
|
+
"reason": "Intentional — LockedBlackboard uses atomic file rename + fsync for its mutex. Filesystem access is the locking primitive."
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"path": "dist/lib/mcp-tools-extended.js",
|
|
79
|
+
"reason": "Intentional — extended MCP tools expose blackboard snapshot and audit log query over MCP; these read from the data/ directory."
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"path": "dist/lib/mcp-transport-sse.js",
|
|
83
|
+
"reason": "Intentional — SSE transport reads config from the filesystem. File access is for configuration loading only."
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"path": "dist/lib/swarm-utils.js",
|
|
87
|
+
"reason": "Intentional — swarm-utils reads/writes the shared blackboard file and audit log. Filesystem I/O is the persistence layer."
|
|
88
|
+
}
|
|
39
89
|
]
|
|
40
90
|
}
|
|
41
91
|
}
|