network-ai 3.1.2 → 3.1.3

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 +6 -4
  2. package/SKILL.md +6 -3
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,8 @@
2
2
 
3
3
  **The plug-and-play AI agent orchestrator for TypeScript/Node.js -- connect 12 agent frameworks with zero glue code**
4
4
 
5
- [![Release](https://img.shields.io/badge/release-v3.1.0-blue.svg)](https://github.com/jovanSAPFIONEER/Network-AI/releases)
5
+ [![Release](https://img.shields.io/badge/release-v3.1.2-blue.svg)](https://github.com/jovanSAPFIONEER/Network-AI/releases)
6
+ [![ClawHub](https://img.shields.io/badge/ClawHub-network--ai-orange.svg)](https://clawhub.ai/skills/network-ai)
6
7
  [![Node.js](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen.svg)](https://nodejs.org)
7
8
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.x-3178C6.svg)](https://typescriptlang.org)
8
9
  [![Python](https://img.shields.io/badge/python-3.9+-green.svg)](https://python.org)
@@ -122,6 +123,7 @@ Network-AI wraps your agent swarm with **file-system mutexes**, **atomic commits
122
123
  ### Security Module (Defense-in-Depth)
123
124
  - **HMAC-Signed Tokens** -- Cryptographic token generation with expiration
124
125
  - **Input Sanitization** -- XSS, injection, path traversal, and prototype pollution prevention
126
+ - **Blackboard Path Safety** -- Change ID sanitization prevents directory traversal in atomic commits
125
127
  - **Rate Limiting** -- Per-agent request throttling with lockout on failed auth
126
128
  - **AES-256-GCM Encryption** -- Encrypt sensitive blackboard entries at rest
127
129
  - **Privilege Escalation Prevention** -- Trust-ceiling enforcement
@@ -229,10 +231,10 @@ Copy this skill into your OpenClaw workspace:
229
231
  cp -r Network-AI ~/.openclaw/workspace/skills/swarm-orchestrator
230
232
  ```
231
233
 
232
- Or install via ClawHub (when available):
234
+ Or install via ClawHub:
233
235
 
234
236
  ```bash
235
- openclaw skills install swarm-orchestrator
237
+ clawhub install network-ai
236
238
  ```
237
239
 
238
240
  ## Usage
@@ -618,6 +620,6 @@ If you're using LangGraph, Dify, Flowise, PraisonAI, AutoGen/AG2, CrewAI, or any
618
620
  <details>
619
621
  <summary>Keywords (for search)</summary>
620
622
 
621
- ai-agents, agentic-ai, multi-agent, multi-agent-systems, multi-agent-system, agent-framework, ai-agent-framework, agentic-framework, agentic-workflow, llm, llm-agents, llm-agent, large-language-models, generative-ai, genai, orchestration, ai-orchestration, swarm, swarm-intelligence, autonomous-agents, agents, ai, typescript, nodejs, mcp, model-context-protocol, a2a, agent-to-agent, function-calling, tool-integration, context-engineering, rag, ai-safety, multi-agents-collaboration, multi-agents, aiagents, aiagentframework, plug-and-play, adapter-registry, blackboard-pattern, agent-coordination, agent-handoffs, token-permissions, budget-tracking, cost-awareness, atomic-commits, hallucination-detection, content-quality-gate, OpenClaw, Clawdbot, Moltbot, Clawdbot Swarm, Moltbot Security, Moltbot multi-agent, OpenClaw skills, AgentSkills, LangChain adapter, LangGraph, AutoGen adapter, AG2, CrewAI adapter, MCP adapter, LlamaIndex adapter, Semantic Kernel adapter, OpenAI Assistants adapter, Haystack adapter, DSPy adapter, Agno adapter, Phidata adapter, Dify, Flowise, PraisonAI, custom-adapter, AES-256 encryption, HMAC tokens, rate limiting, input sanitization, privilege escalation prevention, agentic-rag, deep-research, workflow-orchestration, ai-assistant, ai-tools, developer-tools, open-source
623
+ ai-agents, agentic-ai, multi-agent, multi-agent-systems, multi-agent-system, agent-framework, ai-agent-framework, agentic-framework, agentic-workflow, llm, llm-agents, llm-agent, large-language-models, generative-ai, genai, orchestration, ai-orchestration, swarm, swarm-intelligence, autonomous-agents, agents, ai, typescript, nodejs, mcp, model-context-protocol, a2a, agent-to-agent, function-calling, tool-integration, context-engineering, rag, ai-safety, multi-agents-collaboration, multi-agents, aiagents, aiagentframework, plug-and-play, adapter-registry, blackboard-pattern, agent-coordination, agent-handoffs, token-permissions, budget-tracking, cost-awareness, atomic-commits, hallucination-detection, content-quality-gate, OpenClaw, Clawdbot, Moltbot, Clawdbot Swarm, Moltbot Security, Moltbot multi-agent, OpenClaw skills, AgentSkills, LangChain adapter, LangGraph, AutoGen adapter, AG2, CrewAI adapter, MCP adapter, LlamaIndex adapter, Semantic Kernel adapter, OpenAI Assistants adapter, Haystack adapter, DSPy adapter, Agno adapter, Phidata adapter, Dify, Flowise, PraisonAI, custom-adapter, AES-256 encryption, HMAC tokens, rate limiting, input sanitization, privilege escalation prevention, ClawHub, clawhub, agentic-rag, deep-research, workflow-orchestration, ai-assistant, ai-tools, developer-tools, open-source
622
624
 
623
625
  </details>
package/SKILL.md CHANGED
@@ -8,7 +8,6 @@ metadata:
8
8
  requires:
9
9
  bins:
10
10
  - python3
11
- - node
12
11
  ---
13
12
 
14
13
  # Swarm Orchestrator Skill
@@ -370,11 +369,12 @@ Sequential processing - output of one feeds into next.
370
369
 
371
370
  ## Security Considerations
372
371
 
373
- 1. **Never bypass the permission wall** for DATABASE/PAYMENTS APIs
372
+ 1. **Never bypass the permission wall** for gated resources
374
373
  2. **Always include justification** explaining the business need
375
374
  3. **Use minimal scope** - request only what you need
376
375
  4. **Check token expiry** - tokens are valid for 5 minutes
377
- 5. **Audit trail** - all permission requests are logged
376
+ 5. **Validate tokens** - use `python {baseDir}/scripts/validate_token.py TOKEN` to verify grant tokens before use
377
+ 6. **Audit trail** - all permission requests are logged
378
378
 
379
379
  ## 📝 Audit Trail Requirements (MANDATORY)
380
380
 
@@ -446,6 +446,9 @@ with open(audit_file, "a") as f:
446
446
  Expired permission tokens are automatically tracked. Run periodic cleanup:
447
447
 
448
448
  ```bash
449
+ # Validate a grant token
450
+ python {baseDir}/scripts/validate_token.py grant_a1b2c3d4e5f6
451
+
449
452
  # List expired tokens (without removing)
450
453
  python {baseDir}/scripts/revoke_token.py --list-expired
451
454
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "network-ai",
3
- "version": "3.1.2",
3
+ "version": "3.1.3",
4
4
  "description": "AI agent orchestration framework for TypeScript/Node.js - plug-and-play multi-agent coordination with 12 frameworks (LangChain, AutoGen, CrewAI, OpenAI Assistants, LlamaIndex, Semantic Kernel, Haystack, DSPy, Agno, MCP, OpenClaw). Built-in security, swarm intelligence, and agentic workflow patterns.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",