network-ai 4.3.6 → 4.4.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/README.md +26 -1
- package/SKILL.md +2 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://github.com/jovanSAPFIONEER/Network-AI/actions/workflows/ci.yml)
|
|
6
6
|
[](https://github.com/jovanSAPFIONEER/Network-AI/actions/workflows/codeql.yml)
|
|
7
|
-
[](https://github.com/jovanSAPFIONEER/Network-AI/releases)
|
|
8
8
|
[](https://www.npmjs.com/package/network-ai)
|
|
9
9
|
[](#testing)
|
|
10
10
|
[](#adapter-system)
|
|
@@ -363,6 +363,31 @@ npm run test:cli # CLI layer
|
|
|
363
363
|
|
|
364
364
|
---
|
|
365
365
|
|
|
366
|
+
## Use with Claude, ChatGPT & Codex
|
|
367
|
+
|
|
368
|
+
Three integration files are included in the repo root:
|
|
369
|
+
|
|
370
|
+
| File | Use |
|
|
371
|
+
|---|---|
|
|
372
|
+
| [`claude-tools.json`](claude-tools.json) | Claude API tool use & OpenAI Codex — drop into the `tools` array |
|
|
373
|
+
| [`openapi.yaml`](openapi.yaml) | Custom GPT Actions — import directly in the GPT editor |
|
|
374
|
+
| [`claude-project-prompt.md`](claude-project-prompt.md) | Claude Projects — paste into Custom Instructions |
|
|
375
|
+
|
|
376
|
+
**Claude API / Codex:**
|
|
377
|
+
```js
|
|
378
|
+
import tools from './claude-tools.json' assert { type: 'json' };
|
|
379
|
+
// Pass tools array to anthropic.messages.create({ tools }) or OpenAI chat completions
|
|
380
|
+
```
|
|
381
|
+
|
|
382
|
+
**Custom GPT Actions:**
|
|
383
|
+
In the GPT editor → Actions → Import from URL, or paste the contents of `openapi.yaml`.
|
|
384
|
+
Set the server URL to your running `npx network-ai-server --port 3001` instance.
|
|
385
|
+
|
|
386
|
+
**Claude Projects:**
|
|
387
|
+
Copy 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.
|
|
388
|
+
|
|
389
|
+
---
|
|
390
|
+
|
|
366
391
|
## Contributing
|
|
367
392
|
|
|
368
393
|
1. Fork → feature branch → `npm run test:all` → pull request
|
package/SKILL.md
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: Network-AI
|
|
3
|
-
description:
|
|
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, 14 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/jovanSAPFIONEER/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, 14 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."
|
|
8
9
|
requires:
|
|
9
10
|
bins:
|
|
10
11
|
- python3
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "network-ai",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.0",
|
|
4
4
|
"description": "AI agent orchestration framework for TypeScript/Node.js - 14 adapters (LangChain, AutoGen, CrewAI, OpenAI Assistants, LlamaIndex, Semantic Kernel, Haystack, DSPy, Agno, MCP, OpenClaw, A2A, Codex + streaming variants). Built-in CLI, security, swarm intelligence, real-time streaming, and agentic workflow patterns.",
|
|
5
5
|
"homepage": "https://github.com/jovanSAPFIONEER/Network-AI#readme",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -88,9 +88,9 @@
|
|
|
88
88
|
"python": ">=3.9"
|
|
89
89
|
},
|
|
90
90
|
"devDependencies": {
|
|
91
|
-
"@types/node": "^25.
|
|
91
|
+
"@types/node": "^25.4.0",
|
|
92
92
|
"dotenv": "^17.3.1",
|
|
93
|
-
"openai": "^6.
|
|
93
|
+
"openai": "^6.27.0",
|
|
94
94
|
"ts-node": "^10.9.2",
|
|
95
95
|
"typescript": "^5.9.3"
|
|
96
96
|
},
|
|
@@ -107,6 +107,6 @@
|
|
|
107
107
|
"socket.json"
|
|
108
108
|
],
|
|
109
109
|
"dependencies": {
|
|
110
|
-
"commander": "^
|
|
110
|
+
"commander": "^14.0.3"
|
|
111
111
|
}
|
|
112
112
|
}
|