network-ai 5.11.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 +19 -0
- package/README.md +54 -1
- package/SKILL.md +1 -1
- package/package.json +7 -8
package/INTEGRATION_GUIDE.md
CHANGED
package/QUICKSTART.md
CHANGED
|
@@ -676,6 +676,25 @@ Set the server URL to your running `npx network-ai-server --port 3001` instance.
|
|
|
676
676
|
**Claude Projects:**
|
|
677
677
|
Copy the contents of `claude-project-prompt.md` into a Claude Project's Custom Instructions field. No server required for instruction-only mode.
|
|
678
678
|
|
|
679
|
+
**Claude Code (CLI) plugin:**
|
|
680
|
+
Install Network-AI as a [Claude Code](https://code.claude.com) plugin — the MCP server wires in automatically:
|
|
681
|
+
|
|
682
|
+
```bash
|
|
683
|
+
/plugin marketplace add Jovancoding/Network-AI
|
|
684
|
+
/plugin install network-ai@network-ai
|
|
685
|
+
```
|
|
686
|
+
|
|
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
|
+
|
|
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
|
+
|
|
679
698
|
---
|
|
680
699
|
|
|
681
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)
|
|
@@ -257,6 +257,55 @@ Options: `--no-budget`, `--no-token`, `--no-control`, `--ceiling <n>`, `--board
|
|
|
257
257
|
|
|
258
258
|
---
|
|
259
259
|
|
|
260
|
+
## Use as a Claude Code Plugin
|
|
261
|
+
|
|
262
|
+
Network-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.
|
|
263
|
+
|
|
264
|
+
**Install from the self-hosted marketplace (zero approval needed):**
|
|
265
|
+
|
|
266
|
+
```bash
|
|
267
|
+
/plugin marketplace add Jovancoding/Network-AI
|
|
268
|
+
/plugin install network-ai@network-ai
|
|
269
|
+
```
|
|
270
|
+
|
|
271
|
+
That'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.
|
|
272
|
+
|
|
273
|
+
The repo root carries the standard plugin layout:
|
|
274
|
+
|
|
275
|
+
| File | Role |
|
|
276
|
+
|---|---|
|
|
277
|
+
| [`.claude-plugin/plugin.json`](.claude-plugin/plugin.json) | Plugin manifest |
|
|
278
|
+
| [`.mcp.json`](.mcp.json) | Registers the Network-AI MCP server (stdio) |
|
|
279
|
+
| [`.claude-plugin/marketplace.json`](.claude-plugin/marketplace.json) | Self-hosted marketplace catalog |
|
|
280
|
+
|
|
281
|
+
Validate the manifests locally with `claude plugin validate .`.
|
|
282
|
+
|
|
283
|
+
---
|
|
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
|
+
|
|
260
309
|
## CLI
|
|
261
310
|
|
|
262
311
|
Control Network-AI directly from the terminal — no server required. The CLI imports the same core engine used by the MCP server.
|
|
@@ -504,6 +553,10 @@ npm run test:phase12 # Context Throttler, Partition Planner, Coverage Gate,
|
|
|
504
553
|
|
|
505
554
|
## Use with Claude, ChatGPT & Codex
|
|
506
555
|
|
|
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`.
|
|
559
|
+
|
|
507
560
|
Three integration files are included in the repo root:
|
|
508
561
|
|
|
509
562
|
| File | Use |
|
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.
|
|
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.
|
|
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
|
-
|