agentic-flow 1.7.8 → 1.7.10

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.
@@ -0,0 +1,13 @@
1
+ # Test agentic-flow v1.7.8 with fixed agentdb dependency
2
+ FROM node:18-alpine
3
+
4
+ RUN apk add --no-cache python3 make g++ sqlite sqlite-dev
5
+
6
+ WORKDIR /test
7
+
8
+ RUN echo "========================================" && \
9
+ echo "Testing npx agentic-flow@latest" && \
10
+ echo "========================================" && \
11
+ npx agentic-flow@latest --version 2>&1 | head -20
12
+
13
+ CMD ["echo", "✅ Test complete"]
@@ -0,0 +1,13 @@
1
+ # Test agentic-flow v1.7.9 with Node 20 (recommended environment)
2
+ FROM node:20-alpine
3
+
4
+ RUN apk add --no-cache python3 make g++ sqlite sqlite-dev
5
+
6
+ WORKDIR /test
7
+
8
+ RUN echo "========================================" && \
9
+ echo "Testing npx agentic-flow@latest with Node 20" && \
10
+ echo "========================================" && \
11
+ npx agentic-flow@latest --version 2>&1
12
+
13
+ CMD ["echo", "✅ Test complete"]
@@ -0,0 +1,14 @@
1
+ # Test agentic-flow v1.7.9 with better-sqlite3 v11.x for Node 18 compatibility
2
+ FROM node:18-alpine
3
+
4
+ RUN apk add --no-cache python3 make g++ sqlite sqlite-dev
5
+
6
+ WORKDIR /test
7
+
8
+ RUN echo "========================================" && \
9
+ echo "Testing npx agentic-flow@latest" && \
10
+ echo "Expecting v1.7.9 with better-sqlite3 v11.x" && \
11
+ echo "========================================" && \
12
+ npx agentic-flow@latest --version 2>&1 | head -20
13
+
14
+ CMD ["echo", "✅ Test complete"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-flow",
3
- "version": "1.7.8",
3
+ "version": "1.7.10",
4
4
  "description": "Production-ready AI agent orchestration platform with 66 specialized agents, 213 MCP tools, ReasoningBank learning memory, and autonomous multi-agent swarms. Built by @ruvnet with Claude Agent SDK, neural networks, memory persistence, GitHub integration, and distributed consensus protocols.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -143,10 +143,9 @@
143
143
  "@anthropic-ai/claude-agent-sdk": "^0.1.5",
144
144
  "@anthropic-ai/sdk": "^0.65.0",
145
145
  "@google/genai": "^1.22.0",
146
- "agentdb": "^1.3.12",
146
+ "agentdb": "^1.3.16",
147
147
  "agentic-payments": "^0.1.3",
148
148
  "axios": "^1.12.2",
149
- "better-sqlite3": "^12.4.1",
150
149
  "claude-flow": "^2.0.0",
151
150
  "dotenv": "^16.4.5",
152
151
  "express": "^5.1.0",
@@ -258,7 +258,7 @@ export function log(message) {
258
258
  wasm.log(ptr0, len0);
259
259
  }
260
260
 
261
- function __wbg_adapter_4(arg0, arg1, arg2) {
261
+ function __wbg_adapter_6(arg0, arg1, arg2) {
262
262
  wasm.__wbindgen_export_5(arg0, arg1, addHeapObject(arg2));
263
263
  }
264
264
 
@@ -540,7 +540,7 @@ export function __wbindgen_cast_2241b6af4c4b2941(arg0, arg1) {
540
540
 
541
541
  export function __wbindgen_cast_8eb6fd44e7238d11(arg0, arg1) {
542
542
  // Cast intrinsic for `Closure(Closure { dtor_idx: 62, function: Function { arguments: [Externref], shim_idx: 63, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
543
- const ret = makeMutClosure(arg0, arg1, 62, __wbg_adapter_4);
543
+ const ret = makeMutClosure(arg0, arg1, 62, __wbg_adapter_6);
544
544
  return addHeapObject(ret);
545
545
  };
546
546