@charmland/crush 0.69.1 → 0.71.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 +32 -0
  2. package/package.json +25 -25
package/README.md CHANGED
@@ -193,6 +193,7 @@ That said, you can also set environment variables for preferred providers.
193
193
  | `CEREBRAS_API_KEY` | Cerebras |
194
194
  | `OPENROUTER_API_KEY` | OpenRouter |
195
195
  | `IONET_API_KEY` | io.net |
196
+ | `ALIBABA_SINGAPORE_API_KEY` | Alibaba (Singapore) |
196
197
  | `GROQ_API_KEY` | Groq |
197
198
  | `AVIAN_API_KEY` | Avian |
198
199
  | `OPENCODE_API_KEY` | OpenCode Zen & Go |
@@ -490,6 +491,37 @@ git clone https://github.com/anthropics/skills.git _temp
490
491
  mv _temp/skills/* . ; rm -r -force _temp
491
492
  ```
492
493
 
494
+ #### User-Invocable Skills
495
+
496
+ Skills can be made invocable as commands from the commands palette (Ctrl+P). Add `user-invocable: true` to the skill's YAML frontmatter:
497
+
498
+ ```yaml
499
+ ---
500
+ name: my-skill
501
+ description: A skill that can be invoked as a command.
502
+ user-invocable: true
503
+ ---
504
+ ```
505
+
506
+ User-invocable skills appear in the commands palette with a `user:` or `project:` prefix:
507
+ - Skills from global directories show as `user:skill-name`
508
+ - Skills from project directories show as `project:skill-name`
509
+
510
+ When invoked, the skill's instructions are loaded into the conversation context.
511
+
512
+ To prevent the model from auto-triggering a skill (while still allowing user invocation), add `disable-model-invocation: true`:
513
+
514
+ ```yaml
515
+ ---
516
+ name: my-skill
517
+ description: Only invocable by users, not the model.
518
+ user-invocable: true
519
+ disable-model-invocation: true
520
+ ---
521
+ ```
522
+
523
+ Skills with `disable-model-invocation` won't appear in the model's available skills list but can still be invoked manually by users.
524
+
493
525
  ### Desktop notifications
494
526
 
495
527
  Crush sends desktop notifications when a tool call requires permission and when
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@charmland/crush",
3
3
  "type": "module",
4
- "version": "0.69.1",
4
+ "version": "0.71.0",
5
5
  "description": "A powerful terminal-based AI assistant for developers, providing intelligent coding assistance directly in your terminal.",
6
6
  "scripts": {
7
7
  "postinstall": "node install.js",
@@ -27,82 +27,82 @@
27
27
  },
28
28
  "archives": {
29
29
  "darwin-arm64": {
30
- "name": "crush_0.69.1_Darwin_arm64.tar.gz",
31
- "url": "https://github.com/charmbracelet/crush/releases/download/v0.69.1/crush_0.69.1_Darwin_arm64.tar.gz",
30
+ "name": "crush_0.71.0_Darwin_arm64.tar.gz",
31
+ "url": "https://github.com/charmbracelet/crush/releases/download/v0.71.0/crush_0.71.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": "c56cd278b95c8ec0a992812adc03d7145b77e81d8d11767b7b9cd3773cf13c46"
38
+ "digest": "993aacf5a75c517e99e0410262b82a54590ccf3fe667e793b9a18ffec15043ac"
39
39
  },
40
- "wrappedIn": "crush_0.69.1_Darwin_arm64"
40
+ "wrappedIn": "crush_0.71.0_Darwin_arm64"
41
41
  },
42
42
  "darwin-x64": {
43
- "name": "crush_0.69.1_Darwin_x86_64.tar.gz",
44
- "url": "https://github.com/charmbracelet/crush/releases/download/v0.69.1/crush_0.69.1_Darwin_x86_64.tar.gz",
43
+ "name": "crush_0.71.0_Darwin_x86_64.tar.gz",
44
+ "url": "https://github.com/charmbracelet/crush/releases/download/v0.71.0/crush_0.71.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": "d2e9b1bc56c812706fc6227bd1a58f52b0cc51ef3ec9c61ec6df606f6419fa99"
51
+ "digest": "125ef13fe78312d01aaffbee3c9879f40b8d850f48f9cf61a094c7bca156e485"
52
52
  },
53
- "wrappedIn": "crush_0.69.1_Darwin_x86_64"
53
+ "wrappedIn": "crush_0.71.0_Darwin_x86_64"
54
54
  },
55
55
  "linux-arm64": {
56
- "name": "crush_0.69.1_Linux_arm64.tar.gz",
57
- "url": "https://github.com/charmbracelet/crush/releases/download/v0.69.1/crush_0.69.1_Linux_arm64.tar.gz",
56
+ "name": "crush_0.71.0_Linux_arm64.tar.gz",
57
+ "url": "https://github.com/charmbracelet/crush/releases/download/v0.71.0/crush_0.71.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": "93451de2d809458eda01d4fd7de26406dc3b471649f5d64f3a72fed05a17b7d3"
64
+ "digest": "a4d57d9df9475dbe3caebf05abc1fdb97610ced407aa479e12104006add009e9"
65
65
  },
66
- "wrappedIn": "crush_0.69.1_Linux_arm64"
66
+ "wrappedIn": "crush_0.71.0_Linux_arm64"
67
67
  },
68
68
  "linux-x64": {
69
- "name": "crush_0.69.1_Linux_x86_64.tar.gz",
70
- "url": "https://github.com/charmbracelet/crush/releases/download/v0.69.1/crush_0.69.1_Linux_x86_64.tar.gz",
69
+ "name": "crush_0.71.0_Linux_x86_64.tar.gz",
70
+ "url": "https://github.com/charmbracelet/crush/releases/download/v0.71.0/crush_0.71.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": "3de5126daf354baf0d9da5c80367fa443c565880129409c008dbf97089360f3d"
77
+ "digest": "0055270fd5962cd4f24b9eafb79e8ffd6650f732286d71ff8d22d1a5b13f9edc"
78
78
  },
79
- "wrappedIn": "crush_0.69.1_Linux_x86_64"
79
+ "wrappedIn": "crush_0.71.0_Linux_x86_64"
80
80
  },
81
81
  "win32-arm64": {
82
- "name": "crush_0.69.1_Windows_arm64.zip",
83
- "url": "https://github.com/charmbracelet/crush/releases/download/v0.69.1/crush_0.69.1_Windows_arm64.zip",
82
+ "name": "crush_0.71.0_Windows_arm64.zip",
83
+ "url": "https://github.com/charmbracelet/crush/releases/download/v0.71.0/crush_0.71.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": "cadaba352aff39bb4152756581cdd6bd11518af0c583e4ebdc0e7346900a3789"
90
+ "digest": "820f104ac24b8d416257c985305d4789b3d7fcdc3086ffb99eb4139d2c93439e"
91
91
  },
92
- "wrappedIn": "crush_0.69.1_Windows_arm64"
92
+ "wrappedIn": "crush_0.71.0_Windows_arm64"
93
93
  },
94
94
  "win32-x64": {
95
- "name": "crush_0.69.1_Windows_x86_64.zip",
96
- "url": "https://github.com/charmbracelet/crush/releases/download/v0.69.1/crush_0.69.1_Windows_x86_64.zip",
95
+ "name": "crush_0.71.0_Windows_x86_64.zip",
96
+ "url": "https://github.com/charmbracelet/crush/releases/download/v0.71.0/crush_0.71.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": "04b7940cc42f89028a357c1b42ae74c450a694e8bd114f6ea20a09c603bd9164"
103
+ "digest": "544ef69b2f2a872dbfb680aa2023644284a42cbaede404b981a335f22fb77c7f"
104
104
  },
105
- "wrappedIn": "crush_0.69.1_Windows_x86_64"
105
+ "wrappedIn": "crush_0.71.0_Windows_x86_64"
106
106
  }
107
107
  }
108
108
  }