From 634755454f18158625f69177983010aaafdfbe74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kuty=C5=82a?= Date: Thu, 9 Jul 2026 11:19:52 +0200 Subject: [PATCH 1/2] fix(chat): re-export isNameTrackedByAnotherSession from router MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit server.ts imports it from routers/chat.js, but the router never re-exported it from apps/chat/src/mcp.js — server crashed on boot with a SyntaxError. --- src/routers/chat.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/routers/chat.ts b/src/routers/chat.ts index 1de1785..a18c145 100644 --- a/src/routers/chat.ts +++ b/src/routers/chat.ts @@ -21,6 +21,7 @@ import { hasChatMcpHttpSession, registerChatMcpHttpSession, unregisterChatMcpHttpSession, + isNameTrackedByAnotherSession, } from '../apps/chat/src/mcp.js'; export { @@ -30,6 +31,7 @@ export { hasChatMcpHttpSession, registerChatMcpHttpSession, unregisterChatMcpHttpSession, + isNameTrackedByAnotherSession, }; export const router: Router = Router(); From e9006afe33c9666d152e8dd7bd52c9291fdc649a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kuty=C5=82a?= Date: Thu, 9 Jul 2026 13:14:11 +0200 Subject: [PATCH 2/2] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 38fcb7c..075f8e8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "devglide", - "version": "0.2.35", + "version": "0.2.37", "description": "AI workflow toolkit with MCP servers for kanban, shell, testing, workflows, and more — built for Claude Code", "license": "MIT", "author": "Daniel Kutyla",