cc-claw 0.5.5 → 0.5.6
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/dist/cli.js +8 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -49,7 +49,7 @@ var VERSION;
|
|
|
49
49
|
var init_version = __esm({
|
|
50
50
|
"src/version.ts"() {
|
|
51
51
|
"use strict";
|
|
52
|
-
VERSION = true ? "0.5.
|
|
52
|
+
VERSION = true ? "0.5.6" : (() => {
|
|
53
53
|
try {
|
|
54
54
|
return JSON.parse(readFileSync(join2(process.cwd(), "package.json"), "utf-8")).version ?? "unknown";
|
|
55
55
|
} catch {
|
|
@@ -11587,6 +11587,13 @@ Switch to another backend?`,
|
|
|
11587
11587
|
await channel.sendText(chatId, userMsg, "plain");
|
|
11588
11588
|
} finally {
|
|
11589
11589
|
typingActive = false;
|
|
11590
|
+
const pending = pendingInterrupts.get(chatId);
|
|
11591
|
+
if (pending) {
|
|
11592
|
+
pendingInterrupts.delete(chatId);
|
|
11593
|
+
bypassBusyCheck.add(chatId);
|
|
11594
|
+
handleMessage(pending.msg, pending.channel).catch(() => {
|
|
11595
|
+
});
|
|
11596
|
+
}
|
|
11590
11597
|
}
|
|
11591
11598
|
}
|
|
11592
11599
|
function diagnoseAgentError(msg, chatId) {
|
package/package.json
CHANGED