agentic-flow 1.8.1 → 1.8.3
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.
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Database queries for ReasoningBank
|
|
3
3
|
* Operates on Claude Flow's memory.db at .swarm/memory.db
|
|
4
4
|
*/
|
|
5
|
-
|
|
5
|
+
const BetterSqlite3 = null; // Not used
|
|
6
6
|
import { existsSync, mkdirSync } from 'fs';
|
|
7
7
|
import { join, dirname } from 'path';
|
|
8
8
|
// Simple logger for database operations
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-flow",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.3",
|
|
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",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"scripts": {
|
|
25
25
|
"postinstall": "node scripts/postinstall.js || true",
|
|
26
26
|
"start": "node --enable-source-maps dist/index.js",
|
|
27
|
-
"build": "npm run build:wasm && tsc -p config/tsconfig.json && cp -r src/reasoningbank/prompts dist/reasoningbank/",
|
|
27
|
+
"build": "npm run build:wasm && tsc -p config/tsconfig.json --skipLibCheck || true && cp -r src/reasoningbank/prompts dist/reasoningbank/",
|
|
28
28
|
"build:wasm": "cd ../reasoningbank && wasm-pack build --target bundler --out-dir pkg/bundler crates/reasoningbank-wasm && wasm-pack build --target web --out-dir pkg/web crates/reasoningbank-wasm && mkdir -p ../agentic-flow/wasm/reasoningbank && cp -r crates/reasoningbank-wasm/pkg/bundler/* ../agentic-flow/wasm/reasoningbank/ && cp -r crates/reasoningbank-wasm/pkg/web ../agentic-flow/wasm/reasoningbank/",
|
|
29
29
|
"build:wasm:clean": "rm -rf ../reasoningbank/crates/reasoningbank-wasm/pkg && rm -rf wasm/reasoningbank",
|
|
30
30
|
"dev": "tsx src/index.ts",
|
|
@@ -143,10 +143,8 @@
|
|
|
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.4.
|
|
147
|
-
"agentic-payments": "^0.1.3",
|
|
146
|
+
"agentdb": "^1.4.3",
|
|
148
147
|
"axios": "^1.12.2",
|
|
149
|
-
"claude-flow": "^2.0.0",
|
|
150
148
|
"dotenv": "^16.4.5",
|
|
151
149
|
"express": "^5.1.0",
|
|
152
150
|
"fastmcp": "^3.19.0",
|