@samuelfaj/distill 1.4.5 → 1.4.6
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 +9 -0
- package/package.json +6 -6
- package/skills/distill/SKILL.md +102 -35
package/README.md
CHANGED
|
@@ -14,6 +14,15 @@ distill
|
|
|
14
14
|
|
|
15
15
|
After onboarding, use `/distill` in Claude/Codex to make the agent keep talking in distill language for the whole thread. It should adopt the language style, not return your prompt rewritten.
|
|
16
16
|
|
|
17
|
+
Default response shape uses Military English + AR-0/AR-1 atoms with fixed prefixes:
|
|
18
|
+
|
|
19
|
+
```text
|
|
20
|
+
Dict: S=state C=context D=action R=risk O=outcome N=no-go P=proof
|
|
21
|
+
S glab auth fail gitlab.com
|
|
22
|
+
D inspect remotes + MR meta
|
|
23
|
+
R merge/update may block w/o token
|
|
24
|
+
```
|
|
25
|
+
|
|
17
26
|
`/distill` also has DSL memory:
|
|
18
27
|
|
|
19
28
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@samuelfaj/distill",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.6",
|
|
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.6",
|
|
20
|
+
"@samuelfaj/distill-darwin-x64": "1.4.6",
|
|
21
|
+
"@samuelfaj/distill-linux-arm64": "1.4.6",
|
|
22
|
+
"@samuelfaj/distill-linux-x64": "1.4.6",
|
|
23
|
+
"@samuelfaj/distill-win32-x64": "1.4.6"
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|
package/skills/distill/SKILL.md
CHANGED
|
@@ -17,8 +17,10 @@ Adopt the distill language structure and keep using it for the rest of the threa
|
|
|
17
17
|
Talk with the user in distill language:
|
|
18
18
|
|
|
19
19
|
- English only, unless user explicitly requests another output language
|
|
20
|
-
- Military English baseline
|
|
20
|
+
- Military English + AR-0/AR-1 baseline
|
|
21
21
|
- short command lines
|
|
22
|
+
- fixed semantic prefixes
|
|
23
|
+
- semantic atoms over natural phrases
|
|
22
24
|
- one idea per line
|
|
23
25
|
- explicit constraints
|
|
24
26
|
- explicit pass criteria
|
|
@@ -30,6 +32,32 @@ Talk with the user in distill language:
|
|
|
30
32
|
Compress meaning, not characters.
|
|
31
33
|
Big wins come from removing repetition, sharing glossary, sharing context, and sharing structure.
|
|
32
34
|
|
|
35
|
+
Default line grammar:
|
|
36
|
+
|
|
37
|
+
```text
|
|
38
|
+
<prefix> <semantic-atoms>
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Prefer:
|
|
42
|
+
|
|
43
|
+
```text
|
|
44
|
+
S glab auth fail gitlab.com
|
|
45
|
+
D inspect remotes + MR meta
|
|
46
|
+
R merge/update may block w/o token
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Avoid:
|
|
50
|
+
|
|
51
|
+
```text
|
|
52
|
+
Status: glab auth reports fail for gitlab.com. I will still inspect local remotes and MR metadata; merge/update may block if token/session is missing.
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
AR levels:
|
|
56
|
+
|
|
57
|
+
- `AR-0` terse atoms, minimum grammar, still clear
|
|
58
|
+
- `AR-1` atoms + small glue for safety/clarity
|
|
59
|
+
- default to `AR-1`; use `AR-0` only when meaning stays obvious
|
|
60
|
+
|
|
33
61
|
## Thread Behavior
|
|
34
62
|
|
|
35
63
|
After `/distill` is invoked:
|
|
@@ -43,28 +71,32 @@ After `/distill` is invoked:
|
|
|
43
71
|
|
|
44
72
|
## Stable DSL
|
|
45
73
|
|
|
46
|
-
|
|
74
|
+
Always use the shared dict when aliases or prefixes matter.
|
|
75
|
+
Emit `Dict:` early in a thread or after changing meanings.
|
|
47
76
|
|
|
48
|
-
|
|
49
|
-
- `C` context
|
|
50
|
-
- `Do` actions
|
|
51
|
-
- `No` constraints
|
|
52
|
-
- `Pass` pass criteria
|
|
53
|
-
- `Out` required output
|
|
77
|
+
Core prefixes:
|
|
54
78
|
|
|
55
|
-
|
|
79
|
+
- `S` state/status
|
|
80
|
+
- `C` cause/context
|
|
81
|
+
- `D` action/decision
|
|
82
|
+
- `R` risk/blocker
|
|
83
|
+
- `O` outcome/output
|
|
84
|
+
- `N` constraint/no-go
|
|
85
|
+
- `P` pass criteria/proof
|
|
86
|
+
|
|
87
|
+
Optional task labels:
|
|
56
88
|
|
|
57
89
|
- `A` authentication or authorization
|
|
58
90
|
- `B` backend
|
|
59
91
|
- `F` frontend
|
|
60
|
-
- `D` database
|
|
61
92
|
- `E` end-to-end tests
|
|
62
|
-
- `C` configuration
|
|
63
|
-
- `O` documentation
|
|
64
93
|
- `V` environment
|
|
65
94
|
- `X` dependencies
|
|
66
|
-
- `P` permissions
|
|
67
95
|
- `U` user interface
|
|
96
|
+
- `DB` database
|
|
97
|
+
- `CFG` configuration
|
|
98
|
+
- `DOC` documentation
|
|
99
|
+
- `PERM` permissions
|
|
68
100
|
|
|
69
101
|
Built-in macros:
|
|
70
102
|
|
|
@@ -91,50 +123,85 @@ Built-in defaults:
|
|
|
91
123
|
Example:
|
|
92
124
|
|
|
93
125
|
```text
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
126
|
+
Dict: S=state C=context D=action R=risk O=outcome N=no-go P=proof
|
|
127
|
+
S auth bug reproduced
|
|
128
|
+
D add failing auth test
|
|
129
|
+
D patch B auth guard
|
|
130
|
+
N F/UI unchanged
|
|
131
|
+
P invalid token denied + valid user allowed
|
|
132
|
+
P bun test auth PASS
|
|
100
133
|
```
|
|
101
134
|
|
|
102
135
|
Use DSL only when the user and agent share the glossary. If meaning may be ambiguous, use the full phrase.
|
|
103
136
|
|
|
137
|
+
## AR Style
|
|
138
|
+
|
|
139
|
+
Prefer semantic atoms:
|
|
140
|
+
|
|
141
|
+
```text
|
|
142
|
+
D sync repo/pkg/bin skill
|
|
143
|
+
R PATH pkg bin may shadow repo
|
|
144
|
+
O minimal patch set
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
Avoid natural filler:
|
|
148
|
+
|
|
149
|
+
```text
|
|
150
|
+
D patch repo skill + packaged skill + installed skill if needed
|
|
151
|
+
R may need rebuild/install if PATH uses packaged binary
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
Use arrows for transforms:
|
|
155
|
+
|
|
156
|
+
```text
|
|
157
|
+
D migrate labels -> AR-1 cmds
|
|
158
|
+
D verbose status -> S/D/R atoms
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
Use `=>` for causal/risk relation:
|
|
162
|
+
|
|
163
|
+
```text
|
|
164
|
+
C PATH pkg bin => repo patch ignored
|
|
165
|
+
R missing token => merge blocked
|
|
166
|
+
```
|
|
167
|
+
|
|
104
168
|
## Good Response Forms
|
|
105
169
|
|
|
106
170
|
Tiny status:
|
|
107
171
|
|
|
108
172
|
```text
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
173
|
+
S done
|
|
174
|
+
O changed src/onboarding.ts + test/cli-entry.test.ts
|
|
175
|
+
P bun test PASS
|
|
112
176
|
```
|
|
113
177
|
|
|
114
178
|
Plan:
|
|
115
179
|
|
|
116
180
|
```text
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
181
|
+
Dict: S=state C=context D=action R=risk O=outcome N=no-go P=proof
|
|
182
|
+
S fix onboarding distill mode
|
|
183
|
+
D inspect skill/rules
|
|
184
|
+
D patch wording + sync copies
|
|
185
|
+
D run focused tests
|
|
186
|
+
N unrelated refactor
|
|
187
|
+
P /distill changes conversation style, not prompt output
|
|
188
|
+
O files + tests + risks
|
|
122
189
|
```
|
|
123
190
|
|
|
124
191
|
Need info:
|
|
125
192
|
|
|
126
193
|
```text
|
|
127
|
-
|
|
128
|
-
|
|
194
|
+
R need target repo/file
|
|
195
|
+
C prompt lacks safe path
|
|
129
196
|
```
|
|
130
197
|
|
|
131
198
|
Review/result:
|
|
132
199
|
|
|
133
200
|
```text
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
201
|
+
O PASS
|
|
202
|
+
O skill activates thread language mode
|
|
203
|
+
P bun test test/cli-entry.test.ts PASS
|
|
204
|
+
R not committed
|
|
138
205
|
```
|
|
139
206
|
|
|
140
207
|
## Glossary And Memory
|
|
@@ -159,7 +226,7 @@ Use aliases only when they stay obvious:
|
|
|
159
226
|
When aliases help the user, output one compact line:
|
|
160
227
|
|
|
161
228
|
```text
|
|
162
|
-
Dict: B=backend F=frontend
|
|
229
|
+
Dict: S=state C=context D=action R=risk O=outcome N=no-go P=proof B=backend F=frontend
|
|
163
230
|
```
|
|
164
231
|
|
|
165
232
|
Later additions:
|
|
@@ -174,7 +241,7 @@ Add learned aliases/macros only when likely to repeat.
|
|
|
174
241
|
Prefer `Dict:` for active shared terms and `Dict+` for additions. Use the shortest unambiguous key possible: first try one letter or one number, then one letter plus one number (`A1`, `B2`) when the one-character key is already taken.
|
|
175
242
|
|
|
176
243
|
```text
|
|
177
|
-
Dict:
|
|
244
|
+
Dict: S=state C=context D=action R=risk O=outcome N=no-go P=proof 1=failing-test-first
|
|
178
245
|
Dict+: A1=authentication bug fix
|
|
179
246
|
```
|
|
180
247
|
|