@samuelfaj/distill 1.4.4 → 1.4.5
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/README.md +3 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -20,6 +20,7 @@ After onboarding, use `/distill` in Claude/Codex to make the agent keep talking
|
|
|
20
20
|
distill dsl show
|
|
21
21
|
distill dsl show --candidates
|
|
22
22
|
distill dsl learn --dry-run "Dict+: A1=authentication fix"
|
|
23
|
+
distill dsl learn-thread --stdin --dry-run < transcript.txt
|
|
23
24
|
distill dsl promote --dry-run
|
|
24
25
|
distill dsl add alias A1 "authentication bug fix" --scope project
|
|
25
26
|
distill dsl prune --dry-run
|
|
@@ -27,6 +28,8 @@ distill dsl prune --dry-run
|
|
|
27
28
|
|
|
28
29
|
Normal runs load compact active DSL memory into the prompt. Reusable `Dict+` entries from `/distill` output are learned as project candidates using the shortest available key and can later be promoted with `distill dsl promote`.
|
|
29
30
|
|
|
31
|
+
At thread end, pipe a transcript into `distill dsl learn-thread --stdin`. It learns repeated workflow language as candidates after reviewer approval and sensitive-term filtering.
|
|
32
|
+
|
|
30
33
|
You can also pipe command output into `distill`:
|
|
31
34
|
|
|
32
35
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@samuelfaj/distill",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.5",
|
|
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.5",
|
|
20
|
+
"@samuelfaj/distill-darwin-x64": "1.4.5",
|
|
21
|
+
"@samuelfaj/distill-linux-arm64": "1.4.5",
|
|
22
|
+
"@samuelfaj/distill-linux-x64": "1.4.5",
|
|
23
|
+
"@samuelfaj/distill-win32-x64": "1.4.5"
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|