@swarmclawai/swarmclaw 0.5.3 → 0.6.2
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/README.md +53 -9
- package/bin/server-cmd.js +1 -0
- package/bin/swarmclaw.js +76 -16
- package/next.config.ts +11 -1
- package/package.json +5 -2
- package/scripts/postinstall.mjs +18 -0
- package/src/app/api/canvas/[sessionId]/route.ts +31 -0
- package/src/app/api/chatrooms/[id]/chat/route.ts +284 -0
- package/src/app/api/chatrooms/[id]/members/route.ts +82 -0
- package/src/app/api/chatrooms/[id]/pins/route.ts +39 -0
- package/src/app/api/chatrooms/[id]/reactions/route.ts +42 -0
- package/src/app/api/chatrooms/[id]/route.ts +84 -0
- package/src/app/api/chatrooms/route.ts +50 -0
- package/src/app/api/connectors/[id]/route.ts +1 -0
- package/src/app/api/connectors/route.ts +2 -1
- package/src/app/api/credentials/route.ts +2 -3
- package/src/app/api/files/open/route.ts +43 -0
- package/src/app/api/knowledge/[id]/route.ts +13 -2
- package/src/app/api/knowledge/route.ts +8 -1
- package/src/app/api/memory/route.ts +8 -0
- package/src/app/api/notifications/route.ts +4 -0
- package/src/app/api/orchestrator/run/route.ts +1 -1
- package/src/app/api/plugins/install/route.ts +2 -2
- package/src/app/api/search/route.ts +53 -1
- package/src/app/api/sessions/[id]/chat/route.ts +2 -0
- package/src/app/api/sessions/[id]/edit-resend/route.ts +1 -1
- package/src/app/api/sessions/[id]/fork/route.ts +1 -1
- package/src/app/api/sessions/[id]/messages/route.ts +70 -2
- package/src/app/api/sessions/[id]/route.ts +4 -0
- package/src/app/api/sessions/route.ts +3 -3
- package/src/app/api/settings/route.ts +9 -0
- package/src/app/api/setup/check-provider/route.ts +3 -16
- package/src/app/api/skills/[id]/route.ts +6 -0
- package/src/app/api/skills/route.ts +6 -0
- package/src/app/api/tasks/[id]/route.ts +12 -0
- package/src/app/api/tasks/bulk/route.ts +100 -0
- package/src/app/api/tasks/metrics/route.ts +101 -0
- package/src/app/api/tasks/route.ts +18 -2
- package/src/app/api/tts/route.ts +3 -2
- package/src/app/api/tts/stream/route.ts +3 -2
- package/src/app/api/uploads/[filename]/route.ts +19 -34
- package/src/app/api/uploads/route.ts +94 -0
- package/src/app/api/webhooks/[id]/route.ts +15 -1
- package/src/app/globals.css +63 -15
- package/src/app/page.tsx +142 -13
- package/src/cli/index.js +40 -1
- package/src/cli/index.test.js +30 -0
- package/src/cli/spec.js +42 -0
- package/src/components/agents/agent-avatar.tsx +57 -10
- package/src/components/agents/agent-card.tsx +50 -17
- package/src/components/agents/agent-chat-list.tsx +148 -12
- package/src/components/agents/agent-list.tsx +50 -19
- package/src/components/agents/agent-sheet.tsx +120 -65
- package/src/components/agents/inspector-panel.tsx +81 -6
- package/src/components/agents/openclaw-skills-panel.tsx +32 -3
- package/src/components/agents/personality-builder.tsx +42 -14
- package/src/components/agents/soul-library-picker.tsx +89 -0
- package/src/components/auth/access-key-gate.tsx +10 -3
- package/src/components/auth/setup-wizard.tsx +2 -2
- package/src/components/auth/user-picker.tsx +31 -3
- package/src/components/canvas/canvas-panel.tsx +96 -0
- package/src/components/chat/activity-moment.tsx +173 -0
- package/src/components/chat/chat-area.tsx +46 -22
- package/src/components/chat/chat-header.tsx +457 -286
- package/src/components/chat/chat-preview-panel.tsx +1 -2
- package/src/components/chat/chat-tool-toggles.tsx +1 -1
- package/src/components/chat/delegation-banner.tsx +371 -0
- package/src/components/chat/file-path-chip.tsx +146 -0
- package/src/components/chat/heartbeat-history-panel.tsx +269 -0
- package/src/components/chat/markdown-utils.ts +9 -0
- package/src/components/chat/message-bubble.tsx +356 -315
- package/src/components/chat/message-list.tsx +230 -8
- package/src/components/chat/streaming-bubble.tsx +104 -47
- package/src/components/chat/suggestions-bar.tsx +1 -1
- package/src/components/chat/thinking-indicator.tsx +72 -10
- package/src/components/chat/tool-call-bubble.tsx +111 -73
- package/src/components/chat/tool-request-banner.tsx +31 -7
- package/src/components/chat/transfer-agent-picker.tsx +63 -0
- package/src/components/chatrooms/agent-hover-card.tsx +124 -0
- package/src/components/chatrooms/chatroom-input.tsx +320 -0
- package/src/components/chatrooms/chatroom-list.tsx +130 -0
- package/src/components/chatrooms/chatroom-message.tsx +432 -0
- package/src/components/chatrooms/chatroom-sheet.tsx +215 -0
- package/src/components/chatrooms/chatroom-tool-request-banner.tsx +134 -0
- package/src/components/chatrooms/chatroom-typing-bar.tsx +88 -0
- package/src/components/chatrooms/chatroom-view.tsx +344 -0
- package/src/components/chatrooms/reaction-picker.tsx +273 -0
- package/src/components/connectors/connector-list.tsx +168 -90
- package/src/components/connectors/connector-sheet.tsx +95 -56
- package/src/components/home/home-view.tsx +501 -0
- package/src/components/input/chat-input.tsx +107 -43
- package/src/components/knowledge/knowledge-list.tsx +31 -1
- package/src/components/knowledge/knowledge-sheet.tsx +83 -2
- package/src/components/layout/app-layout.tsx +194 -97
- package/src/components/layout/update-banner.tsx +2 -2
- package/src/components/logs/log-list.tsx +2 -2
- package/src/components/mcp-servers/mcp-server-sheet.tsx +1 -1
- package/src/components/memory/memory-agent-list.tsx +143 -0
- package/src/components/memory/memory-browser.tsx +205 -0
- package/src/components/memory/memory-card.tsx +34 -7
- package/src/components/memory/memory-detail.tsx +359 -120
- package/src/components/memory/memory-sheet.tsx +157 -23
- package/src/components/plugins/plugin-list.tsx +1 -1
- package/src/components/plugins/plugin-sheet.tsx +1 -1
- package/src/components/projects/project-detail.tsx +509 -0
- package/src/components/projects/project-list.tsx +195 -59
- package/src/components/providers/provider-list.tsx +2 -2
- package/src/components/providers/provider-sheet.tsx +3 -3
- package/src/components/schedules/schedule-card.tsx +1 -1
- package/src/components/schedules/schedule-list.tsx +1 -1
- package/src/components/schedules/schedule-sheet.tsx +259 -126
- package/src/components/secrets/secret-sheet.tsx +47 -24
- package/src/components/secrets/secrets-list.tsx +18 -8
- package/src/components/sessions/new-session-sheet.tsx +33 -65
- package/src/components/sessions/session-card.tsx +45 -14
- package/src/components/sessions/session-list.tsx +35 -18
- package/src/components/settings/gateway-disconnect-overlay.tsx +80 -0
- package/src/components/shared/agent-picker-list.tsx +90 -0
- package/src/components/shared/agent-switch-dialog.tsx +156 -0
- package/src/components/shared/attachment-chip.tsx +165 -0
- package/src/components/shared/avatar.tsx +10 -1
- package/src/components/shared/chatroom-picker-list.tsx +61 -0
- package/src/components/shared/check-icon.tsx +12 -0
- package/src/components/shared/confirm-dialog.tsx +1 -1
- package/src/components/shared/connector-platform-icon.tsx +51 -4
- package/src/components/shared/empty-state.tsx +32 -0
- package/src/components/shared/file-preview.tsx +34 -0
- package/src/components/shared/form-styles.ts +2 -0
- package/src/components/shared/icon-button.tsx +16 -2
- package/src/components/shared/keyboard-shortcuts-dialog.tsx +116 -0
- package/src/components/shared/notification-center.tsx +44 -6
- package/src/components/shared/profile-sheet.tsx +115 -0
- package/src/components/shared/reply-quote.tsx +26 -0
- package/src/components/shared/search-dialog.tsx +31 -15
- package/src/components/shared/section-label.tsx +12 -0
- package/src/components/shared/settings/plugin-manager.tsx +1 -1
- package/src/components/shared/settings/section-embedding.tsx +48 -13
- package/src/components/shared/settings/section-orchestrator.tsx +46 -15
- package/src/components/shared/settings/section-providers.tsx +1 -1
- package/src/components/shared/settings/section-secrets.tsx +1 -1
- package/src/components/shared/settings/section-storage.tsx +206 -0
- package/src/components/shared/settings/section-theme.tsx +95 -0
- package/src/components/shared/settings/section-user-preferences.tsx +57 -0
- package/src/components/shared/settings/section-voice.tsx +42 -21
- package/src/components/shared/settings/section-web-search.tsx +30 -6
- package/src/components/shared/settings/settings-page.tsx +182 -27
- package/src/components/shared/settings/settings-sheet.tsx +9 -73
- package/src/components/shared/settings/storage-browser.tsx +259 -0
- package/src/components/shared/sheet-footer.tsx +33 -0
- package/src/components/skills/skill-list.tsx +61 -30
- package/src/components/skills/skill-sheet.tsx +81 -2
- package/src/components/tasks/task-board.tsx +448 -26
- package/src/components/tasks/task-card.tsx +59 -9
- package/src/components/tasks/task-column.tsx +62 -3
- package/src/components/tasks/task-list.tsx +12 -4
- package/src/components/tasks/task-sheet.tsx +416 -74
- package/src/components/ui/hover-card.tsx +52 -0
- package/src/components/usage/metrics-dashboard.tsx +90 -6
- package/src/components/usage/usage-list.tsx +1 -1
- package/src/components/webhooks/webhook-sheet.tsx +1 -1
- package/src/hooks/use-continuous-speech.ts +10 -4
- package/src/hooks/use-view-router.ts +69 -19
- package/src/hooks/use-voice-conversation.ts +53 -10
- package/src/hooks/use-ws.ts +4 -2
- package/src/instrumentation.ts +15 -1
- package/src/lib/chat.ts +2 -0
- package/src/lib/memory.ts +3 -0
- package/src/lib/providers/anthropic.ts +13 -7
- package/src/lib/providers/index.ts +1 -0
- package/src/lib/providers/openai.ts +13 -7
- package/src/lib/server/chat-execution.ts +75 -15
- package/src/lib/server/chatroom-helpers.ts +146 -0
- package/src/lib/server/connectors/manager.ts +229 -7
- package/src/lib/server/context-manager.ts +225 -13
- package/src/lib/server/create-notification.ts +14 -2
- package/src/lib/server/daemon-state.ts +157 -10
- package/src/lib/server/execution-log.ts +1 -0
- package/src/lib/server/heartbeat-service.ts +48 -6
- package/src/lib/server/heartbeat-wake.ts +110 -0
- package/src/lib/server/langgraph-checkpoint.ts +1 -0
- package/src/lib/server/main-agent-loop.ts +1 -1
- package/src/lib/server/memory-consolidation.ts +105 -0
- package/src/lib/server/memory-db.ts +183 -10
- package/src/lib/server/mime.ts +51 -0
- package/src/lib/server/openclaw-gateway.ts +9 -1
- package/src/lib/server/orchestrator-lg.ts +2 -0
- package/src/lib/server/orchestrator.ts +5 -2
- package/src/lib/server/playwright-proxy.mjs +2 -3
- package/src/lib/server/prompt-runtime-context.ts +53 -0
- package/src/lib/server/provider-health.ts +125 -0
- package/src/lib/server/queue.ts +56 -10
- package/src/lib/server/scheduler.ts +8 -0
- package/src/lib/server/session-run-manager.ts +4 -0
- package/src/lib/server/session-tools/canvas.ts +67 -0
- package/src/lib/server/session-tools/chatroom.ts +136 -0
- package/src/lib/server/session-tools/connector.ts +83 -9
- package/src/lib/server/session-tools/context-mgmt.ts +36 -18
- package/src/lib/server/session-tools/crud.ts +21 -0
- package/src/lib/server/session-tools/delegate.ts +68 -4
- package/src/lib/server/session-tools/git.ts +71 -0
- package/src/lib/server/session-tools/http.ts +57 -0
- package/src/lib/server/session-tools/index.ts +10 -0
- package/src/lib/server/session-tools/memory.ts +7 -1
- package/src/lib/server/session-tools/search-providers.ts +16 -8
- package/src/lib/server/session-tools/subagent.ts +106 -0
- package/src/lib/server/session-tools/web.ts +115 -4
- package/src/lib/server/storage.ts +53 -29
- package/src/lib/server/stream-agent-chat.ts +185 -57
- package/src/lib/server/system-events.ts +49 -0
- package/src/lib/server/task-mention.ts +41 -0
- package/src/lib/server/ws-hub.ts +11 -0
- package/src/lib/sessions.ts +10 -0
- package/src/lib/soul-library.ts +103 -0
- package/src/lib/soul-suggestions.ts +109 -0
- package/src/lib/task-dedupe.ts +26 -0
- package/src/lib/tasks.ts +4 -1
- package/src/lib/tool-definitions.ts +2 -0
- package/src/lib/tts.ts +2 -2
- package/src/lib/view-routes.ts +36 -1
- package/src/lib/ws-client.ts +14 -4
- package/src/stores/use-app-store.ts +41 -3
- package/src/stores/use-chat-store.ts +113 -5
- package/src/stores/use-chatroom-store.ts +276 -0
- package/src/types/index.ts +88 -4
package/src/types/index.ts
CHANGED
|
@@ -13,10 +13,13 @@ export interface Message {
|
|
|
13
13
|
imageUrl?: string
|
|
14
14
|
attachedFiles?: string[]
|
|
15
15
|
toolEvents?: MessageToolEvent[]
|
|
16
|
-
|
|
16
|
+
thinking?: string
|
|
17
|
+
kind?: 'chat' | 'heartbeat' | 'system' | 'context-clear'
|
|
17
18
|
suppressed?: boolean
|
|
18
19
|
bookmarked?: boolean
|
|
19
20
|
suggestions?: string[]
|
|
21
|
+
replyToId?: string
|
|
22
|
+
source?: MessageSource
|
|
20
23
|
}
|
|
21
24
|
|
|
22
25
|
export type ProviderType = 'claude-cli' | 'codex-cli' | 'opencode-cli' | 'openai' | 'ollama' | 'anthropic' | 'openclaw' | 'google' | 'deepseek' | 'groq' | 'together' | 'mistral' | 'xai' | 'fireworks'
|
|
@@ -113,6 +116,7 @@ export interface Session {
|
|
|
113
116
|
queuedCount?: number
|
|
114
117
|
currentRunId?: string | null
|
|
115
118
|
conversationTone?: string
|
|
119
|
+
canvasContent?: string | null
|
|
116
120
|
}
|
|
117
121
|
|
|
118
122
|
export type Sessions = Record<string, Session>
|
|
@@ -127,6 +131,10 @@ export type SessionTool =
|
|
|
127
131
|
| 'web_fetch'
|
|
128
132
|
| 'edit_file'
|
|
129
133
|
| 'process'
|
|
134
|
+
| 'spawn_subagent'
|
|
135
|
+
| 'canvas'
|
|
136
|
+
| 'http_request'
|
|
137
|
+
| 'git'
|
|
130
138
|
|
|
131
139
|
// --- Cost Tracking ---
|
|
132
140
|
|
|
@@ -182,11 +190,13 @@ export interface MarketplacePlugin {
|
|
|
182
190
|
}
|
|
183
191
|
|
|
184
192
|
export interface SSEEvent {
|
|
185
|
-
t: 'd' | 'md' | 'r' | 'done' | 'err' | 'tool_call' | 'tool_result' | 'status'
|
|
193
|
+
t: 'd' | 'md' | 'r' | 'done' | 'err' | 'tool_call' | 'tool_result' | 'status' | 'thinking' | 'cr_agent_start' | 'cr_agent_done'
|
|
186
194
|
text?: string
|
|
187
195
|
toolName?: string
|
|
188
196
|
toolInput?: string
|
|
189
197
|
toolOutput?: string
|
|
198
|
+
agentId?: string
|
|
199
|
+
agentName?: string
|
|
190
200
|
}
|
|
191
201
|
|
|
192
202
|
export interface Directory {
|
|
@@ -251,8 +261,12 @@ export interface Agent {
|
|
|
251
261
|
heartbeatGoal?: string | null
|
|
252
262
|
heartbeatNextAction?: string | null
|
|
253
263
|
thinkingLevel?: 'minimal' | 'low' | 'medium' | 'high'
|
|
264
|
+
elevenLabsVoiceId?: string | null
|
|
254
265
|
projectId?: string
|
|
255
266
|
avatarSeed?: string
|
|
267
|
+
pinned?: boolean
|
|
268
|
+
lastUsedAt?: number
|
|
269
|
+
totalCost?: number
|
|
256
270
|
trashedAt?: number
|
|
257
271
|
openclawSkillMode?: SkillAllowlistMode
|
|
258
272
|
openclawAllowedSkills?: string[]
|
|
@@ -331,12 +345,55 @@ export interface MemoryEntry {
|
|
|
331
345
|
image?: MemoryImage | null
|
|
332
346
|
imagePath?: string | null
|
|
333
347
|
linkedMemoryIds?: string[]
|
|
348
|
+
pinned?: boolean
|
|
349
|
+
sharedWith?: string[]
|
|
350
|
+
accessCount?: number
|
|
351
|
+
lastAccessedAt?: number
|
|
352
|
+
contentHash?: string
|
|
353
|
+
reinforcementCount?: number
|
|
334
354
|
createdAt: number
|
|
335
355
|
updatedAt: number
|
|
336
356
|
}
|
|
337
357
|
|
|
338
358
|
export type SessionType = 'human' | 'orchestrated'
|
|
339
|
-
export type AppView = 'agents' | 'schedules' | 'memory' | 'tasks' | 'secrets' | 'providers' | 'skills' | 'connectors' | 'webhooks' | 'mcp_servers' | 'knowledge' | 'plugins' | 'usage' | 'runs' | 'logs' | 'settings' | 'projects' | 'activity'
|
|
359
|
+
export type AppView = 'home' | 'agents' | 'chatrooms' | 'schedules' | 'memory' | 'tasks' | 'secrets' | 'providers' | 'skills' | 'connectors' | 'webhooks' | 'mcp_servers' | 'knowledge' | 'plugins' | 'usage' | 'runs' | 'logs' | 'settings' | 'projects' | 'activity'
|
|
360
|
+
|
|
361
|
+
// --- Chatrooms ---
|
|
362
|
+
|
|
363
|
+
export interface ChatroomReaction {
|
|
364
|
+
emoji: string
|
|
365
|
+
reactorId: string // 'user' or agentId
|
|
366
|
+
time: number
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
export interface ChatroomMessage {
|
|
370
|
+
id: string
|
|
371
|
+
senderId: string // 'user' or agentId
|
|
372
|
+
senderName: string
|
|
373
|
+
role: 'user' | 'assistant'
|
|
374
|
+
text: string
|
|
375
|
+
mentions: string[] // parsed agentIds
|
|
376
|
+
reactions: ChatroomReaction[]
|
|
377
|
+
toolEvents?: MessageToolEvent[]
|
|
378
|
+
time: number
|
|
379
|
+
attachedFiles?: string[]
|
|
380
|
+
imagePath?: string
|
|
381
|
+
replyToId?: string
|
|
382
|
+
source?: MessageSource
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
export interface Chatroom {
|
|
386
|
+
id: string
|
|
387
|
+
name: string
|
|
388
|
+
description?: string
|
|
389
|
+
agentIds: string[]
|
|
390
|
+
messages: ChatroomMessage[]
|
|
391
|
+
pinnedMessageIds?: string[]
|
|
392
|
+
chatMode?: 'sequential' | 'parallel'
|
|
393
|
+
autoAddress?: boolean
|
|
394
|
+
createdAt: number
|
|
395
|
+
updatedAt: number
|
|
396
|
+
}
|
|
340
397
|
|
|
341
398
|
// --- Activity / Audit Trail ---
|
|
342
399
|
|
|
@@ -382,8 +439,11 @@ export interface AppNotification {
|
|
|
382
439
|
type: 'info' | 'success' | 'warning' | 'error'
|
|
383
440
|
title: string
|
|
384
441
|
message?: string
|
|
442
|
+
actionLabel?: string
|
|
443
|
+
actionUrl?: string
|
|
385
444
|
entityType?: string
|
|
386
445
|
entityId?: string
|
|
446
|
+
dedupKey?: string
|
|
387
447
|
read: boolean
|
|
388
448
|
createdAt: number
|
|
389
449
|
}
|
|
@@ -455,9 +515,13 @@ export interface AppSettings {
|
|
|
455
515
|
shellCommandTimeoutSec?: number
|
|
456
516
|
claudeCodeTimeoutSec?: number
|
|
457
517
|
cliProcessTimeoutSec?: number
|
|
518
|
+
userAvatarSeed?: string
|
|
519
|
+
elevenLabsEnabled?: boolean
|
|
458
520
|
elevenLabsApiKey?: string | null
|
|
459
521
|
elevenLabsVoiceId?: string | null
|
|
460
522
|
speechRecognitionLang?: string | null
|
|
523
|
+
tavilyApiKey?: string | null
|
|
524
|
+
braveApiKey?: string | null
|
|
461
525
|
heartbeatPrompt?: string | null
|
|
462
526
|
heartbeatIntervalSec?: number | null
|
|
463
527
|
heartbeatInterval?: string | number | null
|
|
@@ -497,8 +561,14 @@ export interface AppSettings {
|
|
|
497
561
|
maxLinkedMemoriesExpanded?: number
|
|
498
562
|
memoryMaxDepth?: number
|
|
499
563
|
memoryMaxPerLookup?: number
|
|
564
|
+
// Chat UX
|
|
565
|
+
suggestionsEnabled?: boolean
|
|
500
566
|
// Voice conversation
|
|
501
567
|
voiceAutoSendDelaySec?: number
|
|
568
|
+
// Default agent for main chat on startup
|
|
569
|
+
defaultAgentId?: string | null
|
|
570
|
+
// Theme
|
|
571
|
+
themeHue?: string
|
|
502
572
|
// Web search provider
|
|
503
573
|
webSearchProvider?: 'duckduckgo' | 'google' | 'bing' | 'searxng' | 'tavily' | 'brave'
|
|
504
574
|
searxngUrl?: string
|
|
@@ -561,6 +631,8 @@ export interface Skill {
|
|
|
561
631
|
description?: string
|
|
562
632
|
sourceUrl?: string
|
|
563
633
|
sourceFormat?: 'openclaw' | 'plain'
|
|
634
|
+
scope?: 'global' | 'agent'
|
|
635
|
+
agentIds?: string[]
|
|
564
636
|
createdAt: number
|
|
565
637
|
updatedAt: number
|
|
566
638
|
}
|
|
@@ -570,11 +642,19 @@ export interface Skill {
|
|
|
570
642
|
export type ConnectorPlatform = 'discord' | 'telegram' | 'slack' | 'whatsapp' | 'openclaw' | 'bluebubbles' | 'signal' | 'teams' | 'googlechat' | 'matrix'
|
|
571
643
|
export type ConnectorStatus = 'stopped' | 'running' | 'error'
|
|
572
644
|
|
|
645
|
+
export interface MessageSource {
|
|
646
|
+
platform: ConnectorPlatform
|
|
647
|
+
connectorId: string
|
|
648
|
+
connectorName: string
|
|
649
|
+
senderName?: string
|
|
650
|
+
}
|
|
651
|
+
|
|
573
652
|
export interface Connector {
|
|
574
653
|
id: string
|
|
575
654
|
name: string
|
|
576
655
|
platform: ConnectorPlatform
|
|
577
|
-
agentId
|
|
656
|
+
agentId?: string | null // which agent handles incoming messages (optional if using chatroomId)
|
|
657
|
+
chatroomId?: string | null // route to a chatroom instead of a single agent
|
|
578
658
|
credentialId?: string | null // bot token stored as encrypted credential
|
|
579
659
|
config: Record<string, string> // platform-specific settings
|
|
580
660
|
isEnabled: boolean
|
|
@@ -682,6 +762,10 @@ export interface BoardTask {
|
|
|
682
762
|
dueAt?: number | null
|
|
683
763
|
// Custom fields
|
|
684
764
|
customFields?: Record<string, string | number | boolean>
|
|
765
|
+
// Priority
|
|
766
|
+
priority?: 'low' | 'medium' | 'high' | 'critical'
|
|
767
|
+
// Dedup fingerprint
|
|
768
|
+
fingerprint?: string
|
|
685
769
|
}
|
|
686
770
|
|
|
687
771
|
// --- MCP Servers ---
|