codesesh 0.12.0 → 0.14.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 +9 -1
- package/dist/{chunk-GCOAE7KI.js → chunk-VRVZJDNL.js} +1260 -1368
- package/dist/chunk-VRVZJDNL.js.map +1 -0
- package/dist/{dist-TZTL6VP4.js → dist-C3KC3XKJ.js} +25 -10
- package/dist/index.js +1772 -1241
- 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-BNLxu3RT.js +113 -0
- package/dist/web/assets/index-BYElqfX-.css +2 -0
- package/dist/web/assets/markdown-dR4kAewZ.js +14 -0
- package/dist/web/assets/react-3acXkZNw.js +1821 -0
- package/dist/web/assets/syntax-C_RLNYQn.js +6 -0
- package/dist/web/assets/vendor-Lx2mL9a6.js +40 -0
- package/dist/web/index.html +6 -6
- package/package.json +9 -8
- package/dist/chunk-GCOAE7KI.js.map +0 -1
- package/dist/web/assets/index-D05hsCzb.css +0 -2
- package/dist/web/assets/index-DOy8q3la.js +0 -113
- package/dist/web/assets/markdown-CGVJZBE7.js +0 -14
- package/dist/web/assets/react-DkEeEGji.js +0 -1821
- package/dist/web/assets/syntax-CFQ-7fm6.js +0 -6
- package/dist/web/assets/vendor-B2nLfkMs.js +0 -80
- /package/dist/{dist-TZTL6VP4.js.map → dist-C3KC3XKJ.js.map} +0 -0
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
BaseAgent,
|
|
4
|
-
BookmarkStorageUnavailableError,
|
|
5
4
|
DASHBOARD_RECENT_LIMIT,
|
|
6
5
|
DatabaseSessionSource,
|
|
7
6
|
FileSystemSessionSource,
|
|
7
|
+
SESSION_ALIAS_MAX_LENGTH,
|
|
8
|
+
StateStorageUnavailableError,
|
|
8
9
|
applyMessageCost,
|
|
9
10
|
applyMessageCosts,
|
|
10
11
|
attachMissingProjectIdentities,
|
|
@@ -25,15 +26,16 @@ import {
|
|
|
25
26
|
createProjectScopeMatcher,
|
|
26
27
|
createRegisteredAgents,
|
|
27
28
|
deleteBookmark,
|
|
29
|
+
deleteSessionAlias,
|
|
28
30
|
ensureSessionTagsSync,
|
|
29
31
|
estimateCostForTokens,
|
|
30
32
|
estimateTokenCost,
|
|
33
|
+
executeSessionSearch,
|
|
31
34
|
extractFileActivityOccurrences,
|
|
32
35
|
extractSessionFileActivity,
|
|
33
36
|
fallbackDisplayName,
|
|
34
37
|
filterSessions,
|
|
35
38
|
filterSessionsByProjectScope,
|
|
36
|
-
filtered,
|
|
37
39
|
filteredSession,
|
|
38
40
|
firstExisting,
|
|
39
41
|
firstUserMessageTitle,
|
|
@@ -46,6 +48,7 @@ import {
|
|
|
46
48
|
getCursorDataPath,
|
|
47
49
|
getParsedSession,
|
|
48
50
|
getPricingRegistry,
|
|
51
|
+
getProjectIdentityKey,
|
|
49
52
|
getRegisteredAgents,
|
|
50
53
|
getSessionActivityTime,
|
|
51
54
|
getSessionAgentName,
|
|
@@ -54,24 +57,28 @@ import {
|
|
|
54
57
|
hasBillablePricing,
|
|
55
58
|
importBookmarks,
|
|
56
59
|
isAgentCacheInitialized,
|
|
60
|
+
isProjectIdentityKind,
|
|
57
61
|
isSqliteAvailable,
|
|
58
62
|
listBookmarks,
|
|
59
63
|
listCachedProjectGroups,
|
|
60
64
|
listFileActivity,
|
|
65
|
+
listSessionAliases,
|
|
61
66
|
listSessionFileActivity,
|
|
62
67
|
loadCachedSessionData,
|
|
63
68
|
loadCachedSessions,
|
|
64
69
|
markAgentCacheInitialized,
|
|
65
70
|
markAgentFullSyncCompleted,
|
|
71
|
+
matchesProjectIdentity,
|
|
66
72
|
matchesProjectScope,
|
|
67
73
|
matchesScanWindow,
|
|
74
|
+
mergeSearchQueryOptions,
|
|
68
75
|
normalizeGitRemote,
|
|
76
|
+
normalizeSessionAlias,
|
|
69
77
|
normalizeTitleText,
|
|
70
78
|
openDb,
|
|
71
79
|
openDbReadOnly,
|
|
72
80
|
parseJsonlLines,
|
|
73
81
|
parseSearchQuery,
|
|
74
|
-
parsed,
|
|
75
82
|
parsedSession,
|
|
76
83
|
perf,
|
|
77
84
|
pricingResolver,
|
|
@@ -89,7 +96,6 @@ import {
|
|
|
89
96
|
searchSessions,
|
|
90
97
|
sessionSignature,
|
|
91
98
|
setFtsIntegrityCheckedPath,
|
|
92
|
-
skipped,
|
|
93
99
|
skippedSession,
|
|
94
100
|
sortSessions,
|
|
95
101
|
startOfLocalDay,
|
|
@@ -98,14 +104,17 @@ import {
|
|
|
98
104
|
syncSessionSearchIndexChanges,
|
|
99
105
|
toLocalDateKey,
|
|
100
106
|
upsertBookmark,
|
|
107
|
+
upsertSessionAlias,
|
|
101
108
|
withEstimatedSessionCost
|
|
102
|
-
} from "./chunk-
|
|
109
|
+
} from "./chunk-VRVZJDNL.js";
|
|
103
110
|
export {
|
|
104
111
|
BaseAgent,
|
|
105
|
-
BookmarkStorageUnavailableError,
|
|
112
|
+
StateStorageUnavailableError as BookmarkStorageUnavailableError,
|
|
106
113
|
DASHBOARD_RECENT_LIMIT,
|
|
107
114
|
DatabaseSessionSource,
|
|
108
115
|
FileSystemSessionSource,
|
|
116
|
+
SESSION_ALIAS_MAX_LENGTH,
|
|
117
|
+
StateStorageUnavailableError,
|
|
109
118
|
applyMessageCost,
|
|
110
119
|
applyMessageCosts,
|
|
111
120
|
attachMissingProjectIdentities,
|
|
@@ -126,15 +135,16 @@ export {
|
|
|
126
135
|
createProjectScopeMatcher,
|
|
127
136
|
createRegisteredAgents,
|
|
128
137
|
deleteBookmark,
|
|
138
|
+
deleteSessionAlias,
|
|
129
139
|
ensureSessionTagsSync,
|
|
130
140
|
estimateCostForTokens,
|
|
131
141
|
estimateTokenCost,
|
|
142
|
+
executeSessionSearch,
|
|
132
143
|
extractFileActivityOccurrences,
|
|
133
144
|
extractSessionFileActivity,
|
|
134
145
|
fallbackDisplayName,
|
|
135
146
|
filterSessions,
|
|
136
147
|
filterSessionsByProjectScope,
|
|
137
|
-
filtered,
|
|
138
148
|
filteredSession,
|
|
139
149
|
firstExisting,
|
|
140
150
|
firstUserMessageTitle,
|
|
@@ -147,6 +157,7 @@ export {
|
|
|
147
157
|
getCursorDataPath,
|
|
148
158
|
getParsedSession,
|
|
149
159
|
getPricingRegistry,
|
|
160
|
+
getProjectIdentityKey,
|
|
150
161
|
getRegisteredAgents,
|
|
151
162
|
getSessionActivityTime,
|
|
152
163
|
getSessionAgentName,
|
|
@@ -155,24 +166,28 @@ export {
|
|
|
155
166
|
hasBillablePricing,
|
|
156
167
|
importBookmarks,
|
|
157
168
|
isAgentCacheInitialized,
|
|
169
|
+
isProjectIdentityKind,
|
|
158
170
|
isSqliteAvailable,
|
|
159
171
|
listBookmarks,
|
|
160
172
|
listCachedProjectGroups,
|
|
161
173
|
listFileActivity,
|
|
174
|
+
listSessionAliases,
|
|
162
175
|
listSessionFileActivity,
|
|
163
176
|
loadCachedSessionData,
|
|
164
177
|
loadCachedSessions,
|
|
165
178
|
markAgentCacheInitialized,
|
|
166
179
|
markAgentFullSyncCompleted,
|
|
180
|
+
matchesProjectIdentity,
|
|
167
181
|
matchesProjectScope,
|
|
168
182
|
matchesScanWindow,
|
|
183
|
+
mergeSearchQueryOptions,
|
|
169
184
|
normalizeGitRemote,
|
|
185
|
+
normalizeSessionAlias,
|
|
170
186
|
normalizeTitleText,
|
|
171
187
|
openDb,
|
|
172
188
|
openDbReadOnly,
|
|
173
189
|
parseJsonlLines,
|
|
174
190
|
parseSearchQuery,
|
|
175
|
-
parsed,
|
|
176
191
|
parsedSession,
|
|
177
192
|
perf,
|
|
178
193
|
pricingResolver,
|
|
@@ -190,7 +205,6 @@ export {
|
|
|
190
205
|
searchSessions,
|
|
191
206
|
sessionSignature,
|
|
192
207
|
setFtsIntegrityCheckedPath,
|
|
193
|
-
skipped,
|
|
194
208
|
skippedSession,
|
|
195
209
|
sortSessions,
|
|
196
210
|
startOfLocalDay,
|
|
@@ -199,6 +213,7 @@ export {
|
|
|
199
213
|
syncSessionSearchIndexChanges,
|
|
200
214
|
toLocalDateKey,
|
|
201
215
|
upsertBookmark,
|
|
216
|
+
upsertSessionAlias,
|
|
202
217
|
withEstimatedSessionCost
|
|
203
218
|
};
|
|
204
|
-
//# sourceMappingURL=dist-
|
|
219
|
+
//# sourceMappingURL=dist-C3KC3XKJ.js.map
|