@samuelfaj/distill 1.4.8 → 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 +6 -6
- package/skills/distill/SKILL.md +9 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@samuelfaj/distill",
|
|
3
|
-
"version": "1.
|
|
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.
|
|
20
|
-
"@samuelfaj/distill-darwin-x64": "1.
|
|
21
|
-
"@samuelfaj/distill-linux-arm64": "1.
|
|
22
|
-
"@samuelfaj/distill-linux-x64": "1.
|
|
23
|
-
"@samuelfaj/distill-win32-x64": "1.
|
|
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"
|
package/skills/distill/SKILL.md
CHANGED
|
@@ -169,8 +169,16 @@ 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
|
-
|
|
172
|
+
Before every visible response, scan the visible transcript plus the draft response for repeated stable terms that would compress well.
|
|
173
|
+
Define short thread variables inline when a stable noun/phrase appears 2+ times or is likely to repeat across status lines.
|
|
174
|
+
Prefer variables for repeated project nouns, package nouns, component names, workflow names, and repeated technical objects.
|
|
173
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.
|
|
177
|
+
At each new response, update `Dict:` only with newly introduced variables.
|
|
178
|
+
Do not repeat variables already defined earlier in the thread or already present in known DSL memory.
|
|
179
|
+
If the response introduces no new variable, omit `Dict:` instead of restating old definitions.
|
|
180
|
+
After defining any `Dict` alias or inline variable, run a substitution pass: every later safe occurrence of that meaning must use the alias/key.
|
|
181
|
+
Keep the full term only when exact spelling is required for a model ID, package name, path, URL, quoted text, or disambiguation.
|
|
174
182
|
|
|
175
183
|
```text
|
|
176
184
|
S cache=#c1 warmed model=#m1
|