claude-slim 2.14.1 → 2.14.2
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 +1 -0
- package/package.json +1 -1
- package/skills/claude-slim/SKILL.md +15 -7
package/README.md
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
[](https://github.com/iops-leo/claude-slim/actions/workflows/ci.yml)
|
|
8
8
|
[](https://nodejs.org)
|
|
9
9
|
[](./LICENSE)
|
|
10
|
+
[](https://skills.sh/iops-leo/claude-slim)
|
|
10
11
|
|
|
11
12
|
**Your Claude Code session burns thousands of tokens before you even say "hello."**
|
|
12
13
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-slim",
|
|
3
|
-
"version": "2.14.
|
|
3
|
+
"version": "2.14.2",
|
|
4
4
|
"description": "Audit and shrink your Claude Code startup context. Measures what every skill, plugin, agent, command, and memory file costs in the system prompt, then reversibly disables the dead weight. Non-destructive scan, tiered proposals, one-command restore — no proxy, no compression.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -27,6 +27,14 @@ block does not survive into the next. It resolves in three tiers — the plugin'
|
|
|
27
27
|
`npx`. That last tier is what makes the skill work when it was installed by
|
|
28
28
|
`npx skills add` rather than `claude plugin install`, where no plugin root exists.
|
|
29
29
|
|
|
30
|
+
The `npx` tier pins a **minimum version, not just a major**. `claude-slim@^2` looks
|
|
31
|
+
safer but is worse: npx reuses any cached `_npx` install that satisfies the range and
|
|
32
|
+
never re-checks the registry, so a machine that once fetched an older 2.x keeps running
|
|
33
|
+
it — a security fix would never arrive. `--prefer-online` does not override this. Pinning
|
|
34
|
+
to the exact release changes the cache key every time, which forces a fresh fetch while
|
|
35
|
+
still refusing an unreviewed next major. `npm run check:versions` keeps this pin equal to
|
|
36
|
+
`package.json`, so bump them together.
|
|
37
|
+
|
|
30
38
|
Do not shorten the name. A two-letter `cs` collides with claude-squad's binary, and a
|
|
31
39
|
shell function is invisible to `timeout`, `env`, and `xargs` — a wrapped call would
|
|
32
40
|
silently run that other program instead. Call `claude_slim` directly, never through a
|
|
@@ -39,7 +47,7 @@ wrapper.
|
|
|
39
47
|
An outdated claude-slim does not merely lack features — it reports **wrong numbers**. Versions before 2.8.0 summed memory across every project on disk and inflated the startup estimate roughly 8×. Presenting those figures as fact is worse than not running at all, so check first:
|
|
40
48
|
|
|
41
49
|
```bash
|
|
42
|
-
claude_slim(){ if [ -n "${CLAUDE_PLUGIN_ROOT:-}" ] && [ -f "$CLAUDE_PLUGIN_ROOT/dist/cli.js" ]; then node "$CLAUDE_PLUGIN_ROOT/dist/cli.js" "$@"; elif command -v claude-slim >/dev/null 2>&1; then claude-slim "$@"; else npx -y 'claude-slim@^2' "$@"; fi; }
|
|
50
|
+
claude_slim(){ if [ -n "${CLAUDE_PLUGIN_ROOT:-}" ] && [ -f "$CLAUDE_PLUGIN_ROOT/dist/cli.js" ]; then node "$CLAUDE_PLUGIN_ROOT/dist/cli.js" "$@"; elif command -v claude-slim >/dev/null 2>&1; then claude-slim "$@"; else npx -y 'claude-slim@^2.14.2' "$@"; fi; }
|
|
43
51
|
claude_slim check-update --json
|
|
44
52
|
```
|
|
45
53
|
|
|
@@ -72,7 +80,7 @@ If `"outdated": false`, say nothing and continue to Phase 1.
|
|
|
72
80
|
Run the CLI to collect environment data:
|
|
73
81
|
|
|
74
82
|
```bash
|
|
75
|
-
claude_slim(){ if [ -n "${CLAUDE_PLUGIN_ROOT:-}" ] && [ -f "$CLAUDE_PLUGIN_ROOT/dist/cli.js" ]; then node "$CLAUDE_PLUGIN_ROOT/dist/cli.js" "$@"; elif command -v claude-slim >/dev/null 2>&1; then claude-slim "$@"; else npx -y 'claude-slim@^2' "$@"; fi; }
|
|
83
|
+
claude_slim(){ if [ -n "${CLAUDE_PLUGIN_ROOT:-}" ] && [ -f "$CLAUDE_PLUGIN_ROOT/dist/cli.js" ]; then node "$CLAUDE_PLUGIN_ROOT/dist/cli.js" "$@"; elif command -v claude-slim >/dev/null 2>&1; then claude-slim "$@"; else npx -y 'claude-slim@^2.14.2' "$@"; fi; }
|
|
76
84
|
claude_slim scan --json
|
|
77
85
|
```
|
|
78
86
|
|
|
@@ -192,20 +200,20 @@ If subcommand is `scan`, stop here. Ask a localized equivalent of "Proceed with
|
|
|
192
200
|
Run the interactive clean command:
|
|
193
201
|
|
|
194
202
|
```bash
|
|
195
|
-
claude_slim(){ if [ -n "${CLAUDE_PLUGIN_ROOT:-}" ] && [ -f "$CLAUDE_PLUGIN_ROOT/dist/cli.js" ]; then node "$CLAUDE_PLUGIN_ROOT/dist/cli.js" "$@"; elif command -v claude-slim >/dev/null 2>&1; then claude-slim "$@"; else npx -y 'claude-slim@^2' "$@"; fi; }
|
|
203
|
+
claude_slim(){ if [ -n "${CLAUDE_PLUGIN_ROOT:-}" ] && [ -f "$CLAUDE_PLUGIN_ROOT/dist/cli.js" ]; then node "$CLAUDE_PLUGIN_ROOT/dist/cli.js" "$@"; elif command -v claude-slim >/dev/null 2>&1; then claude-slim "$@"; else npx -y 'claude-slim@^2.14.2' "$@"; fi; }
|
|
196
204
|
claude_slim clean
|
|
197
205
|
```
|
|
198
206
|
|
|
199
207
|
Or with dry-run:
|
|
200
208
|
```bash
|
|
201
|
-
claude_slim(){ if [ -n "${CLAUDE_PLUGIN_ROOT:-}" ] && [ -f "$CLAUDE_PLUGIN_ROOT/dist/cli.js" ]; then node "$CLAUDE_PLUGIN_ROOT/dist/cli.js" "$@"; elif command -v claude-slim >/dev/null 2>&1; then claude-slim "$@"; else npx -y 'claude-slim@^2' "$@"; fi; }
|
|
209
|
+
claude_slim(){ if [ -n "${CLAUDE_PLUGIN_ROOT:-}" ] && [ -f "$CLAUDE_PLUGIN_ROOT/dist/cli.js" ]; then node "$CLAUDE_PLUGIN_ROOT/dist/cli.js" "$@"; elif command -v claude-slim >/dev/null 2>&1; then claude-slim "$@"; else npx -y 'claude-slim@^2.14.2' "$@"; fi; }
|
|
202
210
|
claude_slim clean --dry-run
|
|
203
211
|
```
|
|
204
212
|
|
|
205
213
|
After cleanup, re-run scan to get updated numbers, then show the savings report:
|
|
206
214
|
|
|
207
215
|
```bash
|
|
208
|
-
claude_slim(){ if [ -n "${CLAUDE_PLUGIN_ROOT:-}" ] && [ -f "$CLAUDE_PLUGIN_ROOT/dist/cli.js" ]; then node "$CLAUDE_PLUGIN_ROOT/dist/cli.js" "$@"; elif command -v claude-slim >/dev/null 2>&1; then claude-slim "$@"; else npx -y 'claude-slim@^2' "$@"; fi; }
|
|
216
|
+
claude_slim(){ if [ -n "${CLAUDE_PLUGIN_ROOT:-}" ] && [ -f "$CLAUDE_PLUGIN_ROOT/dist/cli.js" ]; then node "$CLAUDE_PLUGIN_ROOT/dist/cli.js" "$@"; elif command -v claude-slim >/dev/null 2>&1; then claude-slim "$@"; else npx -y 'claude-slim@^2.14.2' "$@"; fi; }
|
|
209
217
|
claude_slim report
|
|
210
218
|
```
|
|
211
219
|
|
|
@@ -218,7 +226,7 @@ Present the report box AND the before/after breakdown table to the user.
|
|
|
218
226
|
When `/claude-slim restore` is invoked:
|
|
219
227
|
|
|
220
228
|
```bash
|
|
221
|
-
claude_slim(){ if [ -n "${CLAUDE_PLUGIN_ROOT:-}" ] && [ -f "$CLAUDE_PLUGIN_ROOT/dist/cli.js" ]; then node "$CLAUDE_PLUGIN_ROOT/dist/cli.js" "$@"; elif command -v claude-slim >/dev/null 2>&1; then claude-slim "$@"; else npx -y 'claude-slim@^2' "$@"; fi; }
|
|
229
|
+
claude_slim(){ if [ -n "${CLAUDE_PLUGIN_ROOT:-}" ] && [ -f "$CLAUDE_PLUGIN_ROOT/dist/cli.js" ]; then node "$CLAUDE_PLUGIN_ROOT/dist/cli.js" "$@"; elif command -v claude-slim >/dev/null 2>&1; then claude-slim "$@"; else npx -y 'claude-slim@^2.14.2' "$@"; fi; }
|
|
222
230
|
claude_slim restore
|
|
223
231
|
```
|
|
224
232
|
|
|
@@ -227,7 +235,7 @@ claude_slim restore
|
|
|
227
235
|
When `/claude-slim doctor` is invoked:
|
|
228
236
|
|
|
229
237
|
```bash
|
|
230
|
-
claude_slim(){ if [ -n "${CLAUDE_PLUGIN_ROOT:-}" ] && [ -f "$CLAUDE_PLUGIN_ROOT/dist/cli.js" ]; then node "$CLAUDE_PLUGIN_ROOT/dist/cli.js" "$@"; elif command -v claude-slim >/dev/null 2>&1; then claude-slim "$@"; else npx -y 'claude-slim@^2' "$@"; fi; }
|
|
238
|
+
claude_slim(){ if [ -n "${CLAUDE_PLUGIN_ROOT:-}" ] && [ -f "$CLAUDE_PLUGIN_ROOT/dist/cli.js" ]; then node "$CLAUDE_PLUGIN_ROOT/dist/cli.js" "$@"; elif command -v claude-slim >/dev/null 2>&1; then claude-slim "$@"; else npx -y 'claude-slim@^2.14.2' "$@"; fi; }
|
|
231
239
|
claude_slim doctor
|
|
232
240
|
```
|
|
233
241
|
|