network-ai 4.10.3 → 4.10.4

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/SKILL.md +3 -25
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  [![Website](https://img.shields.io/badge/website-network--ai.org-4b9df2?style=flat&logo=web&logoColor=white)](https://network-ai.org/)
6
6
  [![CI](https://github.com/Jovancoding/Network-AI/actions/workflows/ci.yml/badge.svg)](https://github.com/Jovancoding/Network-AI/actions/workflows/ci.yml)
7
7
  [![CodeQL](https://github.com/Jovancoding/Network-AI/actions/workflows/codeql.yml/badge.svg)](https://github.com/Jovancoding/Network-AI/actions/workflows/codeql.yml)
8
- [![Release](https://img.shields.io/badge/release-v4.10.3-blue.svg)](https://github.com/Jovancoding/Network-AI/releases)
8
+ [![Release](https://img.shields.io/badge/release-v4.10.4-blue.svg)](https://github.com/Jovancoding/Network-AI/releases)
9
9
  [![npm](https://img.shields.io/npm/dw/network-ai.svg?label=npm%20downloads)](https://www.npmjs.com/package/network-ai)
10
10
  [![Tests](https://img.shields.io/badge/tests-1617%20passing-brightgreen.svg)](#testing)
11
11
  [![Adapters](https://img.shields.io/badge/frameworks-17%20supported-blueviolet.svg)](#adapter-system)
package/SKILL.md CHANGED
@@ -1,12 +1,12 @@
1
1
  ---
2
2
  name: Network-AI
3
- description: "Local Python orchestration skill: multi-agent workflows via shared blackboard file, permission gating, token budget scripts, and persistent project context. All execution is local with zero network calls and zero third-party dependencies."
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:
5
5
  openclaw:
6
6
  emoji: "\U0001F41D"
7
7
  homepage: https://network-ai.org
8
8
  bundle_scope: "Python scripts only (scripts/*.py). All execution is local."
9
- network_calls: none
9
+ network_calls: "none from bundled scripts; platform sessions_send delegations may invoke external models"
10
10
  sessions_ops: "platform-provided"
11
11
  requires:
12
12
  bins:
@@ -25,7 +25,7 @@ metadata:
25
25
 
26
26
  # Swarm Orchestrator Skill
27
27
 
28
- > **Scope:** All instructions below run local Python scripts (`scripts/*.py`). No network calls are made. Tokens are UUID-based (`grant_{uuid4().hex}`) stored in `data/active_grants.json`. Audit logging is plain JSONL (`data/audit_log.jsonl`).
28
+ > **Scope:** The bundled Python scripts (`scripts/*.py`) make no network calls, use only the Python standard library, and have zero third-party dependencies. Tokens are UUID-based (`grant_{uuid4().hex}`) stored in `data/active_grants.json`. Audit logging is plain JSONL (`data/audit_log.jsonl`). Workflow delegations that use the host platform's `sessions_send` may invoke external model APIs outside this skill's control.
29
29
 
30
30
  ## Setup
31
31
 
@@ -719,25 +719,3 @@ python {baseDir}/scripts/swarm_guard.py supervisor-review --task-id "task_001"
719
719
  - [Blackboard Schema](references/blackboard-schema.md) - Data structure specifications
720
720
  - [Agent Trust Levels](references/trust-levels.md) - How trust is calculated
721
721
  - [CLI Reference](QUICKSTART.md) - Full `network-ai` CLI command reference (§ 10. CLI)
722
-
723
- ---
724
-
725
- ## Appendix: Optional Node.js Companion (npm)
726
-
727
- > **This section describes a SEPARATE project — not part of this ClawHub skill bundle.**
728
- > The Python scripts above work completely without any of this.
729
- > Install only if you want MCP server integration with Claude/Cursor/VS Code.
730
-
731
- ```bash
732
- npm install -g network-ai
733
- npx network-ai-server --port 3001
734
- ```
735
-
736
- The companion npm package (`network-ai`) provides:
737
- - HMAC / Ed25519-signed audit tokens (vs UUID tokens in the Python layer)
738
- - AES-256 blackboard encryption
739
- - A standalone MCP server for IDE integration (Claude, Cursor, VS Code)
740
- - 17 framework adapters (LangChain, AutoGen, CrewAI, DSPy, LlamaIndex, NemoClaw, APS, etc.)
741
- - A full CLI (`network-ai bb`, `network-ai auth`, `network-ai budget`, `network-ai audit`)
742
-
743
- None of the above are provided by this skill's Python scripts. No network calls are made by this skill.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "network-ai",
3
- "version": "4.10.3",
3
+ "version": "4.10.4",
4
4
  "description": "AI agent orchestration framework for TypeScript/Node.js - 17 adapters (LangChain, AutoGen, CrewAI, OpenAI Assistants, LlamaIndex, Semantic Kernel, Haystack, DSPy, Agno, MCP, OpenClaw, A2A, Codex, MiniMax, NemoClaw, APS + 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",