network-ai 5.2.0 → 5.2.2
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/INTEGRATION_GUIDE.md +1 -1
- package/QUICKSTART.md +1 -1
- package/README.md +2 -2
- package/SKILL.md +1 -1
- package/package.json +2 -1
- package/socket.json +140 -0
package/INTEGRATION_GUIDE.md
CHANGED
package/QUICKSTART.md
CHANGED
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
# Network-AI
|
|
2
2
|
|
|
3
3
|
**TypeScript/Node.js multi-agent orchestrator — shared state, guardrails, budgets, and cross-framework coordination**
|
|
4
4
|
|
|
5
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,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
---
|
|
2
2
|
name: network-ai
|
|
3
3
|
description: "Local Python orchestration skill: multi-agent workflows via shared blackboard file, permission gating, token budget scripts, and persistent project context. The bundled Python scripts make no network calls and have zero third-party dependencies. Workflow delegations via the host platform's sessions_send may invoke external model APIs."
|
|
4
4
|
metadata:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "network-ai",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.2",
|
|
4
4
|
"description": "AI agent orchestration framework for TypeScript/Node.js - 29 adapters (LangChain, AutoGen, CrewAI, OpenAI Assistants, LlamaIndex, Semantic Kernel, Haystack, DSPy, Agno, MCP, OpenClaw, A2A, Codex, MiniMax, NemoClaw, APS, Copilot, LangGraph, Anthropic Computer Use, OpenAI Agents SDK, Vertex AI, Pydantic AI, Browser Agent, Hermes, Orchestrator, RLM + streaming variants). Built-in CLI, security, swarm intelligence, real-time streaming, and agentic workflow patterns.",
|
|
5
5
|
"homepage": "https://network-ai.org",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -123,3 +123,4 @@
|
|
|
123
123
|
"commander": "^14.0.3"
|
|
124
124
|
}
|
|
125
125
|
}
|
|
126
|
+
|
package/socket.json
CHANGED
|
@@ -63,6 +63,130 @@
|
|
|
63
63
|
{
|
|
64
64
|
"path": "dist/adapters/minimax-adapter.js",
|
|
65
65
|
"reason": "Intentional — compiled output of MiniMaxAdapter. It talks to MiniMax endpoints as configured by the caller."
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"path": "adapters/hermes-adapter.ts",
|
|
69
|
+
"reason": "Intentional — HermesAdapter includes a built-in fetch-based transport for OpenAI-compatible completion endpoints. Users may substitute their own client; the built-in transport calls only the URL supplied by the caller."
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"path": "dist/adapters/hermes-adapter.js",
|
|
73
|
+
"reason": "Intentional — compiled output of HermesAdapter. Uses fetch for its built-in OpenAI-compatible completion transport; calls only the URL supplied by the caller."
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"path": "adapters/pydantic-ai-adapter.ts",
|
|
77
|
+
"reason": "Intentional — PydanticAIAdapter uses fetch to call PydanticAI-compatible HTTP endpoints as part of its BYOC adapter behavior. The URL is supplied by the caller."
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"path": "dist/adapters/pydantic-ai-adapter.js",
|
|
81
|
+
"reason": "Intentional — compiled output of PydanticAIAdapter. Uses fetch for outbound HTTP calls to caller-supplied PydanticAI endpoints."
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"path": "adapters/rlm-adapter.ts",
|
|
85
|
+
"reason": "Intentional — RLMAdapter uses fetch to call RLM-compatible HTTP endpoints as part of its BYOC adapter behavior. The URL is supplied by the caller."
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"path": "dist/adapters/rlm-adapter.js",
|
|
89
|
+
"reason": "Intentional — compiled output of RLMAdapter. Uses fetch for outbound HTTP calls to caller-supplied RLM endpoints."
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"path": "lib/swarm-transport.ts",
|
|
93
|
+
"reason": "Intentional — SwarmTransport uses fetch to relay messages between swarm nodes over HTTP. Network transport is the documented purpose of this module; the endpoint URL is configured by the caller."
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"path": "dist/lib/swarm-transport.js",
|
|
97
|
+
"reason": "Intentional — compiled output of SwarmTransport. Uses fetch to relay messages to a caller-configured HTTP endpoint."
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"path": "lib/mcp-tool-consumer.ts",
|
|
101
|
+
"reason": "Intentional — McpToolConsumer uses fetch for HTTP-based MCP server communication (SSE/HTTP transport mode). Outbound requests go only to the MCP server URL configured by the caller."
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"path": "dist/lib/mcp-tool-consumer.js",
|
|
105
|
+
"reason": "Intentional — compiled output of McpToolConsumer. Uses fetch for HTTP/SSE MCP transport to a caller-configured MCP server URL."
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"path": "lib/auth-guardian.ts",
|
|
109
|
+
"reason": "False positive — the word 'fetch' appears only in a JSDoc example string and a capability-detection regex pattern. AuthGuardian does not make any outbound HTTP calls."
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"path": "dist/lib/auth-guardian.js",
|
|
113
|
+
"reason": "False positive — 'fetch' appears only in a JSDoc example string and a capability-detection regex. AuthGuardian does not make any outbound HTTP calls."
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"path": "adapters/adapter-registry.ts",
|
|
117
|
+
"reason": "Intentional — adapter-registry re-exports all 29 adapters; Socket.dev's import-graph analysis flags it because it transitively references adapters that use fetch. No direct HTTP calls are made here."
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"path": "dist/adapters/adapter-registry.js",
|
|
121
|
+
"reason": "Intentional — compiled adapter-registry re-exports all adapters; flagged transitively because some adapters use fetch. No direct HTTP calls are made in this file."
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"path": "index.ts",
|
|
125
|
+
"reason": "Intentional — the main entry point re-exports all adapters and lib modules; Socket.dev's import-graph analysis flags it because it transitively references adapters that use fetch."
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"path": "dist/index.js",
|
|
129
|
+
"reason": "Intentional — compiled main entry point; flagged transitively because it re-exports all adapters including those that use fetch. No direct HTTP calls are made in this file."
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"path": "dist/lib/approval-inbox.js",
|
|
133
|
+
"reason": "Intentional — flagged by Socket.dev's import-graph analysis via transitive imports; ApprovalInbox does not make direct outbound HTTP calls."
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"path": "dist/lib/blackboard-backend-crdt.js",
|
|
137
|
+
"reason": "Intentional — flagged by Socket.dev's import-graph analysis via transitive imports; BlackboardBackendCRDT does not make direct outbound HTTP calls."
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"path": "dist/lib/blackboard-backend-redis.js",
|
|
141
|
+
"reason": "Intentional — flagged by Socket.dev's import-graph analysis via transitive imports; BlackboardBackendRedis connects to Redis via its client library, not via fetch."
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"path": "dist/lib/compliance-monitor.js",
|
|
145
|
+
"reason": "Intentional — flagged by Socket.dev's import-graph analysis via transitive imports; ComplianceMonitor does not make direct outbound HTTP calls."
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"path": "dist/lib/control-plane.js",
|
|
149
|
+
"reason": "Intentional — flagged by Socket.dev's import-graph analysis via transitive imports; ControlPlane does not make direct outbound HTTP calls."
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"path": "dist/lib/dashboard-server.js",
|
|
153
|
+
"reason": "Intentional — flagged by Socket.dev's import-graph analysis via transitive imports; DashboardServer does not make direct outbound HTTP calls via fetch."
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"path": "dist/lib/federated-budget.js",
|
|
157
|
+
"reason": "Intentional — flagged by Socket.dev's import-graph analysis via transitive imports; FederatedBudget does not make direct outbound HTTP calls."
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"path": "dist/lib/fsm-journey.js",
|
|
161
|
+
"reason": "Intentional — flagged by Socket.dev's import-graph analysis via transitive imports; JourneyFSM does not make direct outbound HTTP calls."
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"path": "dist/lib/logger.js",
|
|
165
|
+
"reason": "Intentional — flagged by Socket.dev's import-graph analysis via transitive imports; Logger does not make direct outbound HTTP calls."
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"path": "dist/lib/mcp-blackboard-tools.js",
|
|
169
|
+
"reason": "Intentional — flagged by Socket.dev's import-graph analysis via transitive imports; MCP blackboard tools call the local blackboard, not external HTTP endpoints."
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"path": "dist/lib/mcp-bridge.js",
|
|
173
|
+
"reason": "Intentional — flagged by Socket.dev's import-graph analysis via transitive imports; McpBridge bridges MCP servers but does not make direct outbound fetch calls."
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"path": "dist/lib/mcp-tools-control.js",
|
|
177
|
+
"reason": "Intentional — flagged by Socket.dev's import-graph analysis via transitive imports; MCP control tools operate on local state, not external HTTP endpoints."
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"path": "dist/lib/mcp-tools-extended.js",
|
|
181
|
+
"reason": "Intentional — flagged by Socket.dev's import-graph analysis via transitive imports; extended MCP tools read from the local data directory, not external HTTP endpoints."
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"path": "dist/lib/playground.js",
|
|
185
|
+
"reason": "Intentional — flagged by Socket.dev's import-graph analysis via transitive imports; Playground does not make direct outbound HTTP calls."
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"path": "dist/lib/work-tree-dashboard.js",
|
|
189
|
+
"reason": "Intentional — flagged by Socket.dev's import-graph analysis via transitive imports; WorkTreeDashboard does not make direct outbound HTTP calls."
|
|
66
190
|
}
|
|
67
191
|
],
|
|
68
192
|
"urlStrings": [
|
|
@@ -145,6 +269,22 @@
|
|
|
145
269
|
{
|
|
146
270
|
"path": "examples/demo-runner.ts",
|
|
147
271
|
"reason": "Intentional — demo runner uses spawn('npx', ['ts-node', file]) to execute example scripts. This is a developer convenience script, not part of the core library."
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"path": "lib/agent-runtime.ts",
|
|
275
|
+
"reason": "Intentional — AgentRuntime's ShellExecutor uses child_process.spawn to run sandboxed shell commands within an explicit SandboxPolicy. Shell access is only available when the caller opts in by configuring and enabling the ShellExecutor."
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"path": "dist/lib/agent-runtime.js",
|
|
279
|
+
"reason": "Intentional — compiled output of AgentRuntime. ShellExecutor uses child_process.spawn for sandboxed command execution under a caller-configured SandboxPolicy."
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"path": "lib/mcp-tool-consumer.ts",
|
|
283
|
+
"reason": "Intentional — McpToolConsumer uses child_process.spawn to launch MCP server subprocesses for stdio-based MCP transport. Process spawning is required by the MCP stdio protocol; the caller provides the server command."
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"path": "dist/lib/mcp-tool-consumer.js",
|
|
287
|
+
"reason": "Intentional — compiled output of McpToolConsumer. Uses child_process.spawn to launch caller-configured MCP server subprocesses for stdio transport."
|
|
148
288
|
}
|
|
149
289
|
],
|
|
150
290
|
"filesystemAccess": [
|