@samuelfaj/distill 1.4.9 → 1.5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@samuelfaj/distill",
3
- "version": "1.4.9",
3
+ "version": "1.5.1",
4
4
  "description": "Compress command output for downstream LLMs.",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -16,11 +16,11 @@
16
16
  "node": ">=18"
17
17
  },
18
18
  "optionalDependencies": {
19
- "@samuelfaj/distill-darwin-arm64": "1.4.9",
20
- "@samuelfaj/distill-darwin-x64": "1.4.9",
21
- "@samuelfaj/distill-linux-arm64": "1.4.9",
22
- "@samuelfaj/distill-linux-x64": "1.4.9",
23
- "@samuelfaj/distill-win32-x64": "1.4.9"
19
+ "@samuelfaj/distill-darwin-arm64": "1.5.0",
20
+ "@samuelfaj/distill-darwin-x64": "1.5.0",
21
+ "@samuelfaj/distill-linux-arm64": "1.5.0",
22
+ "@samuelfaj/distill-linux-x64": "1.5.0",
23
+ "@samuelfaj/distill-win32-x64": "1.5.0"
24
24
  },
25
25
  "publishConfig": {
26
26
  "access": "public"
@@ -169,9 +169,11 @@ R missing token => merge blocked
169
169
 
170
170
  Every thread must use DSL/Dict when it helps compression.
171
171
  Start with `Dict:` when meanings are not already shared.
172
+ Before every visible response, scan the visible transcript plus the draft response for repeated stable terms that would compress well.
172
173
  Define short thread variables inline when a stable noun/phrase appears 2+ times or is likely to repeat across status lines.
173
174
  Prefer variables for repeated project nouns, package nouns, component names, workflow names, and repeated technical objects.
174
175
  The model chooses the variables dynamically from the current task; there is no fixed variable list.
176
+ Visible transcript is the canonical Dict state; do not rely on hidden reasoning as storage.
175
177
  At each new response, update `Dict:` only with newly introduced variables.
176
178
  Do not repeat variables already defined earlier in the thread or already present in known DSL memory.
177
179
  If the response introduces no new variable, omit `Dict:` instead of restating old definitions.