@charmland/crush 0.29.1 → 0.30.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.
Files changed (2) hide show
  1. package/README.md +43 -0
  2. package/package.json +25 -25
package/README.md CHANGED
@@ -362,6 +362,49 @@ completely hidden from the agent.
362
362
 
363
363
  To disable tools from MCP servers, see the [MCP config section](#mcps).
364
364
 
365
+ ### Agent Skills
366
+
367
+ Crush supports the [Agent Skills](https://agentskills.io) open standard for
368
+ extending agent capabilities with reusable skill packages. Skills are folders
369
+ containing a `SKILL.md` file with instructions that Crush can discover and
370
+ activate on demand.
371
+
372
+ Skills are discovered from:
373
+
374
+ - `~/.config/crush/skills/` on Unix (default, can be overridden with `CRUSH_SKILLS_DIR`)
375
+ - `%LOCALAPPDATA%\crush\skills\` on Windows (default, can be overridden with `CRUSH_SKILLS_DIR`)
376
+ - Additional paths configured via `options.skills_paths`
377
+
378
+ ```jsonc
379
+ {
380
+ "$schema": "https://charm.land/crush.json",
381
+ "options": {
382
+ "skills_paths": [
383
+ "~/.config/crush/skills", // Windows: "%LOCALAPPDATA%\\crush\\skills",
384
+ "./project-skills"
385
+ ]
386
+ }
387
+ }
388
+ ```
389
+
390
+ You can get started with example skills from [anthropics/skills](https://github.com/anthropics/skills):
391
+
392
+ ```bash
393
+ # Unix
394
+ mkdir -p ~/.config/crush/skills
395
+ cd ~/.config/crush/skills
396
+ git clone https://github.com/anthropics/skills.git _temp
397
+ mv _temp/skills/* . && rm -rf _temp
398
+ ```
399
+
400
+ ```powershell
401
+ # Windows (PowerShell)
402
+ mkdir -Force "$env:LOCALAPPDATA\crush\skills"
403
+ cd "$env:LOCALAPPDATA\crush\skills"
404
+ git clone https://github.com/anthropics/skills.git _temp
405
+ mv _temp/skills/* . ; rm -r -force _temp
406
+ ```
407
+
365
408
  ### Initialization
366
409
 
367
410
  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.29.1",
3
+ "version": "0.30.1",
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.29.1_Darwin_arm64.tar.gz",
31
- "url": "https://github.com/charmbracelet/crush/releases/download/v0.29.1/crush_0.29.1_Darwin_arm64.tar.gz",
30
+ "name": "crush_0.30.1_Darwin_arm64.tar.gz",
31
+ "url": "https://github.com/charmbracelet/crush/releases/download/v0.30.1/crush_0.30.1_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": "1a95e0acc5e69522c4979b0e40c599c0f62a2fd15f67ea75c4d7f1bf23b71955"
38
+ "digest": "f942c8c9bfc575a18dc4fedc2e21c1c4c73c9e7da943c482ad6c80c71981db3f"
39
39
  },
40
- "wrappedIn": "crush_0.29.1_Darwin_arm64"
40
+ "wrappedIn": "crush_0.30.1_Darwin_arm64"
41
41
  },
42
42
  "darwin-x64": {
43
- "name": "crush_0.29.1_Darwin_x86_64.tar.gz",
44
- "url": "https://github.com/charmbracelet/crush/releases/download/v0.29.1/crush_0.29.1_Darwin_x86_64.tar.gz",
43
+ "name": "crush_0.30.1_Darwin_x86_64.tar.gz",
44
+ "url": "https://github.com/charmbracelet/crush/releases/download/v0.30.1/crush_0.30.1_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": "1143950c296a7ad2c3a7547581b0c68a931962d4fe991ab97985eb569a9428bc"
51
+ "digest": "4b25076ecdc783bad91dea2105c06644afa6f4ad818433aff2f3ce10abec648a"
52
52
  },
53
- "wrappedIn": "crush_0.29.1_Darwin_x86_64"
53
+ "wrappedIn": "crush_0.30.1_Darwin_x86_64"
54
54
  },
55
55
  "linux-arm64": {
56
- "name": "crush_0.29.1_Linux_arm64.tar.gz",
57
- "url": "https://github.com/charmbracelet/crush/releases/download/v0.29.1/crush_0.29.1_Linux_arm64.tar.gz",
56
+ "name": "crush_0.30.1_Linux_arm64.tar.gz",
57
+ "url": "https://github.com/charmbracelet/crush/releases/download/v0.30.1/crush_0.30.1_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": "9673faecfb57e03b5b6f65dfc3a9c2f60d28f63f4c9e23ba6416b988782cf67d"
64
+ "digest": "8d9a00e41c76d1889b816685cb6680f75b6d88ffa85ad81b14cc0263abd75f77"
65
65
  },
66
- "wrappedIn": "crush_0.29.1_Linux_arm64"
66
+ "wrappedIn": "crush_0.30.1_Linux_arm64"
67
67
  },
68
68
  "linux-x64": {
69
- "name": "crush_0.29.1_Linux_x86_64.tar.gz",
70
- "url": "https://github.com/charmbracelet/crush/releases/download/v0.29.1/crush_0.29.1_Linux_x86_64.tar.gz",
69
+ "name": "crush_0.30.1_Linux_x86_64.tar.gz",
70
+ "url": "https://github.com/charmbracelet/crush/releases/download/v0.30.1/crush_0.30.1_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": "f99dc624c6e4b9147c8045badba6cea1f428bd4d641a8227829e08cfb0a6999c"
77
+ "digest": "c91cea4f7302e580eeca2402f8182939cfb22c225ea516d0ca61f403bac9139c"
78
78
  },
79
- "wrappedIn": "crush_0.29.1_Linux_x86_64"
79
+ "wrappedIn": "crush_0.30.1_Linux_x86_64"
80
80
  },
81
81
  "win32-arm64": {
82
- "name": "crush_0.29.1_Windows_arm64.zip",
83
- "url": "https://github.com/charmbracelet/crush/releases/download/v0.29.1/crush_0.29.1_Windows_arm64.zip",
82
+ "name": "crush_0.30.1_Windows_arm64.zip",
83
+ "url": "https://github.com/charmbracelet/crush/releases/download/v0.30.1/crush_0.30.1_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": "5e24d990ee8cf8a90cfbcdf845b064f2c49e49f93bedc9f72a83680cd68a94b5"
90
+ "digest": "704bfd1b813c174c661f466526574f6e3921d7a9ed5ad9c2b1cb2b2bcc0dba96"
91
91
  },
92
- "wrappedIn": "crush_0.29.1_Windows_arm64"
92
+ "wrappedIn": "crush_0.30.1_Windows_arm64"
93
93
  },
94
94
  "win32-x64": {
95
- "name": "crush_0.29.1_Windows_x86_64.zip",
96
- "url": "https://github.com/charmbracelet/crush/releases/download/v0.29.1/crush_0.29.1_Windows_x86_64.zip",
95
+ "name": "crush_0.30.1_Windows_x86_64.zip",
96
+ "url": "https://github.com/charmbracelet/crush/releases/download/v0.30.1/crush_0.30.1_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": "3dbce34aa632a55ce922ca57e71b5ba383e8390c3b388ccdc16c68b9084f0c7c"
103
+ "digest": "fd861c324b1d29609f34293e42b310a4ba50460117f48660117e7d0eac80acc5"
104
104
  },
105
- "wrappedIn": "crush_0.29.1_Windows_x86_64"
105
+ "wrappedIn": "crush_0.30.1_Windows_x86_64"
106
106
  }
107
107
  }
108
108
  }