network-ai 4.4.1 → 4.4.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "network-ai",
3
- "version": "4.4.1",
3
+ "version": "4.4.2",
4
4
  "description": "AI agent orchestration framework for TypeScript/Node.js - 14 adapters (LangChain, AutoGen, CrewAI, OpenAI Assistants, LlamaIndex, Semantic Kernel, Haystack, DSPy, Agno, MCP, OpenClaw, A2A, Codex + streaming variants). Built-in CLI, security, swarm intelligence, real-time streaming, and agentic workflow patterns.",
5
5
  "homepage": "https://github.com/jovanSAPFIONEER/Network-AI#readme",
6
6
  "main": "dist/index.js",
@@ -1,4 +1,11 @@
1
1
  #!/usr/bin/env python3
2
+ # SECURITY: This script makes NO network calls and spawns NO subprocesses.
3
+ # All I/O is local file operations only:
4
+ # READS: swarm-blackboard.md, data/pending_changes/<id>.json
5
+ # WRITES: swarm-blackboard.md, data/pending_changes/<id>.json
6
+ # Imports used: argparse, json, os, re, sys, time, hashlib, datetime, pathlib,
7
+ # typing, contextlib, fcntl (Unix file-lock only, no network use)
8
+ # No imports of: requests, socket, subprocess, urllib, http, ssl, ftplib, smtplib
2
9
  """
3
10
  Shared Blackboard - Agent Coordination State Manager (Atomic Commit Edition)
4
11
 
@@ -1,4 +1,10 @@
1
1
  #!/usr/bin/env python3
2
+ # SECURITY: This script makes NO network calls and spawns NO subprocesses.
3
+ # All I/O is local file operations only:
4
+ # READS: data/active_grants.json, data/audit_log.jsonl
5
+ # WRITES: data/active_grants.json, data/audit_log.jsonl
6
+ # Imports used: argparse, json, re, sys, uuid, datetime, pathlib, typing
7
+ # No imports of: requests, socket, subprocess, urllib, http, ssl, ftplib, smtplib
2
8
  """
3
9
  AuthGuardian Permission Checker
4
10
 
@@ -1,4 +1,10 @@
1
1
  #!/usr/bin/env python3
2
+ # SECURITY: This script makes NO network calls and spawns NO subprocesses.
3
+ # All I/O is local file operations only:
4
+ # READS: data/active_grants.json, data/audit_log.jsonl
5
+ # WRITES: data/active_grants.json, data/audit_log.jsonl
6
+ # Imports used: argparse, json, sys, datetime, pathlib, typing
7
+ # No imports of: requests, socket, subprocess, urllib, http, ssl, ftplib, smtplib
2
8
  """
3
9
  Revoke Grant Token & TTL Enforcement
4
10
 
@@ -1,4 +1,10 @@
1
1
  #!/usr/bin/env python3
2
+ # SECURITY: This script makes NO network calls and spawns NO subprocesses.
3
+ # All I/O is local file operations only:
4
+ # READS: data/swarm_budgets.json, data/heartbeats.json, data/audit_log.jsonl
5
+ # WRITES: data/swarm_budgets.json, data/heartbeats.json, data/audit_log.jsonl
6
+ # Imports used: argparse, json, sys, datetime, pathlib, typing
7
+ # No imports of: requests, socket, subprocess, urllib, http, ssl, ftplib, smtplib
2
8
  """
3
9
  Swarm Guard - Prevents Handoff Tax, Silent Failures, and Budget Overruns
4
10
 
@@ -1,4 +1,10 @@
1
1
  #!/usr/bin/env python3
2
+ # SECURITY: This script makes NO network calls and spawns NO subprocesses.
3
+ # All I/O is local file operations only:
4
+ # READS: data/active_grants.json
5
+ # WRITES: none
6
+ # Imports used: argparse, json, sys, datetime, pathlib, typing
7
+ # No imports of: requests, socket, subprocess, urllib, http, ssl, ftplib, smtplib
2
8
  """
3
9
  Validate Grant Token
4
10