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