@lamemind/loom-deck 0.35.0 → 0.35.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/dist/sessions.js +7 -1
- package/package.json +1 -1
package/dist/sessions.js
CHANGED
|
@@ -263,7 +263,13 @@ export function parseTranscript(content, path, mtime, sizeBytes) {
|
|
|
263
263
|
// testo, sanificare a valle sposterebbe l'a-capo già calcolato.
|
|
264
264
|
firstPrompt: sanitize(firstUserText),
|
|
265
265
|
lastReply: sanitize(lastAssistantText),
|
|
266
|
-
|
|
266
|
+
// Sanificato come il titolo e le due preview, e per lo stesso motivo: è una
|
|
267
|
+
// stringa di sorgente esterna che finisce NEL FRAME (riga meta del blocco
|
|
268
|
+
// preview). Il confine di sanificazione è per SORGENTE, non per campo — un
|
|
269
|
+
// valore che lo attraversa nudo perché «oggi è ASCII» riapre l'invariante ①
|
|
270
|
+
// il giorno che lo store scrive qualcos'altro. Non tocca `modelShort`: il
|
|
271
|
+
// match è sui token di famiglia, tutti ASCII.
|
|
272
|
+
model: sanitize(model),
|
|
267
273
|
bodies,
|
|
268
274
|
};
|
|
269
275
|
}
|
package/package.json
CHANGED