network-ai 5.12.0 → 5.12.1
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/INTEGRATION_GUIDE.md +1 -1
- package/QUICKSTART.md +9 -0
- package/README.md +27 -1
- package/SKILL.md +1 -1
- package/package.json +7 -8
package/INTEGRATION_GUIDE.md
CHANGED
package/QUICKSTART.md
CHANGED
|
@@ -686,6 +686,15 @@ Install Network-AI as a [Claude Code](https://code.claude.com) plugin — the MC
|
|
|
686
686
|
|
|
687
687
|
Every Network-AI tool (`blackboard_read`, `budget_status`, `audit_query`, …) then loads natively. The plugin runs `npx -y -p network-ai network-ai-server --stdio`. Validate the manifests locally with `claude plugin validate .`.
|
|
688
688
|
|
|
689
|
+
**OpenAI Codex (CLI & IDE):**
|
|
690
|
+
Add Network-AI as a Codex MCP server with one command:
|
|
691
|
+
|
|
692
|
+
```bash
|
|
693
|
+
codex mcp add network-ai -- npx -y -p network-ai network-ai-server --stdio
|
|
694
|
+
```
|
|
695
|
+
|
|
696
|
+
Or commit it per-project — the repo root ships a [`.codex/config.toml`](.codex/config.toml) that registers the same stdio server for trusted checkouts. Run `/mcp` in the Codex TUI to verify it connected.
|
|
697
|
+
|
|
689
698
|
---
|
|
690
699
|
|
|
691
700
|
## Fan-Out / Fan-In Pattern
|
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)
|
|
@@ -282,6 +282,30 @@ Validate the manifests locally with `claude plugin validate .`.
|
|
|
282
282
|
|
|
283
283
|
---
|
|
284
284
|
|
|
285
|
+
## Use with OpenAI Codex
|
|
286
|
+
|
|
287
|
+
Network-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.
|
|
288
|
+
|
|
289
|
+
**Add it with one command** (uses the published npm package):
|
|
290
|
+
|
|
291
|
+
```bash
|
|
292
|
+
codex mcp add network-ai -- npx -y -p network-ai network-ai-server --stdio
|
|
293
|
+
```
|
|
294
|
+
|
|
295
|
+
In the Codex TUI, run `/mcp` to confirm `network-ai` is connected.
|
|
296
|
+
|
|
297
|
+
**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`:
|
|
298
|
+
|
|
299
|
+
```toml
|
|
300
|
+
[mcp_servers.network-ai]
|
|
301
|
+
command = "npx"
|
|
302
|
+
args = ["-y", "-p", "network-ai", "network-ai-server", "--stdio"]
|
|
303
|
+
```
|
|
304
|
+
|
|
305
|
+
Either 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.
|
|
306
|
+
|
|
307
|
+
---
|
|
308
|
+
|
|
285
309
|
## CLI
|
|
286
310
|
|
|
287
311
|
Control Network-AI directly from the terminal — no server required. The CLI imports the same core engine used by the MCP server.
|
|
@@ -530,6 +554,8 @@ npm run test:phase12 # Context Throttler, Partition Planner, Coverage Gate,
|
|
|
530
554
|
## Use with Claude, ChatGPT & Codex
|
|
531
555
|
|
|
532
556
|
> Using **Claude Code** (the CLI)? See [Use as a Claude Code Plugin](#use-as-a-claude-code-plugin) — one command installs every tool.
|
|
557
|
+
>
|
|
558
|
+
> 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`.
|
|
533
559
|
|
|
534
560
|
Three integration files are included in the repo root:
|
|
535
561
|
|
package/SKILL.md
CHANGED
|
@@ -755,7 +755,7 @@ The following findings are drawn from the **MAESTRO Agent Security Threat** fram
|
|
|
755
755
|
|
|
756
756
|
| Control | How Network-AI addresses it |
|
|
757
757
|
|---|---|
|
|
758
|
-
| **Exact version pinning** | npm `package.json` uses exact `"version": "5.12.
|
|
758
|
+
| **Exact version pinning** | npm `package.json` uses exact `"version": "5.12.1"` — no semver range specifiers; `clawhub install network-ai` pins to a specific published version |
|
|
759
759
|
| **Zero transitive dependency drift** | All bundled Python scripts use Python stdlib only — `pip install` is never required; there are no third-party packages to drift, be compromised upstream, or introduce CVEs |
|
|
760
760
|
| **Signed, tagged releases** | Every release is committed with a signed Git tag (`v5.7.x`); commit hash is verifiable against CHANGELOG.md; GitHub releases link tag → diff → changelog entry |
|
|
761
761
|
| **Supply chain monitoring** | npm package continuously scored by Socket.dev (score A); any new dependency or permission change triggers an alert |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "network-ai",
|
|
3
|
-
"version": "5.12.
|
|
3
|
+
"version": "5.12.1",
|
|
4
4
|
"description": "AI agent orchestration framework for TypeScript/Node.js - 29 adapters (LangChain, AutoGen, CrewAI, OpenAI Assistants, LlamaIndex, Semantic Kernel, Haystack, DSPy, Agno, MCP, OpenClaw, A2A, Codex, MiniMax, NemoClaw, APS, Copilot, LangGraph, Anthropic Computer Use, OpenAI Agents SDK, Vertex AI, Pydantic AI, Browser Agent, Hermes, Orchestrator, RLM + 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",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"bin": {
|
|
27
|
-
"network-ai": "
|
|
28
|
-
"network-ai-server": "
|
|
29
|
-
"network-ai-console": "
|
|
30
|
-
"network-ai-dashboard": "
|
|
27
|
+
"network-ai": "dist/bin/cli.js",
|
|
28
|
+
"network-ai-server": "dist/bin/mcp-server.js",
|
|
29
|
+
"network-ai-console": "dist/bin/console.js",
|
|
30
|
+
"network-ai-dashboard": "dist/bin/dashboard.js"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"build": "tsc -p tsconfig.build.json && tsc -p tsconfig.esm.json",
|
|
@@ -115,14 +115,14 @@
|
|
|
115
115
|
},
|
|
116
116
|
"repository": {
|
|
117
117
|
"type": "git",
|
|
118
|
-
"url": "https://github.com/Jovancoding/Network-AI.git"
|
|
118
|
+
"url": "git+https://github.com/Jovancoding/Network-AI.git"
|
|
119
119
|
},
|
|
120
120
|
"engines": {
|
|
121
121
|
"node": ">=18.0.0",
|
|
122
122
|
"python": ">=3.9"
|
|
123
123
|
},
|
|
124
124
|
"devDependencies": {
|
|
125
|
-
"@types/node": "^25.9.
|
|
125
|
+
"@types/node": "^25.9.3",
|
|
126
126
|
"dotenv": "^17.4.2",
|
|
127
127
|
"openai": "^6.42.0",
|
|
128
128
|
"ts-node": "^10.9.2",
|
|
@@ -144,4 +144,3 @@
|
|
|
144
144
|
"commander": "^15.0.0"
|
|
145
145
|
}
|
|
146
146
|
}
|
|
147
|
-
|