{
  "markdown": "# Network-AI\n\n**TypeScript/Node.js multi-agent orchestrator — shared state, guardrails, budgets, and cross-framework coordination**\n\n[![Website](https://img.shields.io/badge/website-network--ai.org-4b9df2?style=flat&logo=web&logoColor=white)](https://network-ai.org/)\n[![CI](https://github.com/Jovancoding/Network-AI/actions/workflows/ci.yml/badge.svg)](https://github.com/Jovancoding/Network-AI/actions/workflows/ci.yml)\n[![CodeQL](https://github.com/Jovancoding/Network-AI/actions/workflows/codeql.yml/badge.svg)](https://github.com/Jovancoding/Network-AI/actions/workflows/codeql.yml)\n[![Release](https://img.shields.io/badge/release-v5.15.1-blue.svg)](https://github.com/Jovancoding/Network-AI/releases)\n[![npm](https://img.shields.io/npm/dw/network-ai.svg?label=npm%20downloads)](https://www.npmjs.com/package/network-ai)\n[![Tests](https://img.shields.io/badge/tests-3638%20passing-brightgreen.svg)](#testing)\n[![Adapters](https://img.shields.io/badge/frameworks-32%20supported-blueviolet.svg)](#adapter-system)\n[![License](https://img.shields.io/badge/license-MIT-brightgreen.svg)](LICENSE)\n[![Socket](https://socket.dev/api/badge/npm/package/network-ai)](https://socket.dev/npm/package/network-ai/overview)\n[![Node.js](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen.svg)](https://nodejs.org)\n[![TypeScript](https://img.shields.io/badge/TypeScript-6.x-3178C6.svg)](https://typescriptlang.org)\n[![ClawHub](https://img.shields.io/badge/ClawHub-network--ai-orange.svg)](https://clawhub.ai/jovancoding/network-ai)\n[![Integration Guide](https://img.shields.io/badge/docs-integration%20guide-informational.svg)](INTEGRATION_GUIDE.md)\n[![Sponsor](https://img.shields.io/badge/sponsor-support%20the%20project-f15bb5.svg)](https://github.com/sponsors/Jovancoding)\n[![Discord](https://img.shields.io/badge/Discord-Join%20Community-5865F2?logo=discord&logoColor=white)](https://discord.gg/Cab5vAxc86)\n[![Glama](https://glama.ai/mcp/servers/Jovancoding/network-ai/badges/score.svg)](https://glama.ai/mcp/servers/Jovancoding/network-ai)\n\n<p align=\"center\">\n  <img src=\"assets/demo.svg\" alt=\"Network-AI control-plane demo — atomic blackboard, priority preemption, AuthGuardian, FSM governance\" width=\"720\">\n</p>\n\n<p align=\"center\">\n  <b>If Network-AI is useful to you, consider <a href=\"https://github.com/Jovancoding/Network-AI\">giving it a star ⭐</a> — it helps others find the project.</b>\n</p>\n\nNetwork-AI is a TypeScript/Node.js multi-agent orchestrator that adds coordination, guardrails, and governance to any AI agent stack.\n\n- **Shared blackboard with locking** — atomic `propose → validate → commit` prevents race conditions and split-brain failures across parallel agents\n- **Guardrails and budgets** — FSM governance, per-agent token ceilings, HMAC / Ed25519 audit trails, and permission gating\n- **Context signal-over-noise (v5.15)** — `ContextComposer` assembles token-budgeted, relevance-ranked context packs (semantic/lexical × recency decay × scope affinity, position-aware layout); `context_pack` + `blackboard_search` MCP tools let agents pull curated state instead of dumping the whole board into their window\n- **32 adapters** — LangChain (+ streaming), AutoGen, CrewAI, OpenAI Assistants, OpenAI Responses (Assistants successor), LlamaIndex, Semantic Kernel, Haystack, DSPy, Agno, MCP, Custom (+ streaming), OpenClaw, A2A, Codex, MiniMax, NemoClaw, APS, Copilot, LangGraph, Anthropic Computer Use, Claude Agent SDK (agentic loops), OpenAI Agents SDK, Vertex AI, Gemini (Developer API), Pydantic AI, Browser Agent, Hermes (NousResearch Hermes / any OpenAI-compatible endpoint), Orchestrator (hierarchical multi-orchestrator), and RLM (Recursive Language Model / any RLM-compatible HTTP endpoint) — no glue code, no lock-in\n- **Persistent project memory (Layer 3)** — `context_manager.py` injects decisions, goals, stack, milestones, and banned patterns into every system prompt so agents always have full project context\n- **v5.0 modules** — Agent VCR (record/replay), comparison runner, coverage reporter, goal DSL, approval inbox, job queue, gRPC/HTTP transport, playground REPL, adapter test harness, and more\n- **Model-interaction lifecycle governance (v5.13)** — `GovernedModelGateway` absorbs the model refusal → fallback → billing chain (cross-model fallback, fallback-credit repricing, effort governance, thinking-block handoff) behind one governed, budgeted, audited call\n\n> **The silent failure mode in multi-agent systems:** parallel agents writing to the same key\n> use last-write-wins by default — one agent's result silently overwrites another's mid-flight.\n> The outcome is split-brain state: double-spends, contradictory decisions, corrupted context,\n> no error thrown. Network-AI's `propose → validate → commit` mutex prevents this at the\n> coordination layer, before any write reaches shared state.\n\n**Use Network-AI as:**\n- A **TypeScript/Node.js library** — `import { createSwarmOrchestrator } from 'network-ai'`\n- An **MCP server** — `npx network-ai-server --port 3001`\n- A **CLI** — `network-ai bb get status` / `network-ai audit tail`\n- A **Claude Code plugin** — `/plugin install network-ai@network-ai`\n- A **Gemini CLI extension** — `gemini extensions install https://github.com/Jovancoding/Network-AI`\n- An **OpenClaw skill** — `clawhub install network-ai`\n\n[**5-minute quickstart →**](QUICKSTART.md) &nbsp;|&nbsp; [**Architecture →**](ARCHITECTURE.md) &nbsp;|&nbsp; [**All adapters →**](#adapter-system) &nbsp;|&nbsp; [**Benchmarks →**](BENCHMARKS.md)\n\n---\n\n## 🛡️ Model-Interaction Lifecycle Governance\n\nMost governance tools stop at the agent boundary — they police which tools an agent may call *before* it acts. Network-AI also governs the layer underneath: **how an agent talks to the model.** When a frontier model declines a request with a classifier refusal, Network-AI absorbs the refusal → fallback → billing chain and presents one governed, budgeted, audited call.\n\n- **`GovernedModelGateway`** — detect `stop_reason:\"refusal\"`, audit which classifier fired, route to a fallback model, and redeem the fallback-credit token so the retry is repriced as a cache read.\n- **`ModelBudget`** — per-model USD accounting with fallback-credit repricing; never sums tokens across models.\n- **`RefusalTelemetry`** — a refusal is an HTTP 200, invisible to error-rate monitoring; emitted as a discrete non-error signal with an `unservedRefusalCount` gap to alert on.\n- **`EffortPolicy`** — turn the `effort` cost dial into a policy object: cap sub-agents at `low`, require justification for `xhigh`/`max`.\n- **`ThinkingBlockManager`** — keep thinking blocks unchanged on the same model; strip them on a cross-model fallback; guard prompts against `reasoning_extraction` refusals.\n- **Per-sub-agent fallback** — `FanOutFanIn` steps and `TeamRunner` tasks each carry their own fallback agent and per-request retry budget (`RetryBudget`), because a turn can refuse independently across an agent and its sub-agents.\n\n```typescript\nimport { AnthropicMessagesAdapter, ModelBudget, RefusalTelemetry } from 'network-ai';\n\nconst adapter = new AnthropicMessagesAdapter();\nawait adapter.initialize({});\nadapter.registerModelAgent('analyst', {\n  client,                              // bring your own Anthropic client\n  model: 'claude-fable-5',\n  fallbackModels: ['claude-opus-4-8'], // classifier refusals fall through here\n  budget: new ModelBudget({\n    ceilingUsd: 5,\n    pricing: {\n      'claude-fable-5': { inputPerMTok: 10, outputPerMTok: 50 },\n      'claude-opus-4-8': { inputPerMTok: 5, outputPerMTok: 25 },\n    },\n  }),\n  telemetry: new RefusalTelemetry(),\n});\nconst result = await adapter.executeAgent('analyst', { action: 'Summarize Q3 results', params: {} }, { agentId: 'cli' });\n// result.data: { servedModel, servedByFallback, refused, refusalCategories, attempts, totalCostUsd }\n```\n\n### OWASP Agentic AI Top 10 (2026) — engine coverage\n\nVerify programmatically with `verifyOwaspCoverage()` (exported from `network-ai`):\n\n| Risk | Status | Primary control |\n|---|---|---|\n| ASI-01 Agent Goal Hijack | ✅ Covered | AuthGuardian gating + JourneyFSM control plane |\n| ASI-02 Tool Misuse & Exploitation | ✅ Covered | AgentRuntime SandboxPolicy + ApprovalGate |\n| ASI-03 Identity & Privilege Abuse | ✅ Covered | HMAC / Ed25519 signed tokens + trust scoring |\n| ASI-04 Supply Chain Risks | ✅ Covered | 1 runtime dep + socket / clawhub / codeql gates |\n| ASI-05 Unsafe Code Execution | ✅ Covered | ShellExecutor `shell:false` argv + path guards |\n| ASI-06 Memory & Context Poisoning | ✅ Covered | LockedBlackboard + injection detection |\n| ASI-07 Insecure Inter-Agent Comms | 🟡 Partial | FS-mutex + signed handoffs (local-trust boundary) |\n| ASI-08 Cascading Failures | ✅ Covered | CircuitBreaker + budgets + RetryBudget |\n| ASI-09 Human-Agent Trust Exploitation | ✅ Covered | ApprovalGate + tamper-evident audit trail |\n| ASI-10 Rogue Agents | ✅ Covered | ComplianceMonitor + circuit-breaker kill switch |\n\n---\n\n## ⚡ Try in 60 Seconds\n\n```bash\nnpm install network-ai\n```\n\n```typescript\nimport { LockedBlackboard } from 'network-ai';\n\nconst board = new LockedBlackboard('.');\nconst id    = board.propose('status', { ready: true }, 'agent-1');\nboard.validate(id, 'agent-1');\nboard.commit(id);\n\nconsole.log(board.read('status'));  // { ready: true }\n```\n\nTwo agents, atomic writes, no race conditions. That's it.\n\nWant the full stress test? **No API key, ~3 seconds:**\n\n```bash\nnpx ts-node examples/08-control-plane-stress-demo.ts\n```\n\nRuns priority preemption, AuthGuardian permission gating, FSM governance, and compliance monitoring — all without a single LLM call.\n\n> If it saves you from a race condition, a ⭐ helps others find it.\n\n---\n\n## What's Included\n\n| | |\n|---|---|\n| ✅ Atomic shared state | `propose → validate → commit` with filesystem mutex — no split-brain |\n| ✅ Token budgets | Hard per-agent ceilings with live spend tracking |\n| ✅ Permission gating | HMAC / Ed25519-signed tokens, scoped per agent and resource |\n| ✅ Append-only audit log | Every write, grant, and transition signed and logged |\n| ✅ 32 framework adapters | LangChain, CrewAI, AutoGen, MCP, Codex, Gemini, APS, RLM, and 24 more — zero lock-in |\n| ✅ FSM governance | Hard-stop agents at state boundaries, timeout enforcement |\n| ✅ Compliance monitoring | Real-time violation detection (tool abuse, turn-taking, timeouts) |\n| ✅ Claim verification | Tier 1 agent honesty — outcome-bound signed receipts, manifest reconciliation, trust decay for liars |\n| ✅ QA orchestration | Scenario replay, feedback loops, regression tracking, contradiction detection |\n| ✅ Deferred adapter init | Lazy-load adapters on first use — zero startup cost for unused frameworks |\n| ✅ Hook middleware | `beforeExecute` / `afterExecute` / `onError` hooks on any adapter call |\n| ✅ Flow control | Pause / resume / throttle writes on the blackboard |\n| ✅ Skill composition | `chain()` / `batch()` / `loop()` / `verify()` meta-operations over agent calls |\n| ✅ Semantic memory search | BYOE vector store with cosine similarity over blackboard data |\n| ✅ Phase pipeline | Multi-phase workflows with human-in-the-loop approval gates; `approvalTimeoutMs` fail-closed timeout prevents indefinite hangs |\n| ✅ Confidence filtering | Multi-agent result scoring, threshold validation, and consensus aggregation |\n| ✅ Matcher-based hooks | Glob patterns on agent/action/tool for targeted hook filtering |\n| ✅ Fan-out / fan-in | Parallel agent spawning with pluggable aggregation strategies |\n| ✅ Agent runtime sandbox | Sandboxed shell execution with policy enforcement and approval gates |\n| ✅ Interactive console | TUI dashboard for live monitoring, agent control, blackboard/budget/FSM management |\n| ✅ Pipe mode | JSON stdin/stdout protocol for programmatic AI-to-orchestrator control |\n| ✅ Strategy agent | Meta-orchestrator with elastic agent pools, workload partitioning, and adaptive scaling |\n| ✅ Goal decomposer | LLM-powered goal → task DAG → parallel execution with `runTeam()` one-liner |\n| ✅ Context Throttler | Prune blackboard keys per agent scope before LLM calls — prevent context pollution |\n| ✅ Partition Planner | Assign non-overlapping focus areas to agents before DAG execution — no redundant research |\n| ✅ Coverage Gate | Recursive refinement loop — re-run decomposer for gaps until coverage score ≥ threshold |\n| ✅ Route Classifier | Short-circuit routing — classify goals as factual lookup vs. complex synthesis before planning |\n| ✅ Goal DSL | YAML/JSON goal definitions with cycle detection and topological compilation |\n| ✅ Agent VCR | Record and replay LLM/agent interactions for deterministic tests |\n| ✅ Comparison runner | Side-by-side adapter comparison with scoring, timing, cost analysis |\n| ✅ Coverage reporter | V8 coverage collection with threshold enforcement |\n| ✅ Job queue | Persistent priority FIFO with retries, crash recovery, pluggable backends |\n| ✅ Approval inbox | Web-accessible approval queue with REST API and SSE streaming |\n| ✅ TTL auto-eviction | `purgeExpired()` on-demand eviction; `startSweep(intervalMs)` / `stopSweep()` background timer (unref'd, default 60 s) |\n| ✅ WAL crash recovery | `LockedBlackboard` Write-Ahead Log survives process crashes; `replayWAL()` replays uncommitted ops on restart; `compactWAL()` for manual truncation |\n| ✅ Circuit Breaker | `AdapterRegistry` per-adapter CLOSED/OPEN/HALF_OPEN state machine; `fallbackChain` for automatic failover; `CircuitOpenError`; zero added dependencies |\n| ✅ OTel telemetry hooks | `ITelemetryProvider` BYOT abstraction — `NullTelemetryProvider`, `CapturingTelemetryProvider`, `createOtelHooks()` factory; plug in any OTel SDK without modifying adapters |\n| ✅ Transport layer | JSON-RPC 2.0 over HTTP with HMAC auth, TTL, node allowlisting |\n| ✅ Playground REPL | Interactive sandbox with mock agents for rapid prototyping |\n| ✅ Adapter test harness | Parameterized test battery for any adapter implementation |\n| ✅ IAuthValidator | Interface to decouple authorization from concrete AuthGuardian |\n| ✅ Kill switch | `network-ai pause` / `resume` — `SYSTEM_PAUSED` sentinel; `doctor` self-diagnostics; `inspect <key>` metadata + audit trail |\n| ✅ Minimal mode | `--minimal` / `NETWORK_AI_MINIMAL=1` — skips WAL replay and sweep for fast CI/test startup |\n| ✅ TypeScript native | ES2022 strict mode, zero native dependencies |\n\n---\n\n## Why teams use Network-AI\n\n| Problem | How Network-AI solves it |\n|---|---|\n| Race conditions in parallel agents | Atomic blackboard: `propose → validate → commit` with file-system mutex |\n| Agent overspend / runaway costs | `FederatedBudget` — hard per-agent token ceilings with live spend tracking |\n| No visibility into what agents did | HMAC / Ed25519-signed audit log on every write, permission grant, and FSM transition |\n| Locked into one AI framework | 32 adapters — mix LangChain + AutoGen + CrewAI + Codex + Gemini + MiniMax + NemoClaw + APS + LangGraph + Vertex AI + Hermes + RLM + custom in one swarm |\n| Agents escalating beyond their scope | `AuthGuardian` — scoped permission tokens required before sensitive operations |\n| Agents lack project context between runs | `ProjectContextManager` (Layer 3) — inject decisions, goals, stack, and milestones into every system prompt |\n| No regression tracking on agent output quality | `QAOrchestratorAgent` — scenario replay, feedback loops, cross-agent contradiction detection, historical trend tracking |\n\n---\n\n## Architecture\n\n```mermaid\n%%{init: {'theme': 'base', 'themeVariables': {'primaryColor': '#1e293b', 'primaryTextColor': '#e2e8f0', 'primaryBorderColor': '#475569', 'lineColor': '#94a3b8', 'clusterBkg': '#0f172a', 'clusterBorder': '#334155', 'edgeLabelBackground': '#1e293b', 'edgeLabelColor': '#cbd5e1', 'titleColor': '#e2e8f0'}}}%%\nflowchart TD\n    classDef app        fill:#1e3a5f,stroke:#3b82f6,color:#bfdbfe,font-weight:bold\n    classDef security   fill:#451a03,stroke:#d97706,color:#fde68a\n    classDef routing    fill:#14532d,stroke:#16a34a,color:#bbf7d0\n    classDef quality    fill:#3b0764,stroke:#9333ea,color:#e9d5ff\n    classDef blackboard fill:#0c4a6e,stroke:#0284c7,color:#bae6fd\n    classDef adapters   fill:#064e3b,stroke:#059669,color:#a7f3d0\n    classDef audit      fill:#1e293b,stroke:#475569,color:#94a3b8\n\n    App[\"Your Application\"]:::app\n    App -->|\"createSwarmOrchestrator()\"| SO\n\n    subgraph SO[\"SwarmOrchestrator\"]\n        AG[\"AuthGuardian\\n(HMAC / Ed25519 permission tokens)\"]:::security\n        AR[\"AdapterRegistry\\n(route tasks to frameworks)\"]:::routing\n        QG[\"QualityGateAgent\\n(validate blackboard writes)\"]:::quality\n        QA[\"QAOrchestratorAgent\\n(scenario replay, regression tracking)\"]:::quality\n        BB[\"SharedBlackboard\\n(shared agent state)\\npropose → validate → commit\\nfilesystem mutex\"]:::blackboard\n        AD[\"Adapters — plug any framework in, swap freely\\nLangChain · AutoGen · CrewAI · MCP · LlamaIndex · …\"]:::adapters\n\n        AG -->|\"grant / deny\"| AR\n        AR -->|\"tasks dispatched\"| AD\n        AD -->|\"writes results\"| BB\n        QG -->|\"validates\"| BB\n        QA -->|\"orchestrates\"| QG\n    end\n\n    SO --> AUDIT[\"data/audit_log.jsonl\\n(HMAC / Ed25519-signed)\"]:::audit\n```\n\n> `FederatedBudget` is a standalone export — instantiate it separately and optionally wire it to a blackboard backend for cross-node token budget enforcement.\n>\n> `ProjectContextManager` is a Layer-3 Python helper (`scripts/context_manager.py`) that injects persistent project goals, decisions, and milestones into agent system prompts — see [ARCHITECTURE.md § Layer 3](ARCHITECTURE.md#layer-3--projectcontextmanager).\n\n→ [Full architecture, FSM journey, and handoff protocol](ARCHITECTURE.md)\n\n---\n\n## Install\n\n```bash\nnpm install network-ai\n```\n\nNo native dependencies, no build step. Adapters are dependency-free (BYOC — bring your own client).\n\n---\n\n## Use as MCP Server\n\nStart the server (no config required, zero dependencies):\n\n```bash\nnpx network-ai-server --port 3001\n# or from source:\nnpx ts-node bin/mcp-server.ts --port 3001\n```\n\nThen wire any MCP-compatible client to it.\n\n**Claude Desktop** — add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) or `%APPDATA%\\Claude\\claude_desktop_config.json` (Windows):\n\n```json\n{\n  \"mcpServers\": {\n    \"network-ai\": {\n      \"url\": \"http://localhost:3001/sse\"\n    }\n  }\n}\n```\n\n**Cursor / Cline / any SSE-based MCP client** — point to the same URL:\n\n```json\n{\n  \"mcpServers\": {\n    \"network-ai\": {\n      \"url\": \"http://localhost:3001/sse\"\n    }\n  }\n}\n```\n\nVerify it's running:\n\n```bash\ncurl http://localhost:3001/health   # { \"status\": \"ok\", \"tools\": <n>, \"uptime\": <ms> }\ncurl http://localhost:3001/tools    # full tool list\n```\n\n**Tools exposed over MCP:**\n- `blackboard_read` / `blackboard_write` / `blackboard_list` / `blackboard_delete` / `blackboard_exists`\n- `context_pack` — token-budgeted, relevance-ranked context brief for a task (use instead of dumping the whole board into your window)\n- `blackboard_search` — ranked top-K search over blackboard entries (semantic when an embedder is wired, lexical otherwise)\n- `budget_status` / `budget_spend` / `budget_reset` — federated token tracking\n- `token_create` / `token_validate` / `token_revoke` — HMAC / Ed25519-signed permission tokens\n- `audit_query` — query the append-only audit log\n- `config_get` / `config_set` — live orchestrator configuration\n- `agent_list` / `agent_spawn` / `agent_stop` — agent lifecycle\n- `fsm_transition` — write FSM state transitions to the blackboard\n\nEach tool takes an `agent_id` parameter — all writes are identity-verified and namespace-scoped, exactly as they are in the TypeScript API.\n\nOptions: `--no-budget`, `--no-token`, `--no-control`, `--ceiling <n>`, `--board <name>`, `--audit-log <path>`.\n\n---\n\n## Use as a Claude Code Plugin\n\nNetwork-AI ships as a [Claude Code](https://code.claude.com) plugin — the MCP server wires in automatically, so every tool listed above becomes available inside Claude Code with no manual config.\n\n**Install from the self-hosted marketplace (zero approval needed):**\n\n```bash\n/plugin marketplace add Jovancoding/Network-AI\n/plugin install network-ai@network-ai\n```\n\nThat's it — `blackboard_read`, `budget_status`, `audit_query`, `token_create`, and the rest load as native Claude Code tools. Under the hood the plugin runs `npx -y -p network-ai network-ai-server --stdio` (stdio MCP transport), so it always uses the published npm package.\n\nThe repo root carries the standard plugin layout:\n\n| File | Role |\n|---|---|\n| [`.claude-plugin/plugin.json`](.claude-plugin/plugin.json) | Plugin manifest |\n| [`.mcp.json`](.mcp.json) | Registers the Network-AI MCP server (stdio) |\n| [`.claude-plugin/marketplace.json`](.claude-plugin/marketplace.json) | Self-hosted marketplace catalog |\n| [`commands/`](commands/status.md) | Slash commands — `/network-ai:status`, `/network-ai:budget`, `/network-ai:audit`, `/network-ai:blackboard` |\n\nValidate the manifests locally with `claude plugin validate .`.\n\n**Gate Claude Code itself with AuthGuardian (hooks).** Every tool call Claude Code makes — shell commands, file edits, web fetches — can be audited and permission-gated through the same weighted scoring (justification 40%, trust 30%, risk 30%) Network-AI applies to swarm agents:\n\n```jsonc\n// .claude/settings.json — see examples/claude-code-hooks.json for the full config\n{\n  \"hooks\": {\n    \"PreToolUse\": [{\n      \"matcher\": \"Bash|Write|Edit|WebFetch\",\n      \"hooks\": [{ \"type\": \"command\",\n                  \"command\": \"npx -y -p network-ai network-ai hook pre-tool-use --mode enforce\" }]\n    }]\n  }\n}\n```\n\n`--mode observe` (default) audits every call to `data/hooks_audit.jsonl` without blocking; `--mode enforce` maps tools to resource types (Bash → `SHELL_EXEC`, Write/Edit → `FILE_SYSTEM`, WebFetch → `EXTERNAL_SERVICE`) and requires an AuthGuardian grant — denied calls escalate to you as an interactive prompt. `--deny \"rm -rf\"` patterns hard-block regardless of mode.\n\n---\n\n## Use with OpenAI Codex\n\nNetwork-AI also runs as an [OpenAI Codex](https://developers.openai.com/codex) MCP server — in both the Codex CLI and the IDE extension. The same tools that load in Claude Code become available in Codex.\n\n**Add it with one command** (uses the published npm package):\n\n```bash\ncodex mcp add network-ai -- npx -y -p network-ai network-ai-server --stdio\n```\n\nIn the Codex TUI, run `/mcp` to confirm `network-ai` is connected.\n\n**Or scope it to a project** — the repo root ships a [`.codex/config.toml`](.codex/config.toml) so any trusted checkout picks the server up automatically. To register it globally instead, drop the same block into `~/.codex/config.toml`:\n\n```toml\n[mcp_servers.network-ai]\ncommand = \"npx\"\nargs = [\"-y\", \"-p\", \"network-ai\", \"network-ai-server\", \"--stdio\"]\n```\n\nEither route exposes the full tool set (`blackboard_read`, `budget_status`, `audit_query`, `token_create`, …) over stdio MCP — no API keys, no running server to manage.\n\n---\n\n## Use with Gemini CLI\n\nNetwork-AI ships as a [Gemini CLI](https://github.com/google-gemini/gemini-cli) extension — the repo root carries [`gemini-extension.json`](gemini-extension.json), which wires in the stdio MCP server and a [`GEMINI.md`](GEMINI.md) context file automatically:\n\n```bash\ngemini extensions install https://github.com/Jovancoding/Network-AI\n```\n\nOr register just the MCP server directly:\n\n```bash\ngemini mcp add network-ai npx -- -y -p network-ai network-ai-server --stdio\n```\n\nRun `/mcp` inside Gemini CLI to confirm the `network-ai` tools are loaded. For building Gemini-powered swarm agents, use the `GeminiAdapter` (Gemini Developer API / AI Studio) or `VertexAIAdapter` (Vertex AI on GCP) — and for Google's Agent2Agent ecosystem, `A2AServer` exposes this orchestrator as a discoverable A2A agent:\n\n```typescript\nimport { A2AServer } from 'network-ai';\n\nconst a2a = new A2AServer({\n  name: 'Network-AI Orchestrator',\n  secret: process.env.A2A_SECRET,\n  executor: async (text) => ({ text: await runSwarmTask(text) }),\n});\na2a.startServer(4310); // serves /.well-known/agent.json + tasks/send\n```\n\n---\n\n## CLI\n\nControl Network-AI directly from the terminal — no server required. The CLI imports the same core engine used by the MCP server.\n\n```bash\n# One-off commands (no server needed)\nnpx ts-node bin/cli.ts bb set status running --agent cli\nnpx ts-node bin/cli.ts bb get status\nnpx ts-node bin/cli.ts bb snapshot\n\n# After npm install -g network-ai:\nnetwork-ai bb list\nnetwork-ai audit tail          # live-stream the audit log\nnetwork-ai auth token my-bot --resource blackboard\n```\n\n| Command group | What it controls |\n|---|---|\n| `network-ai bb` | Blackboard — get, set, delete, list, snapshot, propose, commit, abort |\n| `network-ai auth` | AuthGuardian — issue tokens (`--why` for scoring breakdown), revoke, check permissions |\n| `network-ai budget` | FederatedBudget — spend status, set ceiling |\n| `network-ai audit` | Audit log — print, live-tail, clear |\n| `network-ai env` | Environment management — init, list, chain, diff, promote, backup, restore |\n| `network-ai doctor` | Self-diagnostics — validate data dir, env routing, audit log, WAL, kill-switch, MCP secret |\n| `network-ai inspect <key>` | Inspect a blackboard key — value, metadata, pending history, audit trail |\n| `network-ai pause` / `resume` | Kill switch — write/remove `SYSTEM_PAUSED` sentinel |\n\nGlobal flags on every command: `--data <path>` (data directory, default `./data`) · `--env <name>` (environment) · `--json` (machine-readable output) · `--minimal` (skip WAL replay + sweep — CI/test fast startup)\n\n→ Full reference in [QUICKSTART.md § CLI](QUICKSTART.md)\n\n---\n\n## Two agents, one shared state — without race conditions\n\nThe real differentiator is coordination. Here is what no single-framework solution handles: two agents writing to the same resource concurrently, atomically, without corrupting each other.\n\n```typescript\nimport { LockedBlackboard, CustomAdapter, createSwarmOrchestrator } from 'network-ai';\n\nconst board   = new LockedBlackboard('.');\nconst adapter = new CustomAdapter();\n\n// Agent 1: writes its analysis result atomically\nadapter.registerHandler('analyst', async () => {\n  const id = board.propose('report:status', { phase: 'analysis', complete: true }, 'analyst');\n  board.validate(id, 'analyst');\n  board.commit(id);                           // file-system mutex — no race condition possible\n  return { result: 'analysis written' };\n});\n\n// Agent 2: runs concurrently, writes to its own key safely\nadapter.registerHandler('reviewer', async () => {\n  const id = board.propose('report:review', { approved: true }, 'reviewer');\n  board.validate(id, 'reviewer');\n  board.commit(id);\n  const analysis = board.read('report:status');\n  return { result: `reviewed phase=${analysis?.phase}` };\n});\n\ncreateSwarmOrchestrator({ adapters: [{ adapter }] });\n\n// Both fire concurrently — mutex guarantees no write is ever lost\nconst [, ] = await Promise.all([\n  adapter.executeAgent('analyst',  { action: 'run', params: {} }, { agentId: 'analyst' }),\n  adapter.executeAgent('reviewer', { action: 'run', params: {} }, { agentId: 'reviewer' }),\n]);\n\nconsole.log(board.read('report:status'));   // { phase: 'analysis', complete: true }\nconsole.log(board.read('report:review'));   // { approved: true }\n```\n\nAdd budgets, permissions, and cross-framework agents with the same pattern. → [QUICKSTART.md](QUICKSTART.md)\n\n---\n\n## Demo — Control-Plane Stress Test *(no API key)*\n\nRuns in ~3 seconds. Proves the coordination primitives without any LLM calls.\n\n```bash\nnpm run demo -- --08\n```\n\nWhat it shows: atomic blackboard locking, priority preemption (priority-3 wins over priority-0 on same key), **AuthGuardian permission gate** (blocked → justified → granted with token), FSM hard-stop at 700 ms, live compliance violation capture (TOOL_ABUSE, TURN_TAKING, RESPONSE_TIMEOUT, JOURNEY_TIMEOUT), and `FederatedBudget` tracking — all without a single API call.\n\n[![Control Plane Demo](https://img.youtube.com/vi/niVRZJu1MEo/0.jpg)](https://www.youtube.com/watch?v=niVRZJu1MEo)\n\n**8-agent AI pipeline** (requires `OPENAI_API_KEY` — builds a Payment Processing Service end-to-end):\n\n```bash\nnpm run demo -- --07\n```\n\n[![Code Review Swarm Demo](https://img.youtube.com/vi/UyMsNhaw9lU/0.jpg)](https://youtu.be/UyMsNhaw9lU)\n\n**NemoClaw sandbox swarm** *(no API key)* — 3 agents in isolated NVIDIA NemoClaw sandboxes with deny-by-default network policies:\n\n```bash\nnpx ts-node examples/10-nemoclaw-sandbox-swarm.ts\n```\n\n[![NemoClaw Sandbox Demo](https://img.youtube.com/vi/c-UWDrdP4ZE/0.jpg)](https://www.youtube.com/watch?v=c-UWDrdP4ZE)\n\n---\n\n## Adapter System\n\n32 adapters, zero adapter dependencies. You bring your own SDK objects.\n\n| Adapter | Framework / Protocol | Register method |\n|---|---|---|\n| `CustomAdapter` | Any function or HTTP endpoint | `registerHandler(name, fn)` |\n| `LangChainAdapter` | LangChain | `registerAgent(name, runnable)` |\n| `AutoGenAdapter` | AutoGen / AG2 | `registerAgent(name, agent)` |\n| `CrewAIAdapter` | CrewAI | `registerAgent` or `registerCrew` |\n| `MCPAdapter` | Model Context Protocol | `registerTool(name, handler)` |\n| `LlamaIndexAdapter` | LlamaIndex | `registerQueryEngine()`, `registerChatEngine()` |\n| `SemanticKernelAdapter` | Microsoft Semantic Kernel | `registerKernel()`, `registerFunction()` |\n| `OpenAIAssistantsAdapter` | OpenAI Assistants | `registerAssistant(name, config)` |\n| `HaystackAdapter` | deepset Haystack | `registerPipeline()`, `registerAgent()` |\n| `DSPyAdapter` | Stanford DSPy | `registerModule()`, `registerProgram()` |\n| `AgnoAdapter` | Agno (formerly Phidata) | `registerAgent()`, `registerTeam()` |\n| `OpenClawAdapter` | OpenClaw | `registerSkill(name, skillRef)` |\n| `A2AAdapter` | Google A2A Protocol | `registerRemoteAgent(name, url)` |\n| `CodexAdapter` | OpenAI Codex / gpt-4o / Codex CLI | `registerCodexAgent(name, config)` |\n| `MiniMaxAdapter` | MiniMax LLM API (M2.5 / M2.5-highspeed) | `registerAgent(name, config)` |\n| `NemoClawAdapter` | NVIDIA NemoClaw (sandboxed agents via OpenShell) | `registerSandboxAgent(name, config)` |\n| `APSAdapter` | Agent Permission Service (delegation-chain trust) | `apsDelegationToTrust(delegation)` |\n| `CopilotAdapter` | GitHub Copilot (generate/review/explain/fix/test/refactor/chat) | `registerAgent(name, config)` |\n| `LangGraphAdapter` | LangGraph (compiled StateGraph) | `registerGraph(name, graph)` |\n| `AnthropicComputerUseAdapter` | Anthropic Computer Use (screenshot/click/type/scroll) | `registerAgent(name, config)` |\n| `OpenAIAgentsAdapter` | OpenAI Agents SDK (tool use, handoffs, guardrails) | `registerAgent(name, runner)` |\n| `VertexAIAdapter` | Google Vertex AI / Gemini (function calling, multi-modal) | `registerAgent(name, config)` |\n| `PydanticAIAdapter` | Pydantic AI (structured output, validation, deps injection) | `registerAgent(name, config)` |\n| `BrowserAgentAdapter` | Browser automation (Playwright/Puppeteer/CDP) | `registerAgent(name, driver)` |\n| `HermesAdapter` | NousResearch Hermes / any OpenAI-compatible endpoint (Ollama, Together AI, Fireworks, llama.cpp) | `registerAgent(name, config)` |\n| `OrchestratorAdapter` | Hierarchical multi-orchestrator coordination | `registerOrchestrator(id, orchestrator)` |\n| `RLMAdapter` | Recursive Language Model / any RLM-compatible HTTP endpoint (arxiv 2512.24601) | `registerAgent(name, config)` |\n\n**Streaming variants** (drop-in replacements with `.stream()` support):\n\n| Adapter | Extends | Streaming source |\n|---|---|---|\n| `LangChainStreamingAdapter` | `LangChainAdapter` | Calls `.stream()` on the Runnable if available; falls back to `.invoke()` |\n| `CustomStreamingAdapter` | `CustomAdapter` | Pipes `AsyncIterable<string>` handlers; falls back to single-chunk for plain Promises |\n\nExtend `BaseAdapter` (or `StreamingBaseAdapter` for streaming) to add your own in minutes. See [references/adapter-system.md](references/adapter-system.md).\n\n---\n\n## Works with LangGraph, CrewAI, and AutoGen\n\n> Network-AI is the coordination layer you add **on top of** your existing stack. Keep your LangChain chains, CrewAI crews, and AutoGen agents — and add shared state, governance, and budgets around them.\n\n| Capability | Network-AI | LangGraph | CrewAI | AutoGen |\n|---|---|---|---|---|\n| Cross-framework agents in one swarm | ✅ 29 built-in adapters | ⚠️ Nodes can call any code; no adapter abstraction | ⚠️ Extensible via tools; CrewAI-native agents only | ⚠️ Extensible via plugins; AutoGen-native agents only |\n| Atomic shared state (conflict-safe) | ✅ `propose → validate → commit` mutex | ⚠️ State passed between nodes; last-write-wins | ⚠️ Shared memory available; no conflict resolution | ⚠️ Shared context available; no conflict resolution |\n| Hard token ceiling per agent | ✅ `FederatedBudget` (first-class API) | ⚠️ Via callbacks / custom middleware | ⚠️ Via callbacks / custom middleware | ⚠️ Built-in token tracking in v0.4+; no swarm-level ceiling |\n| Permission gating before sensitive ops | ✅ `AuthGuardian` (built-in) | ⚠️ Possible via custom node logic | ⚠️ Possible via custom tools | ⚠️ Possible via custom middleware |\n| Append-only audit log | ✅ plain JSONL (`data/audit_log.jsonl`) | ⚠️ Not built-in | ⚠️ Not built-in | ⚠️ Not built-in |\n| Encryption at rest | ✅ AES-256-GCM (TypeScript layer) | ⚠️ Not built-in | ⚠️ Not built-in | ⚠️ Not built-in |\n| Language | TypeScript / Node.js | Python | Python | Python |\n\n---\n\n## Testing\n\n```bash\nnpm run test:all          # All suites in sequence\nnpm test                  # Core orchestrator\nnpm run test:security     # Security module\nnpm run test:adapters     # All 32 adapters\nnpm run test:streaming    # Streaming adapters\nnpm run test:a2a          # A2A protocol adapter\nnpm run test:codex        # Codex adapter\nnpm run test:priority     # Priority & preemption\nnpm run test:cli          # CLI layer\nnpm run test:phase9       # Agent runtime, console, strategy agent\nnpm run test:phase12      # Context Throttler, Partition Planner, Coverage Gate, Route Classifier\n```\n\n**3,638 passing assertions across 41 test suites** (`npm run test:all`):\n\n| Suite | Assertions | Covers |\n|---|---|---|\n| `test-phase4.ts` | 147 | FSM governance, compliance monitor, adapter integration |\n| `test-phase5f.ts` | 127 | SSE transport, `McpCombinedBridge`, extended MCP tools |\n| `test-phase5g.ts` | 121 | CRDT backend, vector clocks, bidirectional sync |\n| `test-phase6.ts` | 129 | MCP server, control-plane tools, audit tools |\n| `test-adapters.ts` | 271 | All 32 adapters, registry routing, integration, edge cases |\n| `test-phase5d.ts` | 117 | Pluggable backend (Redis, CRDT, Memory) |\n| `test-standalone.ts` | 88 | Blackboard, auth, integration, persistence, parallelisation, quality gate |\n| `test-phase5e.ts` | 87 | Federated budget tracking |\n| `test-phase5c.ts` | 73 | Named multi-blackboard, isolation, backend options |\n| `test-codex.ts` | 51 | Codex adapter: chat, completion, CLI, BYOC client, error paths |\n| `test-minimax.ts` | 50 | MiniMax adapter: lifecycle, registration, chat mode, temperature clamping |\n| `test-nemoclaw.ts` | 93 | NemoClaw adapter: sandbox lifecycle, policies, blueprint, handoff, env forwarding |\n| `test-priority.ts` | 64 | Priority preemption, conflict resolution, backward compat |\n| `test-a2a.ts` | 35 | A2A protocol: register, execute, mock fetch, error paths |\n| `test-streaming.ts` | 32 | Streaming adapters, chunk shapes, fallback, collectStream |\n| `test-phase5b.ts` | 55 | Pluggable backend part 2, consistency levels |\n| `test-phase5.ts` | 42 | Named multi-blackboard base |\n| `test-security.ts` | 34 | Tokens, sanitization, rate limiting, encryption, audit |\n| `test-cli.ts` | 65 | CLI layer: bb, auth, budget, audit commands |\n| `test-qa.ts` | 67 | QA orchestrator: scenarios, feedback loop, regression, contradictions |\n| `test-phase7.ts` | 94 | Deferred init, hook middleware, flow control, skill composer, semantic search |\n| `test-phase8.ts` | 146 | Phase pipeline, confidence filter, matcher-based hooks, fan-out/fan-in |\n| `test-phase9.ts` | 293 | Agent runtime, sandbox policy, shell executor, file accessor, approval gate, console UI, orchestrator wiring, pipe mode, strategy agent |\n| `test-phase10.ts` | 153 | Goal decomposer, task DAG validation, topological layers, JSON parsing, team runner, concurrency, timeouts, events, runTeam one-liner, dependency injection, LLM planner |\n| `test-phase11.ts` | 55 | TTL background sweep, WAL crash recovery, CircuitBreaker, `ITelemetryProvider` / OTel hooks |\n| `test-topology.ts` | 304 | WorkTree, ControlPlane, dashboard server, topology visualization, WebSocket protocol |\n| `test-rlm-phases.ts` | 123 | FederatedBudget child spending, blackboard metadata API, best-partial result, HookContext depth, sub-goal recursion, semaphore fan-out, PhasePipeline compaction, RLMAdapter end-to-end |\n| `test-phase12.ts` | 65 | Context Throttler, Partition Planner, Coverage Gate, Route Classifier, EVALUATING FSM state, runTeam integration |\n| `test-env-manager.ts` | 77 | Multi-environment isolation, promotion chain, backup/restore, source protection, NETWORK_AI_ENV, blackboard env routing |\n| `test-transport.ts` | 117 | Basis transport tier: `TransportAgent` state machine, `LandscapeAgent` health tracking, `AgentPool` drain/pause, fleet coordination, canary, rollback |\n| `test-claim-verifier.ts` | 50 | ClaimVerifier: receipt generation/tamper/expiry, corroborated/unsupported/undisclosed, trust decay/reset/DoS protection |\n| `test-phase13.ts` | 58 | ESM dual-build config, McpStreamableServer dispatch + resources + prompts, PhasePipeline checkpoint/resume/clear, SemanticMemory save/load/autoSave/clearPersisted |\n| `test-phase14.ts` | 52 | Model lifecycle governance: `GovernedModelGateway` refusal→fallback, `ModelBudget` credit repricing, `RefusalTelemetry`, Anthropic Messages adapter |\n| `test-phase15.ts` | 32 | Orchestration resilience: `RetryBudget`, per-sub-agent fallback in `FanOutFanIn` + `TeamRunner`, `EffortPolicy` |\n| `test-phase16.ts` | 21 | `ThinkingBlockManager` lifecycle + reasoning-extraction guard, OWASP Agentic Top 10 coverage matrix |\n| `test-phase17.ts` | 13 | `ApprovalInbox` GHSA-m4jg-6w3q-gm86 fix: read-route auth gating, token validation, backward compatibility, CORS allowlist |\n| `test-phase18.ts` | 85 | `ClaudeHookBridge` observe/enforce gating, MCP elicitation channel + fail-closed approval callback, `A2AServer` agent card / tasks / auth / eviction |\n| `test-phase19.ts` | 78 | `ContextComposer` ranking/budget/pinning/staleness/layout, `estimateTokens`, `context_pack` + `blackboard_search` MCP tools (lexical + semantic modes) |\n| `test-phase20.ts` | 35 | Security regressions: `ClaudeHookBridge` full-target deny/allow matching (GHSA-743h-jr5x-mpcr), `SandboxPolicy` canonicalized command matching (GHSA-9v4f-j8cv-fhxw) |\n| `test.ts` | 39 | Core orchestrator smoke tests |\n\n---\n\n## Documentation\n\n| Doc | Contents |\n|---|---|\n| [QUICKSTART.md](QUICKSTART.md) | Installation, first run, CLI reference, PowerShell guide, Python scripts CLI |\n| [ARCHITECTURE.md](ARCHITECTURE.md) | Race condition problem, FSM design, handoff protocol, model-interaction lifecycle governance, module inventory, project structure |\n| [BENCHMARKS.md](BENCHMARKS.md) | Provider performance, rate limits, local GPU, `max_completion_tokens` guide |\n| [SECURITY.md](SECURITY.md) | Security module, permission system, trust levels, audit trail, OWASP Agentic Top 10 coverage, disclosure SLA, ClawHub scan findings |\n| [THREAT_MODEL.md](THREAT_MODEL.md) | Adversary profiles, trust boundaries, explicit non-goals, security controls summary |\n| [DATA_LOCATIONS.md](DATA_LOCATIONS.md) | Every file Network-AI creates — path, purpose, data classification, operator responsibilities |\n| [SUPPLY_CHAIN.md](SUPPLY_CHAIN.md) | Runtime dependencies, what runs at install, network surface, SLSA/npm provenance verification |\n| [ENTERPRISE.md](ENTERPRISE.md) | Evaluation checklist, stability policy, security summary, integration entry points |\n| [AUDIT_LOG_SCHEMA.md](AUDIT_LOG_SCHEMA.md) | Audit log field reference, all event types (including `model.refusal` / `model.attempt`), scoring formula |\n| [ADOPTERS.md](ADOPTERS.md) | Known adopters — open a PR to add yourself |\n| [INTEGRATION_GUIDE.md](INTEGRATION_GUIDE.md) | End-to-end integration walkthrough with v5.15 modules |\n| [SKILL.md](SKILL.md) | OpenClaw/ClawHub Python skill — setup, orchestrator protocol, OWASP engine coverage, security scan findings |\n| [AGENTS.md](AGENTS.md) | Cross-vendor agent instructions (Codex, Gemini CLI, Cursor, Factory) — build commands, conventions, architecture patterns |\n| [references/adapter-system.md](references/adapter-system.md) | Adapter architecture, all 32 adapters (incl. `AnthropicMessagesAdapter`), writing custom adapters |\n| [references/auth-guardian.md](references/auth-guardian.md) | Permission scoring, resource types, `scoreRequest()`, IAuthValidator interface |\n| [references/trust-levels.md](references/trust-levels.md) | Trust level configuration, APS delegation-chain mapping |\n\n---\n\n## Use with Claude, ChatGPT & Codex\n\n> Using **Claude Code** (the CLI)? See [Use as a Claude Code Plugin](#use-as-a-claude-code-plugin) — one command installs every tool.\n>\n> Using **OpenAI Codex** (CLI or IDE)? See [Use with OpenAI Codex](#use-with-openai-codex) — add the MCP server with a single `codex mcp add`.\n>\n> Using **Gemini CLI**? See [Use with Gemini CLI](#use-with-gemini-cli) — install the extension with a single `gemini extensions install`.\n\nThree integration files are included in the repo root:\n\n| File | Use |\n|---|---|\n| [`claude-tools.json`](claude-tools.json) | Claude API tool use & OpenAI Codex — drop into the `tools` array |\n| [`openapi.yaml`](openapi.yaml) | Custom GPT Actions — import directly in the GPT editor |\n| [`claude-project-prompt.md`](claude-project-prompt.md) | Claude Projects — paste into Custom Instructions (includes lifecycle governance context) |\n\n**Claude API / Codex:**\n```js\nimport tools from './claude-tools.json' assert { type: 'json' };\n// Pass tools array to anthropic.messages.create({ tools }) or OpenAI chat completions\n```\n\n**Custom GPT Actions:**\nIn the GPT editor → Actions → Import from URL, or paste the contents of `openapi.yaml`.\nSet the server URL to your running `npx network-ai-server --port 3001` instance.\n\n**Claude Projects:**\nCopy the contents of `claude-project-prompt.md` (below the horizontal rule) into a Claude Project's Custom Instructions field. No server required for instruction-only mode.\n\n---\n\n## Community\n\nJoin our Discord server to discuss multi-agent AI coordination, get help, and share what you're building:\n\n[![Discord](https://img.shields.io/badge/Join%20Discord-5865F2?logo=discord&logoColor=white&style=for-the-badge)](https://discord.gg/Cab5vAxc86)\n\n---\n\n## Contributing\n\n1. Fork → feature branch → `npm run test:all` → pull request\n2. Bugs and feature requests via [Issues](https://github.com/Jovancoding/Network-AI/issues)\n\n---\n\nMIT License — [LICENSE](LICENSE) &nbsp;·&nbsp; [CHANGELOG](CHANGELOG.md) &nbsp;·&nbsp; [CONTRIBUTING](CONTRIBUTING.md) &nbsp;·&nbsp; [Code of Conduct](CODE_OF_CONDUCT.md) &nbsp;·&nbsp; [Security Policy](SECURITY.md) &nbsp;·&nbsp; [![RSS](https://img.shields.io/badge/RSS-releases-orange?logo=rss)](https://github.com/Jovancoding/Network-AI/releases.atom)\n\n<details>\n<summary>Keywords</summary>\n\nmulti-agent · agent orchestration · AI agents · agentic AI · agentic workflow · TypeScript · Node.js · LangGraph · CrewAI · AutoGen · MCP · model-context-protocol · LlamaIndex · Semantic Kernel · OpenAI Assistants · Haystack · DSPy · Agno · OpenClaw · ClawHub · shared state · blackboard pattern · atomic commits · guardrails · token budgets · permission gating · audit trail · agent coordination · agent handoffs · governance · cost-awareness · refusal handling · fallback routing · model lifecycle · OWASP agentic AI · effort policy · thinking blocks\n\n</details>\n\n## Download History\n\n[![Download History](https://skill-history.com/chart/jovancoding/network-ai.svg)](https://skill-history.com/jovancoding/network-ai)\n\n",
  "bytes": 44040,
  "sha": "5fe26049588edb48f8993c67b5f05e6eacdd937d677511b335a7b4c78feccc69",
  "repo_slug": "jovancoding/network-ai",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_jovancoding_network_ai_86c5366c/readme"
}