network-ai 4.0.10 → 4.0.12

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.10-blue.svg)](https://github.com/jovanSAPFIONEER/Network-AI/releases)
7
+ [![Release](https://img.shields.io/badge/release-v4.0.12-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
  [![Tests](https://img.shields.io/badge/tests-1216%20passing-brightgreen.svg)](#testing)
10
10
  [![Adapters](https://img.shields.io/badge/frameworks-12%20supported-blueviolet.svg)](#adapter-system)
package/SKILL.md CHANGED
@@ -8,7 +8,8 @@ metadata:
8
8
  requires:
9
9
  bins:
10
10
  - python3
11
- - node
11
+ optional_bins:
12
+ - node # Only needed if you separately install and run the Node.js MCP server (network-ai-server via npm). Not required for this skill's Python instructions.
12
13
  env:
13
14
  SWARM_TOKEN_SECRET:
14
15
  required: false
@@ -28,6 +29,8 @@ metadata:
28
29
 
29
30
  # Swarm Orchestrator Skill
30
31
 
32
+ > **Scope of this skill bundle:** All instructions below run local Python scripts (`scripts/*.py`). No network calls are made by this skill. The Node.js MCP server (`network-ai-server`) is a **separate optional component** — install it with `npm install -g network-ai` only if you want MCP/IDE integration. It does **not** run automatically and is not part of this skill bundle.
33
+
31
34
  Multi-agent coordination system for complex workflows requiring task delegation, parallel execution, and permission-controlled access to sensitive APIs.
32
35
 
33
36
  ## 🎯 Orchestrator System Instructions
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.10
32
+ * @version 4.0.12
33
33
  */
34
34
 
35
35
  import {
@@ -106,7 +106,7 @@ function parseArgs(argv: string[]): ServerArgs {
106
106
 
107
107
  function printHelp(): void {
108
108
  console.log(`
109
- network-ai-server — Network-AI MCP Server v4.0.10
109
+ network-ai-server — Network-AI MCP Server v4.0.12
110
110
 
111
111
  Usage: npx ts-node bin/mcp-server.ts [options]
112
112
 
@@ -144,7 +144,7 @@ async function main(): Promise<void> {
144
144
  process.exit(0);
145
145
  }
146
146
 
147
- console.log(`\n[network-ai-server] Starting MCP Server v4.0.10`);
147
+ console.log(`\n[network-ai-server] Starting MCP Server v4.0.12`);
148
148
  console.log(`[network-ai-server] Board: ${args.board} | Port: ${args.port}`);
149
149
 
150
150
  // --------------------------------------------------------------------------
@@ -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.10
32
+ * @version 4.0.12
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.10
33
+ * @version 4.0.12
34
34
  */
35
35
  Object.defineProperty(exports, "__esModule", { value: true });
36
36
  const index_1 = require("../index");
@@ -106,7 +106,7 @@ function parseArgs(argv) {
106
106
  }
107
107
  function printHelp() {
108
108
  console.log(`
109
- network-ai-server — Network-AI MCP Server v4.0.10
109
+ network-ai-server — Network-AI MCP Server v4.0.12
110
110
 
111
111
  Usage: npx ts-node bin/mcp-server.ts [options]
112
112
 
@@ -140,7 +140,7 @@ async function main() {
140
140
  printHelp();
141
141
  process.exit(0);
142
142
  }
143
- console.log(`\n[network-ai-server] Starting MCP Server v4.0.10`);
143
+ console.log(`\n[network-ai-server] Starting MCP Server v4.0.12`);
144
144
  console.log(`[network-ai-server] Board: ${args.board} | Port: ${args.port}`);
145
145
  // --------------------------------------------------------------------------
146
146
  // 1. Create orchestrator + blackboard
package/dist/index.d.ts CHANGED
@@ -7,7 +7,7 @@
7
7
  * OpenClaw skill interface is implemented for backward compatibility.
8
8
  *
9
9
  * @module SwarmOrchestrator
10
- * @version 4.0.10
10
+ * @version 4.0.12
11
11
  * @license MIT
12
12
  */
13
13
  import { AdapterRegistry } from './adapters/adapter-registry';
package/dist/index.js CHANGED
@@ -8,7 +8,7 @@
8
8
  * OpenClaw skill interface is implemented for backward compatibility.
9
9
  *
10
10
  * @module SwarmOrchestrator
11
- * @version 4.0.10
11
+ * @version 4.0.12
12
12
  * @license MIT
13
13
  */
14
14
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -125,7 +125,7 @@ class McpCombinedBridge {
125
125
  return this._ok(id, {
126
126
  protocolVersion: '2024-11-05',
127
127
  capabilities: { tools: {} },
128
- serverInfo: { name: this.name ?? 'network-ai', version: '4.0.10' },
128
+ serverInfo: { name: this.name ?? 'network-ai', version: '4.0.12' },
129
129
  });
130
130
  // Client signals it's ready — notification (no response needed, but
131
131
  // some clients send it as a request with an id)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "network-ai",
3
- "version": "4.0.10",
3
+ "version": "4.0.12",
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
  "homepage": "https://github.com/jovanSAPFIONEER/Network-AI#readme",
6
6
  "main": "dist/index.js",