network-ai 4.10.3 → 4.10.5
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 +1 -1
- package/SKILL.md +5 -34
- package/package.json +1 -1
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/SKILL.md
CHANGED
|
@@ -1,21 +1,18 @@
|
|
|
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.
|
|
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:
|
|
13
13
|
- python3
|
|
14
14
|
optional_bins: []
|
|
15
|
-
env:
|
|
16
|
-
OPENAI_API_KEY:
|
|
17
|
-
required: false
|
|
18
|
-
description: "Not used by this skill."
|
|
15
|
+
env: {}
|
|
19
16
|
privacy:
|
|
20
17
|
audit_log:
|
|
21
18
|
path: data/audit_log.jsonl
|
|
@@ -25,7 +22,7 @@ metadata:
|
|
|
25
22
|
|
|
26
23
|
# Swarm Orchestrator Skill
|
|
27
24
|
|
|
28
|
-
> **Scope:**
|
|
25
|
+
> **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
26
|
|
|
30
27
|
## Setup
|
|
31
28
|
|
|
@@ -227,7 +224,7 @@ python {baseDir}/scripts/context_manager.py update \
|
|
|
227
224
|
```bash
|
|
228
225
|
python {baseDir}/scripts/context_manager.py update \
|
|
229
226
|
--section stack \
|
|
230
|
-
--set '{"language": "
|
|
227
|
+
--set '{"language": "Python", "runtime": "Python 3.11", "framework": "SwarmOrchestrator"}'
|
|
231
228
|
```
|
|
232
229
|
|
|
233
230
|
#### Banning an Approach
|
|
@@ -315,10 +312,6 @@ python {baseDir}/scripts/blackboard.py read "task:q4_analysis"
|
|
|
315
312
|
python {baseDir}/scripts/blackboard.py list
|
|
316
313
|
```
|
|
317
314
|
|
|
318
|
-
### 5. Optional: Use the Node.js CLI
|
|
319
|
-
|
|
320
|
-
> **Scope note:** The `network-ai` CLI is part of the **companion npm package** — it is a completely separate project and is NOT part of this ClawHub skill bundle. This skill's Python scripts work fully without it. See the [Appendix](#appendix-optional-nodejs-companion-npm) at the bottom of this file for details.
|
|
321
|
-
|
|
322
315
|
## Agent-to-Agent Handoff Protocol
|
|
323
316
|
|
|
324
317
|
When delegating tasks between agents/sessions:
|
|
@@ -719,25 +712,3 @@ python {baseDir}/scripts/swarm_guard.py supervisor-review --task-id "task_001"
|
|
|
719
712
|
- [Blackboard Schema](references/blackboard-schema.md) - Data structure specifications
|
|
720
713
|
- [Agent Trust Levels](references/trust-levels.md) - How trust is calculated
|
|
721
714
|
- [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
|
+
"version": "4.10.5",
|
|
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",
|