codesesh 0.5.0 → 0.6.1
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 +6 -3
- package/dist/{chunk-FZNZAMTZ.js → chunk-SQYHWMQV.js} +2533 -458
- package/dist/chunk-SQYHWMQV.js.map +1 -0
- package/dist/{dist-DMEDEJ2D.js → dist-NT4CH6KD.js} +46 -2
- package/dist/index.js +680 -83
- package/dist/index.js.map +1 -1
- package/dist/search-index-worker.js +40 -0
- package/dist/search-index-worker.js.map +1 -0
- package/dist/web/assets/index-D9lwrpQG.css +2 -0
- package/dist/web/assets/index-DZaQy6OQ.js +106 -0
- package/dist/web/assets/vendor-Bs5B_LvM.js +43 -0
- package/dist/web/index.html +3 -3
- package/package.json +2 -3
- package/dist/chunk-FZNZAMTZ.js.map +0 -1
- package/dist/web/assets/index-BRW_TBMw.js +0 -106
- package/dist/web/assets/index-CCgk7cPa.css +0 -2
- package/dist/web/assets/vendor-CWmLg_mG.js +0 -43
- /package/dist/{dist-DMEDEJ2D.js.map → dist-NT4CH6KD.js.map} +0 -0
|
@@ -7,19 +7,32 @@ import {
|
|
|
7
7
|
basenameTitle,
|
|
8
8
|
buildProjectGroups,
|
|
9
9
|
classifySessionTags,
|
|
10
|
+
cleanDisplayText,
|
|
11
|
+
cleanInternalText,
|
|
12
|
+
cleanMessagePart,
|
|
13
|
+
cleanMessageParts,
|
|
14
|
+
cleanParsedMessage,
|
|
15
|
+
cleanParsedMessages,
|
|
10
16
|
clearCache,
|
|
11
17
|
computeIdentity,
|
|
12
18
|
createRegisteredAgents,
|
|
13
19
|
deleteBookmark,
|
|
14
20
|
estimateCostForTokens,
|
|
15
21
|
estimateTokenCost,
|
|
22
|
+
extractFileActivityOccurrences,
|
|
23
|
+
extractSessionFileActivity,
|
|
16
24
|
fallbackDisplayName,
|
|
17
25
|
filterSessions,
|
|
26
|
+
filtered,
|
|
27
|
+
filteredSession,
|
|
18
28
|
firstExisting,
|
|
29
|
+
firstUserMessageTitle,
|
|
30
|
+
firstVisibleLine,
|
|
19
31
|
getAgentByName,
|
|
20
32
|
getAgentInfoMap,
|
|
21
33
|
getCacheInfo,
|
|
22
34
|
getCursorDataPath,
|
|
35
|
+
getParsedSession,
|
|
23
36
|
getPricingRegistry,
|
|
24
37
|
getRegisteredAgents,
|
|
25
38
|
getSmartTagSourceTimestamp,
|
|
@@ -28,12 +41,17 @@ import {
|
|
|
28
41
|
isSqliteAvailable,
|
|
29
42
|
listBookmarks,
|
|
30
43
|
listCachedProjectGroups,
|
|
44
|
+
listFileActivity,
|
|
45
|
+
listSessionFileActivity,
|
|
31
46
|
loadCachedSessions,
|
|
32
47
|
normalizeGitRemote,
|
|
33
48
|
normalizeTitleText,
|
|
34
49
|
openDb,
|
|
35
50
|
openDbReadOnly,
|
|
36
51
|
parseJsonlLines,
|
|
52
|
+
parseSearchQuery,
|
|
53
|
+
parsed,
|
|
54
|
+
parsedSession,
|
|
37
55
|
perf,
|
|
38
56
|
pricingResolver,
|
|
39
57
|
readJsonlFile,
|
|
@@ -45,11 +63,15 @@ import {
|
|
|
45
63
|
saveCachedSessions,
|
|
46
64
|
scanSessions,
|
|
47
65
|
scanSessionsAsync,
|
|
66
|
+
searchFileActivitySessions,
|
|
48
67
|
searchSessions,
|
|
68
|
+
skipped,
|
|
69
|
+
skippedSession,
|
|
70
|
+
summarizeFileActivity,
|
|
49
71
|
syncSessionSearchIndex,
|
|
50
72
|
upsertBookmark,
|
|
51
73
|
withEstimatedSessionCost
|
|
52
|
-
} from "./chunk-
|
|
74
|
+
} from "./chunk-SQYHWMQV.js";
|
|
53
75
|
export {
|
|
54
76
|
BaseAgent,
|
|
55
77
|
BookmarkStorageUnavailableError,
|
|
@@ -58,19 +80,32 @@ export {
|
|
|
58
80
|
basenameTitle,
|
|
59
81
|
buildProjectGroups,
|
|
60
82
|
classifySessionTags,
|
|
83
|
+
cleanDisplayText,
|
|
84
|
+
cleanInternalText,
|
|
85
|
+
cleanMessagePart,
|
|
86
|
+
cleanMessageParts,
|
|
87
|
+
cleanParsedMessage,
|
|
88
|
+
cleanParsedMessages,
|
|
61
89
|
clearCache,
|
|
62
90
|
computeIdentity,
|
|
63
91
|
createRegisteredAgents,
|
|
64
92
|
deleteBookmark,
|
|
65
93
|
estimateCostForTokens,
|
|
66
94
|
estimateTokenCost,
|
|
95
|
+
extractFileActivityOccurrences,
|
|
96
|
+
extractSessionFileActivity,
|
|
67
97
|
fallbackDisplayName,
|
|
68
98
|
filterSessions,
|
|
99
|
+
filtered,
|
|
100
|
+
filteredSession,
|
|
69
101
|
firstExisting,
|
|
102
|
+
firstUserMessageTitle,
|
|
103
|
+
firstVisibleLine,
|
|
70
104
|
getAgentByName,
|
|
71
105
|
getAgentInfoMap,
|
|
72
106
|
getCacheInfo,
|
|
73
107
|
getCursorDataPath,
|
|
108
|
+
getParsedSession,
|
|
74
109
|
getPricingRegistry,
|
|
75
110
|
getRegisteredAgents,
|
|
76
111
|
getSmartTagSourceTimestamp,
|
|
@@ -79,12 +114,17 @@ export {
|
|
|
79
114
|
isSqliteAvailable,
|
|
80
115
|
listBookmarks,
|
|
81
116
|
listCachedProjectGroups,
|
|
117
|
+
listFileActivity,
|
|
118
|
+
listSessionFileActivity,
|
|
82
119
|
loadCachedSessions,
|
|
83
120
|
normalizeGitRemote,
|
|
84
121
|
normalizeTitleText,
|
|
85
122
|
openDb,
|
|
86
123
|
openDbReadOnly,
|
|
87
124
|
parseJsonlLines,
|
|
125
|
+
parseSearchQuery,
|
|
126
|
+
parsed,
|
|
127
|
+
parsedSession,
|
|
88
128
|
perf,
|
|
89
129
|
pricingResolver,
|
|
90
130
|
readJsonlFile,
|
|
@@ -96,9 +136,13 @@ export {
|
|
|
96
136
|
saveCachedSessions,
|
|
97
137
|
scanSessions,
|
|
98
138
|
scanSessionsAsync,
|
|
139
|
+
searchFileActivitySessions,
|
|
99
140
|
searchSessions,
|
|
141
|
+
skipped,
|
|
142
|
+
skippedSession,
|
|
143
|
+
summarizeFileActivity,
|
|
100
144
|
syncSessionSearchIndex,
|
|
101
145
|
upsertBookmark,
|
|
102
146
|
withEstimatedSessionCost
|
|
103
147
|
};
|
|
104
|
-
//# sourceMappingURL=dist-
|
|
148
|
+
//# sourceMappingURL=dist-NT4CH6KD.js.map
|