You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,13 @@ All notable changes to Network-AI will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [4.10.4] - 2026-03-22
9
+
10
+
### Fixed
11
+
- Reworded skill description and scope to accurately state that bundled Python scripts make no network calls while platform `sessions_send` delegations may invoke external model APIs (fixes ClawHub scanner "scope mismatch" finding)
12
+
- Removed Node.js companion appendix from `SKILL.md` to eliminate all networked-component references from the skill bundle
13
+
- Updated `network_calls` metadata from `none` to accurately describe platform delegation behavior
Copy file name to clipboardExpand all lines: SKILL.md
+3-25Lines changed: 3 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -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.
Copy file name to clipboardExpand all lines: skill.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
{
2
2
"name": "SwarmOrchestrator",
3
-
"version": "4.10.3",
4
-
"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
+
"version": "4.10.4",
4
+
"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.",
0 commit comments