agentic-flow 1.7.7 → 1.7.9
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/docs/TEST-V1.7.8.Dockerfile +13 -0
- package/package.json +3 -3
|
@@ -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"]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-flow",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.9",
|
|
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,10 @@
|
|
|
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.
|
|
146
|
+
"agentdb": "^1.3.12",
|
|
147
147
|
"agentic-payments": "^0.1.3",
|
|
148
148
|
"axios": "^1.12.2",
|
|
149
|
-
"better-sqlite3": "^
|
|
149
|
+
"better-sqlite3": "^11.7.0",
|
|
150
150
|
"claude-flow": "^2.0.0",
|
|
151
151
|
"dotenv": "^16.4.5",
|
|
152
152
|
"express": "^5.1.0",
|