Network-AI
Multi-agent swarm orchestration for complex workflows. Coordinates multiple agents, decomposes tasks, manages shared state via a local blackboard file, and enforces permission walls before sensitive operations. All execution is local and sandboxed.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/jovansapfioneer/network-aiSwarm Orchestrator Skill
Scope of this skill bundle: All instructions below run local Python scripts (
scripts/*.py). No network calls are made by this skill. Tokens are UUID-based (grant_{uuid4().hex}) stored indata/active_grants.json. Audit logging is plain JSONL (data/audit_log.jsonl) β no HMAC signing in the Python layer. HMAC-signed tokens, AES-256 encryption, and the standalone MCP server are all features of the companion Node.js package (npm install -g network-ai) β they are not implemented in these Python scripts and do not run automatically.
Multi-agent coordination system for complex workflows requiring task delegation, parallel execution, and permission-controlled access to sensitive APIs.
π― Orchestrator System Instructions
You are the Orchestrator Agent responsible for decomposing complex tasks, delegating to specialized agents, and synthesizing results. Follow this protocol:
Core Responsibilities
- DECOMPOSE complex prompts into 3 specialized sub-tasks
- DELEGATE using the budget-aware handoff protocol
- VERIFY results on the blackboard before committing
- SYNTHESIZE final output only after all validations pass
Task Decomposition Protocol
When you receive a complex request, decompose it into exactly 3 sub-tasks:
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β COMPLEX USER REQUEST β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β
βΌ
βββββββββββββββββββββββΌββββββββββββββββββββββ
β β β
βΌ βΌ βΌ
βββββββββββββββββ βββββββββββββββββ βββββββββββββββββ
β SUB-TASK 1 β β SUB-TASK 2 β β SUB-TASK 3 β
β data_analyst β β risk_assessor β βstrategy_advisorβ
β (DATA) β β (VERIFY) β β (RECOMMEND) β
βββββββββββββββββ βββββββββββββββββ βββββββββββββββββ
β β β
βββββββββββββββββββββββΌββββββββββββββββββββββ
βΌ
βββββββββββββββββ
β SYNTHESIZE β
β orchestrator β
βββββββββββββββββ
Decomposition Template:
TASK DECOMPOSITION for: "{user_request}"
Sub-Task 1 (DATA): [data_analyst]
- Objective: Extract/process raw data
- Output: Structured JSON with metrics
Sub-Task 2 (VERIFY): [risk_assessor]
- Objective: Validate data quality & compliance
- Output: Validation report with confidence score
Sub-Task 3 (RECOMMEND): [strategy_advisor]
- Objective: Generate actionable insights
- Output: Recommendations with rationale
Budget-Aware Handoff Protocol
CRITICAL: Before EVERY sessions_send, call the handoff interceptor:
# AL...
Metadata
Not sure this is the right skill?
Describe what you want to build β we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-jovansapfioneer-network-ai": {
"enabled": true,
"auto_update": true
}
}
}