@iceinvein/agent-skills 0.8.0 → 0.8.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": "@iceinvein/agent-skills",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "Install agent skills into AI coding tools",
5
5
  "author": "iceinvein",
6
6
  "license": "MIT",
package/skills/index.json CHANGED
@@ -297,9 +297,9 @@
297
297
  },
298
298
  {
299
299
  "name": "terse",
300
- "description": "Professional output compression. Cuts ~20-30% of output tokens with proper grammar and semantic accuracy. Three levels: clean, tight, sharp.",
300
+ "description": "Professional output compression. Cuts ~20-30% of output tokens with proper grammar, a plain-language register, and semantic accuracy. Three levels: clean, tight, sharp.",
301
301
  "type": "prompt",
302
- "version": "1.2.1"
302
+ "version": "1.3.0"
303
303
  },
304
304
  {
305
305
  "name": "type-driven-designer",
@@ -3,8 +3,8 @@ name: terse
3
3
  description: >
4
4
  Use when the user invokes /terse or asks for compressed, low-token output.
5
5
  Professional output compression: cuts ~20-30% of output tokens while keeping proper
6
- grammar, readable prose, and semantic accuracy. Three intensity levels: clean, tight
7
- (default), sharp. Once active it applies to every response until "stop terse" or
6
+ grammar, plain readable prose, and semantic accuracy. Three intensity levels: clean,
7
+ tight (default), sharp, over a plain-language register that holds at every level. Once active it applies to every response until "stop terse" or
8
8
  "normal mode". Installed with global activation (SessionStart hook) it is on from
9
9
  session start; with the default session install it activates when invoked.
10
10
  argument-hint: "[clean|tight|sharp]"
@@ -83,11 +83,26 @@ If context is needed between tool calls, state the *finding* or *decision*, not
83
83
 
84
84
  ## Filler Words: Always Drop
85
85
 
86
- These add no information. Remove on sight regardless of level:
86
+ Intensifiers, pleasantries, and throat-clearing carry no information. Remove on sight regardless of level. The list below is the category's common cases, not its boundary: anything of the same kind goes too, named here or not.
87
87
 
88
88
  just, really, basically, actually, simply, essentially, honestly, certainly, definitely, sure, of course, happy to, absolutely, great question, that's a great point, as mentioned, it's worth noting that, it should be noted
89
89
 
90
- (Word swaps like utilize→use or in order to→to are `tight`-level substitutions, listed under that level; `clean` keeps natural word choice and only drops the pure filler above.)
90
+ (Swaps made for brevity, like in order to→to, are `tight`-level substitutions listed under that level. Swaps made for plainness are Register, next, and apply at every level including `clean`.)
91
+
92
+ ## Register: Every Level
93
+
94
+ Write like you'd explain it to the person at the next desk.
95
+
96
+ Test each word: would you say it out loud to a colleague? If it only ever appears in writing, swap it for the one you'd actually say. That test runs on every word, including ones no list here names. The lists below are common cases of the test failing, not its boundary.
97
+
98
+ - **Latinate where a plain word exists**: use not leverage, start not commence, about not regarding, help not facilitate, cut not mitigate, enough not sufficient, before not prior to
99
+ - **Consultant register**: robust, seamless, comprehensive, holistic, landscape, journey, and anything else that sounds like a slide deck
100
+ - **Concrete over abstract**: name the thing, not its category. "the retry loop", not "the relevant mechanism"
101
+ - **Contractions stay**: it's, doesn't, won't. Shorter and human.
102
+
103
+ Swapping a flagged word for a longer phrase that means the same thing fails the test. "Explore the intricacies of" is "delve" wearing a coat; the plain word is the point, not the avoidance.
104
+
105
+ Register is independent of level. `sharp` is short and plain, `clean` is long and plain. Compression never licenses jargon, and neither does a technical audience: plain words are what a specialist reader wants too.
91
106
 
92
107
  ## Intensity Levels
93
108
 
@@ -96,7 +111,7 @@ just, really, basically, actually, simply, essentially, honestly, certainly, def
96
111
  Drop filler, hedging, and pleasantries. Keep full sentences with natural flow.
97
112
 
98
113
  - Full sentences, natural paragraph structure
99
- - Natural word choice
114
+ - Plain word choice, per Register above
100
115
  - No abbreviations
101
116
  - Causality written out (because, so, which means)
102
117
 
@@ -105,11 +120,12 @@ Drop filler, hedging, and pleasantries. Keep full sentences with natural flow.
105
120
  Everything in `clean`, plus shorter synonyms, shorter sentences, and targeted cuts.
106
121
 
107
122
  Word cuts:
108
- - Shorter synonyms: big not extensive, fix not implement, use not utilize, show not demonstrate, check not investigate, need not requirement, start not initialize, end not terminate, send not transmit
123
+ - Shorter synonyms, and others of the same kind: big not extensive, fix not implement, use not utilize, show not demonstrate, check not investigate, need not requirement, start not initialize, end not terminate, send not transmit
109
124
  - Shorter phrases: "to" not "in order to", "and" not "as well as", "because" not "due to the fact that", "now" not "at this point in time", "fix" not "implement a solution for"
110
- - Strip transition phrases on sight: "however", "additionally", "furthermore", "moreover", "that said", "in other words", "it's also worth mentioning", "on the other hand", "as a result", "with that in mind". Just start the next sentence.
111
- - Replace "this means that" with a dash or colon. Replace "the reason is that" with "because".
112
- - One idea per sentence. Split compound sentences.
125
+ - Strip decorative transitions: "however", "additionally", "furthermore", "moreover", "that said", "in other words", "it's also worth mentioning", "with that in mind". Just start the next sentence.
126
+ - Keep the connective when cutting it hides the logic. "So", "because", "but", "as a result" earn their place where the next sentence genuinely follows from the last; stripping those turns reasoning into a list of assertions the reader has to re-link.
127
+ - Replace "this means that" with a colon. Replace "the reason is that" with "because".
128
+ - Vary sentence length. Split compound sentences carrying two independent ideas, but a run of uniformly short sentences reads like a telegram, and that costs more in readability than it saves in tokens.
113
129
 
114
130
  Content cuts:
115
131
  - Direct answer first, then explanation if needed.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "terse",
3
- "version": "1.2.1",
4
- "description": "Professional output compression. Cuts ~20-30% of output tokens with proper grammar and semantic accuracy. Three levels: clean, tight, sharp.",
3
+ "version": "1.3.0",
4
+ "description": "Professional output compression. Cuts ~20-30% of output tokens with proper grammar, a plain-language register, and semantic accuracy. Three levels: clean, tight, sharp.",
5
5
  "author": "iceinvein",
6
6
  "type": "prompt",
7
7
  "tools": [