cc-claw 0.3.8 → 0.3.9
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 +2 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -48,7 +48,7 @@ var VERSION;
|
|
|
48
48
|
var init_version = __esm({
|
|
49
49
|
"src/version.ts"() {
|
|
50
50
|
"use strict";
|
|
51
|
-
VERSION = true ? "0.3.
|
|
51
|
+
VERSION = true ? "0.3.9" : (() => {
|
|
52
52
|
try {
|
|
53
53
|
return JSON.parse(readFileSync(join2(process.cwd(), "package.json"), "utf-8")).version ?? "unknown";
|
|
54
54
|
} catch {
|
|
@@ -11718,9 +11718,8 @@ async function main() {
|
|
|
11718
11718
|
} catch {
|
|
11719
11719
|
log("[cc-claw] Session summarization skipped (timeout or backend unavailable)");
|
|
11720
11720
|
}
|
|
11721
|
-
clearAllSessions();
|
|
11722
11721
|
setBootTime();
|
|
11723
|
-
log("[cc-claw] Database initialized (
|
|
11722
|
+
log("[cc-claw] Database initialized (sessions preserved for resume)");
|
|
11724
11723
|
if (process.env.TELEGRAM_BOT_TOKEN) {
|
|
11725
11724
|
channelRegistry.register(new TelegramChannel());
|
|
11726
11725
|
}
|
package/package.json
CHANGED