@charmland/crush 0.51.2 → 0.52.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.
- package/README.md +17 -5
- package/package.json +25 -25
package/README.md
CHANGED
|
@@ -388,11 +388,23 @@ extending agent capabilities with reusable skill packages. Skills are folders
|
|
|
388
388
|
containing a `SKILL.md` file with instructions that Crush can discover and
|
|
389
389
|
activate on demand.
|
|
390
390
|
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
391
|
+
The global paths we looks for skills are:
|
|
392
|
+
|
|
393
|
+
* `$CRUSH_SKILLS_DIR`
|
|
394
|
+
* `$XDG_CONFIG_HOME/agents/skills` or `~/.config/agents/skills/`
|
|
395
|
+
* `$XDG_CONFIG_HOME/crush/skills` or `~/.config/crush/skills/`
|
|
396
|
+
* On Windows, we _also_ look at
|
|
397
|
+
* `%LOCALAPPDATA%\agents\skills\` or `%USERPROFILE%\AppData\Local\agents\skills\`
|
|
398
|
+
* `%LOCALAPPDATA%\crush\skills\` or `%USERPROFILE%\AppData\Local\crush\skills\`
|
|
399
|
+
* Additional paths configured via `options.skills_paths`
|
|
400
|
+
|
|
401
|
+
On top of that, we _also_ load skills in your project from the following
|
|
402
|
+
relative paths:
|
|
403
|
+
|
|
404
|
+
* `.agents/skills`
|
|
405
|
+
* `.crush/skills`
|
|
406
|
+
* `.claude/skills`
|
|
407
|
+
* `.cursor/skills`
|
|
396
408
|
|
|
397
409
|
```jsonc
|
|
398
410
|
{
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@charmland/crush",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.52.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",
|
|
@@ -28,82 +28,82 @@
|
|
|
28
28
|
},
|
|
29
29
|
"archives": {
|
|
30
30
|
"darwin-arm64": {
|
|
31
|
-
"name": "crush_0.
|
|
32
|
-
"url": "https://github.com/charmbracelet/crush/releases/download/v0.
|
|
31
|
+
"name": "crush_0.52.0_Darwin_arm64.tar.gz",
|
|
32
|
+
"url": "https://github.com/charmbracelet/crush/releases/download/v0.52.0/crush_0.52.0_Darwin_arm64.tar.gz",
|
|
33
33
|
"bins": [
|
|
34
34
|
"crush"
|
|
35
35
|
],
|
|
36
36
|
"format": "tar.gz",
|
|
37
37
|
"checksum": {
|
|
38
38
|
"algorithm": "sha256",
|
|
39
|
-
"digest": "
|
|
39
|
+
"digest": "6ff6c47646bd89cbb5b59dbaa719720a07321434b826884f8f4cfd4ac7b2ae0a"
|
|
40
40
|
},
|
|
41
|
-
"wrappedIn": "crush_0.
|
|
41
|
+
"wrappedIn": "crush_0.52.0_Darwin_arm64"
|
|
42
42
|
},
|
|
43
43
|
"darwin-x64": {
|
|
44
|
-
"name": "crush_0.
|
|
45
|
-
"url": "https://github.com/charmbracelet/crush/releases/download/v0.
|
|
44
|
+
"name": "crush_0.52.0_Darwin_x86_64.tar.gz",
|
|
45
|
+
"url": "https://github.com/charmbracelet/crush/releases/download/v0.52.0/crush_0.52.0_Darwin_x86_64.tar.gz",
|
|
46
46
|
"bins": [
|
|
47
47
|
"crush"
|
|
48
48
|
],
|
|
49
49
|
"format": "tar.gz",
|
|
50
50
|
"checksum": {
|
|
51
51
|
"algorithm": "sha256",
|
|
52
|
-
"digest": "
|
|
52
|
+
"digest": "1c9ca0932b3b883cc97cb2ac896b27d61bb09ec239ecdc8e17e8b470ac8ee942"
|
|
53
53
|
},
|
|
54
|
-
"wrappedIn": "crush_0.
|
|
54
|
+
"wrappedIn": "crush_0.52.0_Darwin_x86_64"
|
|
55
55
|
},
|
|
56
56
|
"linux-arm64": {
|
|
57
|
-
"name": "crush_0.
|
|
58
|
-
"url": "https://github.com/charmbracelet/crush/releases/download/v0.
|
|
57
|
+
"name": "crush_0.52.0_Linux_arm64.tar.gz",
|
|
58
|
+
"url": "https://github.com/charmbracelet/crush/releases/download/v0.52.0/crush_0.52.0_Linux_arm64.tar.gz",
|
|
59
59
|
"bins": [
|
|
60
60
|
"crush"
|
|
61
61
|
],
|
|
62
62
|
"format": "tar.gz",
|
|
63
63
|
"checksum": {
|
|
64
64
|
"algorithm": "sha256",
|
|
65
|
-
"digest": "
|
|
65
|
+
"digest": "9e4083f426ce9f4f7804747e76901265e1838cf304af6cf02a98249950d55b9b"
|
|
66
66
|
},
|
|
67
|
-
"wrappedIn": "crush_0.
|
|
67
|
+
"wrappedIn": "crush_0.52.0_Linux_arm64"
|
|
68
68
|
},
|
|
69
69
|
"linux-x64": {
|
|
70
|
-
"name": "crush_0.
|
|
71
|
-
"url": "https://github.com/charmbracelet/crush/releases/download/v0.
|
|
70
|
+
"name": "crush_0.52.0_Linux_x86_64.tar.gz",
|
|
71
|
+
"url": "https://github.com/charmbracelet/crush/releases/download/v0.52.0/crush_0.52.0_Linux_x86_64.tar.gz",
|
|
72
72
|
"bins": [
|
|
73
73
|
"crush"
|
|
74
74
|
],
|
|
75
75
|
"format": "tar.gz",
|
|
76
76
|
"checksum": {
|
|
77
77
|
"algorithm": "sha256",
|
|
78
|
-
"digest": "
|
|
78
|
+
"digest": "c2a58d7183408f5092d8f23e8b8812ad364b6f85ac3adce950e9ff744024708d"
|
|
79
79
|
},
|
|
80
|
-
"wrappedIn": "crush_0.
|
|
80
|
+
"wrappedIn": "crush_0.52.0_Linux_x86_64"
|
|
81
81
|
},
|
|
82
82
|
"win32-arm64": {
|
|
83
|
-
"name": "crush_0.
|
|
84
|
-
"url": "https://github.com/charmbracelet/crush/releases/download/v0.
|
|
83
|
+
"name": "crush_0.52.0_Windows_arm64.zip",
|
|
84
|
+
"url": "https://github.com/charmbracelet/crush/releases/download/v0.52.0/crush_0.52.0_Windows_arm64.zip",
|
|
85
85
|
"bins": [
|
|
86
86
|
"crush.exe"
|
|
87
87
|
],
|
|
88
88
|
"format": "zip",
|
|
89
89
|
"checksum": {
|
|
90
90
|
"algorithm": "sha256",
|
|
91
|
-
"digest": "
|
|
91
|
+
"digest": "b5de8b35cf70d0029ecbd08c6105b37c661fe11a7757cc15a3befe348cacb800"
|
|
92
92
|
},
|
|
93
|
-
"wrappedIn": "crush_0.
|
|
93
|
+
"wrappedIn": "crush_0.52.0_Windows_arm64"
|
|
94
94
|
},
|
|
95
95
|
"win32-x64": {
|
|
96
|
-
"name": "crush_0.
|
|
97
|
-
"url": "https://github.com/charmbracelet/crush/releases/download/v0.
|
|
96
|
+
"name": "crush_0.52.0_Windows_x86_64.zip",
|
|
97
|
+
"url": "https://github.com/charmbracelet/crush/releases/download/v0.52.0/crush_0.52.0_Windows_x86_64.zip",
|
|
98
98
|
"bins": [
|
|
99
99
|
"crush.exe"
|
|
100
100
|
],
|
|
101
101
|
"format": "zip",
|
|
102
102
|
"checksum": {
|
|
103
103
|
"algorithm": "sha256",
|
|
104
|
-
"digest": "
|
|
104
|
+
"digest": "4fb0147cb10a867f37b371fc7905a09fa236b8501b7c50bfd2a79835b70e871b"
|
|
105
105
|
},
|
|
106
|
-
"wrappedIn": "crush_0.
|
|
106
|
+
"wrappedIn": "crush_0.52.0_Windows_x86_64"
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
109
|
}
|