@rubytech/create-maxy 1.0.729 → 1.0.730

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": "@rubytech/create-maxy",
3
- "version": "1.0.729",
3
+ "version": "1.0.730",
4
4
  "description": "Install Maxy — AI for Productive People",
5
5
  "bin": {
6
6
  "create-maxy": "./dist/index.js"
@@ -8327,6 +8327,10 @@ app11.post("/", requireAdminSession, async (c) => {
8327
8327
  if (controllerClosed) {
8328
8328
  sseLog.write(`[${ts}] [${sk}] admin: DISCONNECT [client_disconnect] ${rawMessage}
8329
8329
  `);
8330
+ interruptClient(session_key).catch((interruptErr) => {
8331
+ sseLog.write(`[${ts}] [${sk}] admin: ABORT [interrupt-failed] ${interruptErr instanceof Error ? interruptErr.message : String(interruptErr)}
8332
+ `);
8333
+ });
8330
8334
  } else {
8331
8335
  const category = classifyAgentError(err);
8332
8336
  const errEvent = JSON.stringify({ type: "text", content: friendlyAgentError(err) });