network-ai 4.0.5 → 4.0.6

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 CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  [![CI](https://github.com/jovanSAPFIONEER/Network-AI/actions/workflows/ci.yml/badge.svg)](https://github.com/jovanSAPFIONEER/Network-AI/actions/workflows/ci.yml)
6
6
  [![CodeQL](https://github.com/jovanSAPFIONEER/Network-AI/actions/workflows/codeql.yml/badge.svg)](https://github.com/jovanSAPFIONEER/Network-AI/actions/workflows/codeql.yml)
7
- [![Release](https://img.shields.io/badge/release-v4.0.5-blue.svg)](https://github.com/jovanSAPFIONEER/Network-AI/releases)
7
+ [![Release](https://img.shields.io/badge/release-v4.0.6-blue.svg)](https://github.com/jovanSAPFIONEER/Network-AI/releases)
8
8
  [![npm](https://img.shields.io/npm/dw/network-ai.svg?label=npm%20downloads)](https://www.npmjs.com/package/network-ai)
9
9
  [![ClawHub](https://img.shields.io/badge/ClawHub-network--ai-orange.svg)](https://clawhub.ai/skills/network-ai)
10
10
  [![Node.js](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen.svg)](https://nodejs.org)
package/bin/mcp-server.ts CHANGED
@@ -29,7 +29,7 @@
29
29
  * http://localhost:3001/tools (list all tools)
30
30
  *
31
31
  * @module bin/mcp-server
32
- * @version 4.0.0
32
+ * @version 4.0.6
33
33
  */
34
34
 
35
35
  import {
@@ -103,7 +103,7 @@ function parseArgs(argv: string[]): ServerArgs {
103
103
 
104
104
  function printHelp(): void {
105
105
  console.log(`
106
- network-ai-server — Network-AI MCP Server v4.0.0
106
+ network-ai-server — Network-AI MCP Server v4.0.6
107
107
 
108
108
  Usage: npx ts-node bin/mcp-server.ts [options]
109
109
 
@@ -140,7 +140,7 @@ async function main(): Promise<void> {
140
140
  process.exit(0);
141
141
  }
142
142
 
143
- console.log(`\n[network-ai-server] Starting MCP Server v4.0.0`);
143
+ console.log(`\n[network-ai-server] Starting MCP Server v4.0.6`);
144
144
  console.log(`[network-ai-server] Board: ${args.board} | Port: ${args.port}`);
145
145
 
146
146
  // --------------------------------------------------------------------------
@@ -29,7 +29,7 @@
29
29
  * http://localhost:3001/tools (list all tools)
30
30
  *
31
31
  * @module bin/mcp-server
32
- * @version 4.0.0
32
+ * @version 4.0.6
33
33
  */
34
34
  export {};
35
35
  //# sourceMappingURL=mcp-server.d.ts.map
@@ -30,7 +30,7 @@
30
30
  * http://localhost:3001/tools (list all tools)
31
31
  *
32
32
  * @module bin/mcp-server
33
- * @version 4.0.0
33
+ * @version 4.0.6
34
34
  */
35
35
  Object.defineProperty(exports, "__esModule", { value: true });
36
36
  const index_1 = require("../index");
@@ -102,7 +102,7 @@ function parseArgs(argv) {
102
102
  }
103
103
  function printHelp() {
104
104
  console.log(`
105
- network-ai-server — Network-AI MCP Server v4.0.0
105
+ network-ai-server — Network-AI MCP Server v4.0.6
106
106
 
107
107
  Usage: npx ts-node bin/mcp-server.ts [options]
108
108
 
@@ -135,7 +135,7 @@ async function main() {
135
135
  printHelp();
136
136
  process.exit(0);
137
137
  }
138
- console.log(`\n[network-ai-server] Starting MCP Server v4.0.0`);
138
+ console.log(`\n[network-ai-server] Starting MCP Server v4.0.6`);
139
139
  console.log(`[network-ai-server] Board: ${args.board} | Port: ${args.port}`);
140
140
  // --------------------------------------------------------------------------
141
141
  // 1. Create orchestrator + blackboard
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "network-ai",
3
- "version": "4.0.5",
3
+ "version": "4.0.6",
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",
@@ -96,6 +96,7 @@
96
96
  "README.md",
97
97
  "QUICKSTART.md",
98
98
  "SKILL.md",
99
- "LICENSE"
99
+ "LICENSE",
100
+ "socket.json"
100
101
  ]
101
102
  }
package/socket.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "version": 2,
3
+ "ignore": {
4
+ "evalDynamicCodeExecution": [
5
+ {
6
+ "path": "dist/lib/blackboard-validator.js",
7
+ "reason": "False positive — this is a security detection pattern that scans for eval() usage in untrusted agent code. It is not dynamic code execution."
8
+ }
9
+ ],
10
+ "networkAccess": [
11
+ {
12
+ "path": "dist/adapters/custom-adapter.js",
13
+ "reason": "Intentional — CustomAdapter is a user-configured HTTP adapter that calls a user-supplied URL (config.url) to connect to external AI endpoints. Network access is the explicit purpose of this adapter."
14
+ },
15
+ {
16
+ "path": "dist/lib/mcp-transport-sse.ts",
17
+ "reason": "Intentional — McpSseTransport is an HTTP/SSE transport layer for the MCP protocol. Both the server (createServer) and client (http.request) directions are the explicit purpose of this module."
18
+ },
19
+ {
20
+ "path": "dist/lib/mcp-transport-sse.js",
21
+ "reason": "Intentional — McpSseTransport is an HTTP/SSE transport layer for the MCP protocol. Both the server (createServer) and client (http.request) directions are the explicit purpose of this module."
22
+ },
23
+ {
24
+ "path": "dist/bin/mcp-server.js",
25
+ "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."
26
+ }
27
+ ]
28
+ }
29
+ }