codesesh 0.10.0 → 0.11.0
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/README.md +2 -1
- package/dist/{chunk-ZQMIB7QO.js → chunk-BIXOP5QX.js} +70 -21
- package/dist/chunk-BIXOP5QX.js.map +1 -0
- package/dist/{dist-GZSUB4NY.js → dist-T737I76S.js} +2 -2
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/scan-refresh-worker.js +1 -1
- package/dist/search-index-worker.js +1 -1
- package/dist/smart-tag-worker.js +1 -1
- package/dist/web/assets/index-DlZEB-Op.css +2 -0
- package/dist/web/assets/index-O6YSX0s1.js +113 -0
- package/dist/web/assets/{vendor-CQhWyNUf.js → vendor-CR3FdUHs.js} +14 -14
- package/dist/web/icon/agent/zcode.svg +1 -0
- package/dist/web/index.html +3 -3
- package/package.json +4 -3
- package/dist/chunk-ZQMIB7QO.js.map +0 -1
- package/dist/web/assets/index-BHmQBGNx.css +0 -2
- package/dist/web/assets/index-CxJTOv8L.js +0 -111
- /package/dist/{dist-GZSUB4NY.js.map → dist-T737I76S.js.map} +0 -0
|
@@ -93,7 +93,7 @@ import {
|
|
|
93
93
|
toLocalDateKey,
|
|
94
94
|
upsertBookmark,
|
|
95
95
|
withEstimatedSessionCost
|
|
96
|
-
} from "./chunk-
|
|
96
|
+
} from "./chunk-BIXOP5QX.js";
|
|
97
97
|
export {
|
|
98
98
|
BaseAgent,
|
|
99
99
|
BookmarkStorageUnavailableError,
|
|
@@ -189,4 +189,4 @@ export {
|
|
|
189
189
|
upsertBookmark,
|
|
190
190
|
withEstimatedSessionCost
|
|
191
191
|
};
|
|
192
|
-
//# sourceMappingURL=dist-
|
|
192
|
+
//# sourceMappingURL=dist-T737I76S.js.map
|
package/dist/index.js
CHANGED
|
@@ -40,7 +40,7 @@ import {
|
|
|
40
40
|
sortSessions,
|
|
41
41
|
startOfLocalDay,
|
|
42
42
|
upsertBookmark
|
|
43
|
-
} from "./chunk-
|
|
43
|
+
} from "./chunk-BIXOP5QX.js";
|
|
44
44
|
|
|
45
45
|
// src/index.ts
|
|
46
46
|
import { defineCommand, runMain } from "citty";
|
|
@@ -1049,6 +1049,8 @@ function resolveAgentWatchTargets(agentName) {
|
|
|
1049
1049
|
{ root: roots.opencodeRoot, path: join2(roots.opencodeRoot, "opencode.db") },
|
|
1050
1050
|
{ root: "data/opencode", path: "data/opencode/opencode.db" }
|
|
1051
1051
|
];
|
|
1052
|
+
case "zcode":
|
|
1053
|
+
return roots.zcodeRoot ? [{ root: roots.zcodeRoot, path: join2(roots.zcodeRoot, "cli", "db", "db.sqlite") }] : [];
|
|
1052
1054
|
default:
|
|
1053
1055
|
return [];
|
|
1054
1056
|
}
|
|
@@ -2276,7 +2278,7 @@ var main = defineCommand({
|
|
|
2276
2278
|
log_path: appLogger.getLogPath()
|
|
2277
2279
|
});
|
|
2278
2280
|
if (clearCache) {
|
|
2279
|
-
const { clearCache: clear } = await import("./dist-
|
|
2281
|
+
const { clearCache: clear } = await import("./dist-T737I76S.js");
|
|
2280
2282
|
clear();
|
|
2281
2283
|
appLogger.info("cache.clear");
|
|
2282
2284
|
console.log("Cache cleared.");
|