codesesh 0.4.0 → 0.5.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 +5 -3
- package/dist/{chunk-EIIG7J6V.js → chunk-FZNZAMTZ.js} +1329 -174
- package/dist/chunk-FZNZAMTZ.js.map +1 -0
- package/dist/{dist-2YXXOCZJ.js → dist-DMEDEJ2D.js} +40 -4
- package/dist/index.js +412 -64
- package/dist/index.js.map +1 -1
- package/dist/web/assets/index-BRW_TBMw.js +106 -0
- package/dist/web/assets/index-CCgk7cPa.css +2 -0
- package/dist/web/assets/markdown-CnUlvKkZ.js +14 -0
- package/dist/web/assets/react-DT3QPCDf.js +1821 -0
- package/dist/web/assets/rolldown-runtime-Dw2cE7zH.js +1 -0
- package/dist/web/assets/syntax-DcanuzfQ.js +6 -0
- package/dist/web/assets/vendor-CWmLg_mG.js +43 -0
- package/dist/web/index.html +7 -2
- package/package.json +3 -3
- package/dist/chunk-EIIG7J6V.js.map +0 -1
- package/dist/web/assets/index-DJuE5oTj.js +0 -68
- package/dist/web/assets/index-gSYgPU_H.css +0 -2
- /package/dist/{dist-2YXXOCZJ.js.map → dist-DMEDEJ2D.js.map} +0 -0
|
@@ -1,27 +1,44 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
BaseAgent,
|
|
4
|
+
BookmarkStorageUnavailableError,
|
|
5
|
+
applyMessageCost,
|
|
6
|
+
applyMessageCosts,
|
|
4
7
|
basenameTitle,
|
|
8
|
+
buildProjectGroups,
|
|
9
|
+
classifySessionTags,
|
|
5
10
|
clearCache,
|
|
11
|
+
computeIdentity,
|
|
6
12
|
createRegisteredAgents,
|
|
7
13
|
deleteBookmark,
|
|
14
|
+
estimateCostForTokens,
|
|
15
|
+
estimateTokenCost,
|
|
16
|
+
fallbackDisplayName,
|
|
8
17
|
filterSessions,
|
|
9
18
|
firstExisting,
|
|
10
19
|
getAgentByName,
|
|
11
20
|
getAgentInfoMap,
|
|
12
21
|
getCacheInfo,
|
|
13
22
|
getCursorDataPath,
|
|
23
|
+
getPricingRegistry,
|
|
14
24
|
getRegisteredAgents,
|
|
25
|
+
getSmartTagSourceTimestamp,
|
|
26
|
+
hasBillablePricing,
|
|
15
27
|
importBookmarks,
|
|
16
28
|
isSqliteAvailable,
|
|
17
29
|
listBookmarks,
|
|
30
|
+
listCachedProjectGroups,
|
|
18
31
|
loadCachedSessions,
|
|
32
|
+
normalizeGitRemote,
|
|
19
33
|
normalizeTitleText,
|
|
20
34
|
openDb,
|
|
21
35
|
openDbReadOnly,
|
|
22
36
|
parseJsonlLines,
|
|
23
37
|
perf,
|
|
38
|
+
pricingResolver,
|
|
24
39
|
readJsonlFile,
|
|
40
|
+
realFs,
|
|
41
|
+
refreshPricingCache,
|
|
25
42
|
registerAgent,
|
|
26
43
|
resolveProviderRoots,
|
|
27
44
|
resolveSessionTitle,
|
|
@@ -30,31 +47,49 @@ import {
|
|
|
30
47
|
scanSessionsAsync,
|
|
31
48
|
searchSessions,
|
|
32
49
|
syncSessionSearchIndex,
|
|
33
|
-
upsertBookmark
|
|
34
|
-
|
|
50
|
+
upsertBookmark,
|
|
51
|
+
withEstimatedSessionCost
|
|
52
|
+
} from "./chunk-FZNZAMTZ.js";
|
|
35
53
|
export {
|
|
36
54
|
BaseAgent,
|
|
55
|
+
BookmarkStorageUnavailableError,
|
|
56
|
+
applyMessageCost,
|
|
57
|
+
applyMessageCosts,
|
|
37
58
|
basenameTitle,
|
|
59
|
+
buildProjectGroups,
|
|
60
|
+
classifySessionTags,
|
|
38
61
|
clearCache,
|
|
62
|
+
computeIdentity,
|
|
39
63
|
createRegisteredAgents,
|
|
40
64
|
deleteBookmark,
|
|
65
|
+
estimateCostForTokens,
|
|
66
|
+
estimateTokenCost,
|
|
67
|
+
fallbackDisplayName,
|
|
41
68
|
filterSessions,
|
|
42
69
|
firstExisting,
|
|
43
70
|
getAgentByName,
|
|
44
71
|
getAgentInfoMap,
|
|
45
72
|
getCacheInfo,
|
|
46
73
|
getCursorDataPath,
|
|
74
|
+
getPricingRegistry,
|
|
47
75
|
getRegisteredAgents,
|
|
76
|
+
getSmartTagSourceTimestamp,
|
|
77
|
+
hasBillablePricing,
|
|
48
78
|
importBookmarks,
|
|
49
79
|
isSqliteAvailable,
|
|
50
80
|
listBookmarks,
|
|
81
|
+
listCachedProjectGroups,
|
|
51
82
|
loadCachedSessions,
|
|
83
|
+
normalizeGitRemote,
|
|
52
84
|
normalizeTitleText,
|
|
53
85
|
openDb,
|
|
54
86
|
openDbReadOnly,
|
|
55
87
|
parseJsonlLines,
|
|
56
88
|
perf,
|
|
89
|
+
pricingResolver,
|
|
57
90
|
readJsonlFile,
|
|
91
|
+
realFs,
|
|
92
|
+
refreshPricingCache,
|
|
58
93
|
registerAgent,
|
|
59
94
|
resolveProviderRoots,
|
|
60
95
|
resolveSessionTitle,
|
|
@@ -63,6 +98,7 @@ export {
|
|
|
63
98
|
scanSessionsAsync,
|
|
64
99
|
searchSessions,
|
|
65
100
|
syncSessionSearchIndex,
|
|
66
|
-
upsertBookmark
|
|
101
|
+
upsertBookmark,
|
|
102
|
+
withEstimatedSessionCost
|
|
67
103
|
};
|
|
68
|
-
//# sourceMappingURL=dist-
|
|
104
|
+
//# sourceMappingURL=dist-DMEDEJ2D.js.map
|