network-ai 4.6.0 → 4.6.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 +2 -2
- package/QUICKSTART.md +3 -3
- package/README.md +1 -1
- package/SKILL.md +4 -2
- package/package.json +2 -2
- package/socket.json +32 -0
package/INTEGRATION_GUIDE.md
CHANGED
|
@@ -64,7 +64,7 @@ Answers drive `AuthGuardian` configuration and audit log retention policy.
|
|
|
64
64
|
|
|
65
65
|
## 2. Framework Mapping
|
|
66
66
|
|
|
67
|
-
Network-AI ships
|
|
67
|
+
Network-AI ships 15 adapters. Map your existing agents to the right one:
|
|
68
68
|
|
|
69
69
|
| Your Stack | Network-AI Adapter | Notes |
|
|
70
70
|
|-----------|-------------------|-------|
|
|
@@ -459,7 +459,7 @@ Run these before declaring the integration production-ready:
|
|
|
459
459
|
|----------|---------------|
|
|
460
460
|
| [QUICKSTART.md](QUICKSTART.md) | Get running in 5 minutes |
|
|
461
461
|
| [QUICKSTART.md § CLI](QUICKSTART.md) | CLI reference — bb, auth, budget, audit commands |
|
|
462
|
-
| [references/adapter-system.md](references/adapter-system.md) | All
|
|
462
|
+
| [references/adapter-system.md](references/adapter-system.md) | All 15 adapters with code examples |
|
|
463
463
|
| [references/trust-levels.md](references/trust-levels.md) | Trust scoring formula and agent roles |
|
|
464
464
|
| [references/auth-guardian.md](references/auth-guardian.md) | Permission system, justification scoring, token lifecycle |
|
|
465
465
|
| [references/blackboard-schema.md](references/blackboard-schema.md) | Blackboard key conventions and namespacing |
|
package/QUICKSTART.md
CHANGED
|
@@ -18,7 +18,7 @@ npm install
|
|
|
18
18
|
npx ts-node setup.ts --check
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
**Zero external AI dependencies.** All
|
|
21
|
+
**Zero external AI dependencies.** All 15 adapters are self-contained — add framework SDKs only when you need them.
|
|
22
22
|
|
|
23
23
|
---
|
|
24
24
|
|
|
@@ -225,7 +225,7 @@ npx ts-node test-cli.ts # 65 CLI tests
|
|
|
225
225
|
|
|
226
226
|
```bash
|
|
227
227
|
npx ts-node setup.ts --check # Verify installation
|
|
228
|
-
npx ts-node setup.ts --list # List all
|
|
228
|
+
npx ts-node setup.ts --list # List all 15 adapters
|
|
229
229
|
npx ts-node setup.ts --example # Generate example.ts
|
|
230
230
|
```
|
|
231
231
|
|
|
@@ -563,7 +563,7 @@ import SwarmOrchestrator, {
|
|
|
563
563
|
// Factory
|
|
564
564
|
import { createSwarmOrchestrator } from 'network-ai';
|
|
565
565
|
|
|
566
|
-
// All
|
|
566
|
+
// All 15 adapters
|
|
567
567
|
import {
|
|
568
568
|
AdapterRegistry, BaseAdapter,
|
|
569
569
|
OpenClawAdapter, LangChainAdapter, AutoGenAdapter,
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://github.com/Jovancoding/Network-AI/actions/workflows/ci.yml)
|
|
6
6
|
[](https://github.com/Jovancoding/Network-AI/actions/workflows/codeql.yml)
|
|
7
|
-
[](https://github.com/Jovancoding/Network-AI/releases)
|
|
8
8
|
[](https://www.npmjs.com/package/network-ai)
|
|
9
9
|
[](#testing)
|
|
10
10
|
[](#adapter-system)
|
package/SKILL.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: Network-AI
|
|
3
|
-
description: "Python orchestration skill: local multi-agent workflows via blackboard file, permission gating, and token budget scripts. All execution is local — no network calls, no Node.js required. TypeScript/Node.js features (HMAC tokens, AES-256, MCP server,
|
|
3
|
+
description: "Python orchestration skill: local multi-agent workflows via blackboard file, permission gating, and token budget scripts. All execution is local — no network calls, no Node.js required. TypeScript/Node.js features (HMAC tokens, AES-256, MCP server, 15 adapters, CLI) are in the SEPARATE companion npm package (npm install -g network-ai) and are NOT part of this skill bundle."
|
|
4
4
|
metadata:
|
|
5
5
|
openclaw:
|
|
6
6
|
emoji: "\U0001F41D"
|
|
7
7
|
homepage: https://github.com/Jovancoding/Network-AI
|
|
8
|
-
bundle_scope: "Python scripts only (scripts/*.py). The README.md in this repo describes the FULL project including the companion Node.js npm package — features documented there (HMAC tokens, AES-256 encryption, MCP server,
|
|
8
|
+
bundle_scope: "Python scripts only (scripts/*.py). The README.md in this repo describes the FULL project including the companion Node.js npm package — features documented there (HMAC tokens, AES-256 encryption, MCP server, 15 adapters, CLI) are NOT implemented in these Python scripts and are NOT part of this ClawHub skill. Install the npm package separately for those features."
|
|
9
9
|
network_calls: none
|
|
10
10
|
sessions_ops: "platform-provided — sessions_send, sessions_list, and sessions_history are OpenClaw host platform built-ins, not implemented or invoked by this skill's Python scripts"
|
|
11
11
|
requires:
|
|
@@ -37,6 +37,8 @@ metadata:
|
|
|
37
37
|
|
|
38
38
|
**No pip install required.** All 6 scripts use Python standard library only — zero third-party packages.
|
|
39
39
|
|
|
40
|
+
> **Note on `requirements.txt`:** The file exists for documentation purposes only — it lists the stdlib modules used and has **no required packages**. All listed deps are commented out as optional. You do not need to run `pip install -r requirements.txt`.
|
|
41
|
+
|
|
40
42
|
```bash
|
|
41
43
|
# Prerequisite: python3 (any version ≥ 3.8)
|
|
42
44
|
python3 --version
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "network-ai",
|
|
3
|
-
"version": "4.6.
|
|
4
|
-
"description": "AI agent orchestration framework for TypeScript/Node.js -
|
|
3
|
+
"version": "4.6.1",
|
|
4
|
+
"description": "AI agent orchestration framework for TypeScript/Node.js - 15 adapters (LangChain, AutoGen, CrewAI, OpenAI Assistants, LlamaIndex, Semantic Kernel, Haystack, DSPy, Agno, MCP, OpenClaw, A2A, Codex, MiniMax + streaming variants). Built-in CLI, security, swarm intelligence, real-time streaming, and agentic workflow patterns.",
|
|
5
5
|
"homepage": "https://github.com/Jovancoding/Network-AI#readme",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
package/socket.json
CHANGED
|
@@ -35,6 +35,22 @@
|
|
|
35
35
|
{
|
|
36
36
|
"path": "dist/bin/mcp-server.js",
|
|
37
37
|
"reason": "Intentional — network-ai-server is an opt-in CLI binary that starts an HTTP/SSE server to expose the Network-AI tool suite over MCP. Users invoke it explicitly; it is not a background side-effect."
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"path": "adapters/codex-adapter.ts",
|
|
41
|
+
"reason": "Intentional — CodexAdapter calls OpenAI's chat/completions API (or user-provided baseUrl) via fetch(). Network access is the purpose of this adapter for connecting to OpenAI/Codex endpoints."
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"path": "dist/adapters/codex-adapter.js",
|
|
45
|
+
"reason": "Intentional — CodexAdapter calls OpenAI's chat/completions API (or user-provided baseUrl) via fetch(). Network access is the purpose of this adapter for connecting to OpenAI/Codex endpoints."
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"path": "adapters/minimax-adapter.ts",
|
|
49
|
+
"reason": "Intentional — MiniMaxAdapter calls MiniMax's OpenAI-compatible chat/completions API via fetch(). Network access is the purpose of this adapter for connecting to MiniMax LLM endpoints."
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"path": "dist/adapters/minimax-adapter.js",
|
|
53
|
+
"reason": "Intentional — MiniMaxAdapter calls MiniMax's OpenAI-compatible chat/completions API via fetch(). Network access is the purpose of this adapter for connecting to MiniMax LLM endpoints."
|
|
38
54
|
}
|
|
39
55
|
],
|
|
40
56
|
"urlStrings": [
|
|
@@ -49,6 +65,22 @@
|
|
|
49
65
|
{
|
|
50
66
|
"path": "dist/bin/mcp-server.js",
|
|
51
67
|
"reason": "Intentional — mcp-server.js is the MCP server binary; localhost URLs are for the server it starts (e.g. http://localhost:3001/sse) and are documented in help text and comments."
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"path": "adapters/codex-adapter.ts",
|
|
71
|
+
"reason": "Intentional — CodexAdapter uses https://api.openai.com as default baseUrl for OpenAI API calls. Users can override via config.baseUrl."
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"path": "dist/adapters/codex-adapter.js",
|
|
75
|
+
"reason": "Intentional — CodexAdapter uses https://api.openai.com as default baseUrl for OpenAI API calls. Users can override via config.baseUrl."
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"path": "adapters/minimax-adapter.ts",
|
|
79
|
+
"reason": "Intentional — MiniMaxAdapter uses https://api.minimax.io/v1 as default baseUrl for MiniMax API calls. Users can override via config.baseUrl."
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"path": "dist/adapters/minimax-adapter.js",
|
|
83
|
+
"reason": "Intentional — MiniMaxAdapter uses https://api.minimax.io/v1 as default baseUrl for MiniMax API calls. Users can override via config.baseUrl."
|
|
52
84
|
}
|
|
53
85
|
],
|
|
54
86
|
"envVars": [
|