@charmland/crush 0.22.2 → 0.26.0

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.
Files changed (2) hide show
  1. package/README.md +22 -0
  2. package/package.json +25 -25
package/README.md CHANGED
@@ -275,6 +275,7 @@ using `$(echo $VAR)` syntax.
275
275
  "args": ["/path/to/mcp-server.js"],
276
276
  "timeout": 120,
277
277
  "disabled": false,
278
+ "disabled_tools": ["some-tool-name"],
278
279
  "env": {
279
280
  "NODE_ENV": "production"
280
281
  }
@@ -284,6 +285,7 @@ using `$(echo $VAR)` syntax.
284
285
  "url": "https://api.githubcopilot.com/mcp/",
285
286
  "timeout": 120,
286
287
  "disabled": false,
288
+ "disabled_tools": ["create_issue", "create_pull_request"],
287
289
  "headers": {
288
290
  "Authorization": "Bearer $GH_PAT"
289
291
  }
@@ -335,6 +337,26 @@ permissions. Use this with care.
335
337
  You can also skip all permission prompts entirely by running Crush with the
336
338
  `--yolo` flag. Be very, very careful with this feature.
337
339
 
340
+ ### Disabling Built-In Tools
341
+
342
+ If you'd like to prevent Crush from using certain built-in tools entirely, you
343
+ can disable them via the `options.disabled_tools` list. Disabled tools are
344
+ completely hidden from the agent.
345
+
346
+ ```json
347
+ {
348
+ "$schema": "https://charm.land/crush.json",
349
+ "options": {
350
+ "disabled_tools": [
351
+ "bash",
352
+ "sourcegraph"
353
+ ]
354
+ }
355
+ }
356
+ ```
357
+
358
+ To disable tools from MCP servers, see the [MCP config section](#mcps).
359
+
338
360
  ### Initialization
339
361
 
340
362
  When you initialize a project, Crush analyzes your codebase and creates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@charmland/crush",
3
- "version": "0.22.2",
3
+ "version": "0.26.0",
4
4
  "description": "A powerful terminal-based AI assistant for developers, providing intelligent coding assistance directly in your terminal.",
5
5
  "scripts": {
6
6
  "postinstall": "node install.js",
@@ -27,82 +27,82 @@
27
27
  },
28
28
  "archives": {
29
29
  "darwin-arm64": {
30
- "name": "crush_0.22.2_Darwin_arm64.tar.gz",
31
- "url": "https://github.com/charmbracelet/crush/releases/download/v0.22.2/crush_0.22.2_Darwin_arm64.tar.gz",
30
+ "name": "crush_0.26.0_Darwin_arm64.tar.gz",
31
+ "url": "https://github.com/charmbracelet/crush/releases/download/v0.26.0/crush_0.26.0_Darwin_arm64.tar.gz",
32
32
  "bins": [
33
33
  "crush"
34
34
  ],
35
35
  "format": "tar.gz",
36
36
  "checksum": {
37
37
  "algorithm": "sha256",
38
- "digest": "c97266571a945cc3dfb3310eab3d64eec600b47f76d7b8f648c87797bfeb1a61"
38
+ "digest": "b8ab0dc2dd5c664ca3ff4b7dd4a35d2fcef7c542da7fdd729d7fc4b33311bf1e"
39
39
  },
40
- "wrappedIn": "crush_0.22.2_Darwin_arm64"
40
+ "wrappedIn": "crush_0.26.0_Darwin_arm64"
41
41
  },
42
42
  "darwin-x64": {
43
- "name": "crush_0.22.2_Darwin_x86_64.tar.gz",
44
- "url": "https://github.com/charmbracelet/crush/releases/download/v0.22.2/crush_0.22.2_Darwin_x86_64.tar.gz",
43
+ "name": "crush_0.26.0_Darwin_x86_64.tar.gz",
44
+ "url": "https://github.com/charmbracelet/crush/releases/download/v0.26.0/crush_0.26.0_Darwin_x86_64.tar.gz",
45
45
  "bins": [
46
46
  "crush"
47
47
  ],
48
48
  "format": "tar.gz",
49
49
  "checksum": {
50
50
  "algorithm": "sha256",
51
- "digest": "96ff6b024ec99952a0264246ca65489b2f51966c445cd02ec514790fd8e839f0"
51
+ "digest": "6910f59e80235ce94574cea042f30561a5297722281b7f0333cf975fc75bebda"
52
52
  },
53
- "wrappedIn": "crush_0.22.2_Darwin_x86_64"
53
+ "wrappedIn": "crush_0.26.0_Darwin_x86_64"
54
54
  },
55
55
  "linux-arm64": {
56
- "name": "crush_0.22.2_Linux_arm64.tar.gz",
57
- "url": "https://github.com/charmbracelet/crush/releases/download/v0.22.2/crush_0.22.2_Linux_arm64.tar.gz",
56
+ "name": "crush_0.26.0_Linux_arm64.tar.gz",
57
+ "url": "https://github.com/charmbracelet/crush/releases/download/v0.26.0/crush_0.26.0_Linux_arm64.tar.gz",
58
58
  "bins": [
59
59
  "crush"
60
60
  ],
61
61
  "format": "tar.gz",
62
62
  "checksum": {
63
63
  "algorithm": "sha256",
64
- "digest": "ce2e1a98dc1ddbaaf6b7d4d5da7f273166beeb54e41408b3f22cf305b9cdf531"
64
+ "digest": "93b3d0c815fad691e76ef829fc53f2e970fd103ce47f0e2af29db4d5aeb662a5"
65
65
  },
66
- "wrappedIn": "crush_0.22.2_Linux_arm64"
66
+ "wrappedIn": "crush_0.26.0_Linux_arm64"
67
67
  },
68
68
  "linux-x64": {
69
- "name": "crush_0.22.2_Linux_x86_64.tar.gz",
70
- "url": "https://github.com/charmbracelet/crush/releases/download/v0.22.2/crush_0.22.2_Linux_x86_64.tar.gz",
69
+ "name": "crush_0.26.0_Linux_x86_64.tar.gz",
70
+ "url": "https://github.com/charmbracelet/crush/releases/download/v0.26.0/crush_0.26.0_Linux_x86_64.tar.gz",
71
71
  "bins": [
72
72
  "crush"
73
73
  ],
74
74
  "format": "tar.gz",
75
75
  "checksum": {
76
76
  "algorithm": "sha256",
77
- "digest": "4a870cc2f786aa045492e956a853ed67076a2323c23101c200f6e8d6d87a180b"
77
+ "digest": "6f16e6b944d072b810af80c6556c132e6e7b1fbed37df3d413174ad2a3546790"
78
78
  },
79
- "wrappedIn": "crush_0.22.2_Linux_x86_64"
79
+ "wrappedIn": "crush_0.26.0_Linux_x86_64"
80
80
  },
81
81
  "win32-arm64": {
82
- "name": "crush_0.22.2_Windows_arm64.zip",
83
- "url": "https://github.com/charmbracelet/crush/releases/download/v0.22.2/crush_0.22.2_Windows_arm64.zip",
82
+ "name": "crush_0.26.0_Windows_arm64.zip",
83
+ "url": "https://github.com/charmbracelet/crush/releases/download/v0.26.0/crush_0.26.0_Windows_arm64.zip",
84
84
  "bins": [
85
85
  "crush.exe"
86
86
  ],
87
87
  "format": "zip",
88
88
  "checksum": {
89
89
  "algorithm": "sha256",
90
- "digest": "85e85da4bad645ad7bd8e5d8967566ab084e03ea5a31ca56d0faf03f7af6476d"
90
+ "digest": "c917cbd119a94442b52c647e45e94c496a14de4446962fadfb2a345570f441c9"
91
91
  },
92
- "wrappedIn": "crush_0.22.2_Windows_arm64"
92
+ "wrappedIn": "crush_0.26.0_Windows_arm64"
93
93
  },
94
94
  "win32-x64": {
95
- "name": "crush_0.22.2_Windows_x86_64.zip",
96
- "url": "https://github.com/charmbracelet/crush/releases/download/v0.22.2/crush_0.22.2_Windows_x86_64.zip",
95
+ "name": "crush_0.26.0_Windows_x86_64.zip",
96
+ "url": "https://github.com/charmbracelet/crush/releases/download/v0.26.0/crush_0.26.0_Windows_x86_64.zip",
97
97
  "bins": [
98
98
  "crush.exe"
99
99
  ],
100
100
  "format": "zip",
101
101
  "checksum": {
102
102
  "algorithm": "sha256",
103
- "digest": "6c6625479f43f8deacac64dcc35b643b22d144f27ecc568362aff506f7d65b95"
103
+ "digest": "6c3cda22f6776feb33ce6f64457a70f016877b26aae4ca08b533c52946747777"
104
104
  },
105
- "wrappedIn": "crush_0.22.2_Windows_x86_64"
105
+ "wrappedIn": "crush_0.26.0_Windows_x86_64"
106
106
  }
107
107
  }
108
108
  }