@rubytech/create-maxy 1.0.503 → 1.0.505
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
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
|
|
40
40
|
"plugins": {
|
|
41
41
|
"core": ["admin", "memory", "docs", "cloudflare", "anthropic", "workflows", "tasks"],
|
|
42
|
-
"defaultEnabled": ["business-assistant", "sales", "contacts", "email", "scheduling", "projects"],
|
|
43
|
-
"available": ["telegram", "waitlist", "deep-research"],
|
|
42
|
+
"defaultEnabled": ["business-assistant", "sales", "contacts", "email", "scheduling", "projects", "documents"],
|
|
43
|
+
"available": ["telegram", "waitlist", "deep-research", "whatsapp", "replicate"],
|
|
44
44
|
"excluded": []
|
|
45
45
|
}
|
|
46
46
|
}
|
package/payload/server/server.js
CHANGED
|
@@ -6160,6 +6160,8 @@ async function* runCompactionTurn(accountDir, accountId, systemPrompt, resumeSes
|
|
|
6160
6160
|
env: { ...process.env, PLATFORM_ROOT: PLATFORM_ROOT4, ACCOUNT_DIR: accountDir }
|
|
6161
6161
|
});
|
|
6162
6162
|
const stderrLog = agentLogStream("claude-agent-compaction-stderr", accountDir);
|
|
6163
|
+
stderrLog.on("error", () => {
|
|
6164
|
+
});
|
|
6163
6165
|
proc.stderr?.pipe(stderrLog);
|
|
6164
6166
|
const streamLog = agentLogStream("claude-agent-compaction-stream", accountDir);
|
|
6165
6167
|
streamLog.write(`[${isoTs()}] [compaction-start] resumeSessionId=${resumeSessionId}
|
|
@@ -6802,6 +6804,8 @@ async function* invokeAdminAgent(message, systemPrompt, accountDir, accountId, a
|
|
|
6802
6804
|
env: { ...process.env, PLATFORM_ROOT: PLATFORM_ROOT4, ACCOUNT_DIR: accountDir }
|
|
6803
6805
|
});
|
|
6804
6806
|
const stderrLog = agentLogStream("claude-agent-stderr", accountDir);
|
|
6807
|
+
stderrLog.on("error", () => {
|
|
6808
|
+
});
|
|
6805
6809
|
proc.stderr?.pipe(stderrLog);
|
|
6806
6810
|
const streamLog = agentLogStream("claude-agent-stream", accountDir);
|
|
6807
6811
|
streamLog.write(`[${isoTs()}] [spawn] pid=${proc.pid} resume=${resumeSessionId ?? "none"} sessionKey=${sessionKey ?? "none"} pluginDir=${specialistsDir}
|
|
@@ -6982,6 +6986,7 @@ ${summary}`;
|
|
|
6982
6986
|
yield { type: "text", content: "The session ended unexpectedly and could not be recovered automatically. Please re-send your message." };
|
|
6983
6987
|
yield { type: "done" };
|
|
6984
6988
|
}
|
|
6989
|
+
proc.stderr?.unpipe(stderrLog);
|
|
6985
6990
|
stderrLog.end();
|
|
6986
6991
|
streamLog.end();
|
|
6987
6992
|
}
|
|
@@ -7055,6 +7060,8 @@ async function* invokeManagedAdminAgent(message, systemPrompt, accountDir, accou
|
|
|
7055
7060
|
env: { ...process.env, PLATFORM_ROOT: PLATFORM_ROOT4, ACCOUNT_DIR: accountDir }
|
|
7056
7061
|
});
|
|
7057
7062
|
const stderrLog = agentLogStream("claude-agent-stderr", accountDir);
|
|
7063
|
+
stderrLog.on("error", () => {
|
|
7064
|
+
});
|
|
7058
7065
|
proc.stderr?.pipe(stderrLog);
|
|
7059
7066
|
streamLog.write(`[${isoTs()}] [managed-spawn] pid=${proc.pid} sessionKey=${sessionKey} historyMessages=${history.length} pluginDir=${specialistsDir}
|
|
7060
7067
|
`);
|
|
@@ -7214,6 +7221,7 @@ ${summary}`;
|
|
|
7214
7221
|
yield { type: "text", content: "The session ended unexpectedly and could not be recovered automatically. Your messages have been preserved \u2014 please re-send your request." };
|
|
7215
7222
|
yield { type: "done" };
|
|
7216
7223
|
}
|
|
7224
|
+
proc.stderr?.unpipe(stderrLog);
|
|
7217
7225
|
stderrLog.end();
|
|
7218
7226
|
streamLog.end();
|
|
7219
7227
|
}
|