@luckydraw/cumulus 1.0.22 → 1.0.24

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/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## v1.0.24
4
+
5
+ Patch release. The `/select` panel is now a compact overlay, matching `/revert`.
6
+
7
+ - **`/select` used to bolt checkboxes onto the full live message bubbles** in the actual conversation view — scrolling through complete rendered content (including blex blocks and code) just to pick messages to delete.
8
+ - **It now opens a dedicated overlay**, styled like the existing `/revert` list: one compact row per message (role badge, one-line preview, timestamp, checkbox), with the same header/close chrome and a footer bar for selection count / Select All / Delete. The live thread underneath stays undisturbed while selecting.
9
+ - Implemented once and shared between the standalone `/chat` panel and the embedded widget, since both already shared the row-rendering and delete-confirm code.
10
+
11
+ ## v1.0.23
12
+
13
+ Patch release. Search result snippets now show why a match was found, and the model is told to search before claiming something isn't on record.
14
+
15
+ - **`search_history` snippets always showed the first 200 characters**, regardless of where the query actually matched. A relevant hit whose matching text sat past character 200 produced a snippet that looked entirely unrelated to the query — a real retrieval investigation on the pursuit thread traced a "nothing on record" denial back to exactly this: the right message was returned, but its snippet gave no visual signal that it was a match.
16
+ - **Snippets now center on the earliest matching query term** and **bold** it, so a skimming reader (model or human) can see at a glance why the result came back. `search_content` already had this from task 082 — this closes the gap in the sibling tool.
17
+ - **One line added to the system prompt:** before telling the user something is not on record, not mentioned, or doesn't exist, the model is now told to call `search_history` or `search_content` with the specific terms first. RETRIEVED CONTEXT is a best-effort automatic pass keyed on the current message — its being empty is a reason to search, not evidence of absence. Same caveat as prior prompt nudges (tasks 124, 156): this changes what the model is told, not what it's forced to do.
18
+
3
19
  ## v1.0.22
4
20
 
5
21
  Patch release. Long agentic turns now re-aim their memory at what the model is doing _now_, and the 30-turn ceiling is gone.