network-ai 4.3.7 → 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.
Files changed (2) hide show
  1. package/README.md +25 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "network-ai",
3
- "version": "4.3.7",
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.3.3",
91
+ "@types/node": "^25.4.0",
92
92
  "dotenv": "^17.3.1",
93
- "openai": "^6.25.0",
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": "^13.1.0"
110
+ "commander": "^14.0.3"
111
111
  }
112
112
  }