network-ai 5.5.6 → 5.5.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/INTEGRATION_GUIDE.md +1 -1
- package/README.md +1 -1
- package/package.json +1 -1
- package/socket.json +18 -0
package/INTEGRATION_GUIDE.md
CHANGED
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "network-ai",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.7",
|
|
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",
|
package/socket.json
CHANGED
|
@@ -295,6 +295,24 @@
|
|
|
295
295
|
"reason": "Intentional — compiled output of McpToolConsumer. Uses child_process.spawn to launch caller-configured MCP server subprocesses for stdio transport."
|
|
296
296
|
}
|
|
297
297
|
],
|
|
298
|
+
"shellAccess": [
|
|
299
|
+
{
|
|
300
|
+
"path": "lib/agent-runtime.ts",
|
|
301
|
+
"reason": "Intentional — AgentRuntime imports child_process to implement ShellExecutor, which runs sandboxed shell commands under an explicit SandboxPolicy. Shell access is only exercised when the caller opts in by configuring and enabling the ShellExecutor."
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"path": "dist/lib/agent-runtime.js",
|
|
305
|
+
"reason": "Intentional — compiled output of AgentRuntime. Imports child_process for ShellExecutor; sandboxed by SandboxPolicy, opt-in only."
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"path": "lib/mcp-tool-consumer.ts",
|
|
309
|
+
"reason": "Intentional — McpToolConsumer imports child_process to spawn MCP server subprocesses for stdio-based MCP transport. Process spawning is required by the MCP stdio protocol; the caller provides the server command."
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"path": "dist/lib/mcp-tool-consumer.js",
|
|
313
|
+
"reason": "Intentional — compiled output of McpToolConsumer. Imports child_process to launch caller-configured MCP server subprocesses for stdio transport."
|
|
314
|
+
}
|
|
315
|
+
],
|
|
298
316
|
"filesystemAccess": [
|
|
299
317
|
{
|
|
300
318
|
"path": "dist/index.js",
|