network-ai 5.11.0 → 5.12.0
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 +10 -0
- package/README.md +28 -1
- package/SKILL.md +1 -1
- package/package.json +1 -1
package/INTEGRATION_GUIDE.md
CHANGED
package/QUICKSTART.md
CHANGED
|
@@ -676,6 +676,16 @@ 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
|
+
|
|
679
689
|
---
|
|
680
690
|
|
|
681
691
|
## 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,31 @@ 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
|
+
|
|
260
285
|
## CLI
|
|
261
286
|
|
|
262
287
|
Control Network-AI directly from the terminal — no server required. The CLI imports the same core engine used by the MCP server.
|
|
@@ -504,6 +529,8 @@ npm run test:phase12 # Context Throttler, Partition Planner, Coverage Gate,
|
|
|
504
529
|
|
|
505
530
|
## Use with Claude, ChatGPT & Codex
|
|
506
531
|
|
|
532
|
+
> Using **Claude Code** (the CLI)? See [Use as a Claude Code Plugin](#use-as-a-claude-code-plugin) — one command installs every tool.
|
|
533
|
+
|
|
507
534
|
Three integration files are included in the repo root:
|
|
508
535
|
|
|
509
536
|
| 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.0"` — 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.0",
|
|
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",
|