@swarmclawai/swarmclaw 1.1.4 → 1.1.5
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swarmclawai/swarmclaw",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "Self-hosted AI runtime for OpenClaw, delegation, autonomy, runtime skills, crypto wallets, and chat platform connectors.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -77,14 +77,22 @@
|
|
|
77
77
|
"@huggingface/transformers": "^3.8.1",
|
|
78
78
|
"@langchain/anthropic": "^1.3.18",
|
|
79
79
|
"@langchain/core": "^1.1.31",
|
|
80
|
-
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
81
|
-
"@tailwindcss/postcss": "^4",
|
|
82
80
|
"@langchain/langgraph": "^1.2.2",
|
|
83
81
|
"@langchain/openai": "^1.2.8",
|
|
82
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
84
83
|
"@multiavatar/multiavatar": "^1.0.7",
|
|
85
84
|
"@playwright/mcp": "^0.0.68",
|
|
86
85
|
"@slack/bolt": "^4.6.0",
|
|
87
86
|
"@solana/web3.js": "^1.98.4",
|
|
87
|
+
"@tailwindcss/postcss": "^4",
|
|
88
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
89
|
+
"@types/mailparser": "^3.4.6",
|
|
90
|
+
"@types/node": "^20",
|
|
91
|
+
"@types/nodemailer": "^7.0.11",
|
|
92
|
+
"@types/qrcode": "^1.5.6",
|
|
93
|
+
"@types/react": "^19",
|
|
94
|
+
"@types/react-dom": "^19",
|
|
95
|
+
"@types/ws": "^8.18.1",
|
|
88
96
|
"@whiskeysockets/baileys": "^7.0.0-rc.9",
|
|
89
97
|
"better-sqlite3": "^12.6.2",
|
|
90
98
|
"bs58": "^5.0.0",
|
|
@@ -121,21 +129,13 @@
|
|
|
121
129
|
"remove-markdown": "^0.6.3",
|
|
122
130
|
"shadcn": "^3.8.5",
|
|
123
131
|
"sonner": "^2.0.7",
|
|
124
|
-
"tailwindcss": "^4",
|
|
125
132
|
"tailwind-merge": "^3.4.1",
|
|
126
|
-
"
|
|
133
|
+
"tailwindcss": "^4",
|
|
127
134
|
"tw-animate-css": "^1.4.0",
|
|
135
|
+
"typescript": "^5",
|
|
128
136
|
"ws": "^8.19.0",
|
|
129
137
|
"zod": "^4.3.6",
|
|
130
|
-
"zustand": "^5.0.11"
|
|
131
|
-
"@types/better-sqlite3": "^7.6.13",
|
|
132
|
-
"@types/mailparser": "^3.4.6",
|
|
133
|
-
"@types/node": "^20",
|
|
134
|
-
"@types/nodemailer": "^7.0.11",
|
|
135
|
-
"@types/qrcode": "^1.5.6",
|
|
136
|
-
"@types/react": "^19",
|
|
137
|
-
"@types/react-dom": "^19",
|
|
138
|
-
"@types/ws": "^8.18.1"
|
|
138
|
+
"zustand": "^5.0.11"
|
|
139
139
|
},
|
|
140
140
|
"devDependencies": {
|
|
141
141
|
"eslint": "^9",
|
|
@@ -15,7 +15,7 @@ import { log } from '@/lib/server/logger'
|
|
|
15
15
|
import { WORKSPACE_DIR } from '@/lib/server/data-dir'
|
|
16
16
|
import { drainSystemEvents, drainOrchestratorEvents } from '@/lib/server/runtime/system-events'
|
|
17
17
|
import { buildMissionContextBlock } from '@/lib/server/missions/mission-service'
|
|
18
|
-
import type { Agent, Chatroom
|
|
18
|
+
import type { Agent, Chatroom } from '@/types'
|
|
19
19
|
import { isOrchestratorEligible } from '@/lib/orchestrator-config'
|
|
20
20
|
import { buildIdentityContinuityContext } from '@/lib/server/identity-continuity'
|
|
21
21
|
import { buildMainLoopHeartbeatPrompt, isMainSession } from '@/lib/server/agents/main-agent-loop'
|