codesesh 0.6.0 → 0.7.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 -5
- package/dist/{chunk-SQYHWMQV.js → chunk-JTHZVP6G.js} +1561 -601
- package/dist/chunk-JTHZVP6G.js.map +1 -0
- package/dist/{dist-NT4CH6KD.js → dist-FQAQSHHO.js} +18 -2
- package/dist/index.js +882 -219
- package/dist/index.js.map +1 -1
- package/dist/scan-refresh-worker.js +50 -0
- package/dist/scan-refresh-worker.js.map +1 -0
- package/dist/search-index-worker.js +46 -16
- package/dist/search-index-worker.js.map +1 -1
- package/dist/smart-tag-worker.js +33 -0
- package/dist/smart-tag-worker.js.map +1 -0
- package/dist/web/assets/index-Dy__ZJD8.js +108 -0
- package/dist/web/assets/index-xfiMbcgm.css +2 -0
- package/dist/web/index.html +189 -3
- package/package.json +1 -1
- package/dist/chunk-SQYHWMQV.js.map +0 -1
- package/dist/web/assets/index-BlSglSCE.css +0 -2
- package/dist/web/assets/index-CnxgGfhM.js +0 -106
- /package/dist/{dist-NT4CH6KD.js.map → dist-FQAQSHHO.js.map} +0 -0
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
cleanParsedMessages,
|
|
16
16
|
clearCache,
|
|
17
17
|
computeIdentity,
|
|
18
|
+
createProjectScopeMatcher,
|
|
18
19
|
createRegisteredAgents,
|
|
19
20
|
deleteBookmark,
|
|
20
21
|
estimateCostForTokens,
|
|
@@ -23,6 +24,7 @@ import {
|
|
|
23
24
|
extractSessionFileActivity,
|
|
24
25
|
fallbackDisplayName,
|
|
25
26
|
filterSessions,
|
|
27
|
+
filterSessionsByProjectScope,
|
|
26
28
|
filtered,
|
|
27
29
|
filteredSession,
|
|
28
30
|
firstExisting,
|
|
@@ -38,12 +40,16 @@ import {
|
|
|
38
40
|
getSmartTagSourceTimestamp,
|
|
39
41
|
hasBillablePricing,
|
|
40
42
|
importBookmarks,
|
|
43
|
+
isAgentCacheInitialized,
|
|
41
44
|
isSqliteAvailable,
|
|
42
45
|
listBookmarks,
|
|
43
46
|
listCachedProjectGroups,
|
|
44
47
|
listFileActivity,
|
|
45
48
|
listSessionFileActivity,
|
|
49
|
+
loadCachedSessionData,
|
|
46
50
|
loadCachedSessions,
|
|
51
|
+
markAgentCacheInitialized,
|
|
52
|
+
matchesProjectScope,
|
|
47
53
|
normalizeGitRemote,
|
|
48
54
|
normalizeTitleText,
|
|
49
55
|
openDb,
|
|
@@ -60,6 +66,7 @@ import {
|
|
|
60
66
|
registerAgent,
|
|
61
67
|
resolveProviderRoots,
|
|
62
68
|
resolveSessionTitle,
|
|
69
|
+
saveCachedSessionChanges,
|
|
63
70
|
saveCachedSessions,
|
|
64
71
|
scanSessions,
|
|
65
72
|
scanSessionsAsync,
|
|
@@ -69,9 +76,10 @@ import {
|
|
|
69
76
|
skippedSession,
|
|
70
77
|
summarizeFileActivity,
|
|
71
78
|
syncSessionSearchIndex,
|
|
79
|
+
syncSessionSearchIndexChanges,
|
|
72
80
|
upsertBookmark,
|
|
73
81
|
withEstimatedSessionCost
|
|
74
|
-
} from "./chunk-
|
|
82
|
+
} from "./chunk-JTHZVP6G.js";
|
|
75
83
|
export {
|
|
76
84
|
BaseAgent,
|
|
77
85
|
BookmarkStorageUnavailableError,
|
|
@@ -88,6 +96,7 @@ export {
|
|
|
88
96
|
cleanParsedMessages,
|
|
89
97
|
clearCache,
|
|
90
98
|
computeIdentity,
|
|
99
|
+
createProjectScopeMatcher,
|
|
91
100
|
createRegisteredAgents,
|
|
92
101
|
deleteBookmark,
|
|
93
102
|
estimateCostForTokens,
|
|
@@ -96,6 +105,7 @@ export {
|
|
|
96
105
|
extractSessionFileActivity,
|
|
97
106
|
fallbackDisplayName,
|
|
98
107
|
filterSessions,
|
|
108
|
+
filterSessionsByProjectScope,
|
|
99
109
|
filtered,
|
|
100
110
|
filteredSession,
|
|
101
111
|
firstExisting,
|
|
@@ -111,12 +121,16 @@ export {
|
|
|
111
121
|
getSmartTagSourceTimestamp,
|
|
112
122
|
hasBillablePricing,
|
|
113
123
|
importBookmarks,
|
|
124
|
+
isAgentCacheInitialized,
|
|
114
125
|
isSqliteAvailable,
|
|
115
126
|
listBookmarks,
|
|
116
127
|
listCachedProjectGroups,
|
|
117
128
|
listFileActivity,
|
|
118
129
|
listSessionFileActivity,
|
|
130
|
+
loadCachedSessionData,
|
|
119
131
|
loadCachedSessions,
|
|
132
|
+
markAgentCacheInitialized,
|
|
133
|
+
matchesProjectScope,
|
|
120
134
|
normalizeGitRemote,
|
|
121
135
|
normalizeTitleText,
|
|
122
136
|
openDb,
|
|
@@ -133,6 +147,7 @@ export {
|
|
|
133
147
|
registerAgent,
|
|
134
148
|
resolveProviderRoots,
|
|
135
149
|
resolveSessionTitle,
|
|
150
|
+
saveCachedSessionChanges,
|
|
136
151
|
saveCachedSessions,
|
|
137
152
|
scanSessions,
|
|
138
153
|
scanSessionsAsync,
|
|
@@ -142,7 +157,8 @@ export {
|
|
|
142
157
|
skippedSession,
|
|
143
158
|
summarizeFileActivity,
|
|
144
159
|
syncSessionSearchIndex,
|
|
160
|
+
syncSessionSearchIndexChanges,
|
|
145
161
|
upsertBookmark,
|
|
146
162
|
withEstimatedSessionCost
|
|
147
163
|
};
|
|
148
|
-
//# sourceMappingURL=dist-
|
|
164
|
+
//# sourceMappingURL=dist-FQAQSHHO.js.map
|