network-ai 4.11.0 → 4.11.2
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 +19 -9
- 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
|
@@ -5,9 +5,10 @@ metadata:
|
|
|
5
5
|
openclaw:
|
|
6
6
|
emoji: "\U0001F41D"
|
|
7
7
|
homepage: https://network-ai.org
|
|
8
|
-
bundle_scope: "Python scripts only (scripts/*.py). All execution is local."
|
|
9
|
-
network_calls: "none
|
|
10
|
-
|
|
8
|
+
bundle_scope: "Python scripts only (scripts/*.py). All execution is local. Only Python stdlib — no other runtimes, adapters, or CLI tools are included."
|
|
9
|
+
network_calls: "none — bundled scripts make zero network calls. The host platform's sessions_send (not part of this skill) may invoke external models."
|
|
10
|
+
sessions_send: "NOT implemented or invoked by this skill. sessions_send is a host-platform built-in. This skill only provides budget guards that run before the platform delegates."
|
|
11
|
+
sessions_ops: "platform-provided — outside this skill's control"
|
|
11
12
|
requires:
|
|
12
13
|
bins:
|
|
13
14
|
- python3
|
|
@@ -18,11 +19,21 @@ metadata:
|
|
|
18
19
|
path: data/audit_log.jsonl
|
|
19
20
|
scope: local-only
|
|
20
21
|
description: "Local append-only JSONL file recording operation metadata. No data leaves the machine."
|
|
22
|
+
pii_warning: "Do not include PII, secrets, or credentials in justification fields. Log entries persist on disk."
|
|
23
|
+
data_directory:
|
|
24
|
+
path: data/
|
|
25
|
+
scope: local-only
|
|
26
|
+
files: ["audit_log.jsonl", "active_grants.json", "project-context.json"]
|
|
27
|
+
description: "All persistent state is local-only. No files are transmitted over the network."
|
|
21
28
|
---
|
|
22
29
|
|
|
23
30
|
# Swarm Orchestrator Skill
|
|
24
31
|
|
|
25
|
-
> **Scope:** The bundled Python scripts (`scripts/*.py`) make no network calls
|
|
32
|
+
> **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`).
|
|
33
|
+
|
|
34
|
+
> **Data-flow notice:** This skill does NOT implement, invoke, or control `sessions_send`. That is a host-platform built-in (OpenClaw runtime). The orchestration instructions below describe *when* to call the platform's `sessions_send` after budget checks pass — but the actual network call, model endpoint, and data transmission are entirely the host platform's responsibility. If you need to prevent external network calls, disable or reroute `sessions_send` in your platform settings before installing this skill.
|
|
35
|
+
|
|
36
|
+
> **PII / sensitive-data warning:** The `justification` field in permission requests and the audit log (`data/audit_log.jsonl`) store free-text strings provided by agents. **Do not include PII, secrets, or credentials in justification text.** Consider restricting file permissions on `data/` or running this skill in an isolated workspace.
|
|
26
37
|
|
|
27
38
|
## Setup
|
|
28
39
|
|
|
@@ -387,7 +398,7 @@ Expected Output: JSON summary with category, revenue, growth_pct
|
|
|
387
398
|
sessions_history data_analyst # OpenClaw platform operation — get the response
|
|
388
399
|
```
|
|
389
400
|
|
|
390
|
-
## Permission Wall
|
|
401
|
+
## Permission Wall
|
|
391
402
|
|
|
392
403
|
**CRITICAL**: Always check permissions before accessing:
|
|
393
404
|
- `DATABASE` - Internal database / data store access
|
|
@@ -515,6 +526,8 @@ Sequential processing - output of one feeds into next.
|
|
|
515
526
|
|
|
516
527
|
**Every sensitive action MUST be logged to `data/audit_log.jsonl`** to maintain compliance and enable forensic analysis.
|
|
517
528
|
|
|
529
|
+
> **Privacy note:** Audit log entries contain agent-provided free-text fields (justifications, descriptions). These are stored locally in `data/audit_log.jsonl` and never transmitted over the network by this skill. However, **do not put PII, passwords, or API keys in justification strings** — they persist on disk. Consider periodic log rotation and restricting OS file permissions on the `data/` directory.
|
|
530
|
+
|
|
518
531
|
### What Gets Logged Automatically
|
|
519
532
|
|
|
520
533
|
The scripts automatically log these events:
|
|
@@ -708,7 +721,4 @@ python {baseDir}/scripts/swarm_guard.py supervisor-review --task-id "task_001"
|
|
|
708
721
|
|
|
709
722
|
## References
|
|
710
723
|
|
|
711
|
-
|
|
712
|
-
- [Blackboard Schema](references/blackboard-schema.md) - Data structure specifications
|
|
713
|
-
- [Agent Trust Levels](references/trust-levels.md) - How trust is calculated
|
|
714
|
-
- [CLI Reference](QUICKSTART.md) - Full `network-ai` CLI command reference (§ 10. CLI)
|
|
724
|
+
This skill is part of the larger [Network-AI](https://github.com/Jovancoding/Network-AI) project. See the repository for full documentation on the permission system, blackboard schema, and trust-level calculations.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "network-ai",
|
|
3
|
-
"version": "4.11.
|
|
3
|
+
"version": "4.11.2",
|
|
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",
|