@thebushidocollective/han 1.18.1 → 1.19.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.
- package/README.md +9 -0
- package/dist/bundle.js +544 -284
- package/dist/lib/hook-config.d.ts +58 -0
- package/dist/lib/hook-config.d.ts.map +1 -0
- package/dist/lib/hook-config.js +146 -0
- package/dist/lib/hook-config.js.map +1 -0
- package/dist/lib/main.js +57 -33
- package/dist/lib/main.js.map +1 -1
- package/dist/lib/shared.d.ts.map +1 -1
- package/dist/lib/shared.js +37 -1
- package/dist/lib/shared.js.map +1 -1
- package/dist/lib/validate.d.ts +13 -0
- package/dist/lib/validate.d.ts.map +1 -1
- package/dist/lib/validate.js +66 -13
- package/dist/lib/validate.js.map +1 -1
- package/package.json +8 -7
- package/dist/lib/align-progress.d.ts +0 -9
- package/dist/lib/align-progress.d.ts.map +0 -1
- package/dist/lib/align-progress.js +0 -58
- package/dist/lib/align-progress.js.map +0 -1
- package/dist/lib/align.d.ts +0 -11
- package/dist/lib/align.d.ts.map +0 -1
- package/dist/lib/align.js +0 -116
- package/dist/lib/align.js.map +0 -1
- package/dist/lib/detect-plugins-prompt.d.ts +0 -5
- package/dist/lib/detect-plugins-prompt.d.ts.map +0 -1
- package/dist/lib/detect-plugins-prompt.js +0 -68
- package/dist/lib/detect-plugins-prompt.js.map +0 -1
package/README.md
CHANGED
|
@@ -6,6 +6,8 @@ A curated marketplace of Claude Code plugins built on the foundation of the seve
|
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
|
+
> **Important:** Han MUST be installed globally for hooks to work. Hooks run validation commands (tests, linting, compilation) when you stop working, and they require `han` to be available in your PATH. Using `npx` will install plugins but hooks will NOT function.
|
|
10
|
+
|
|
9
11
|
### Quick Install (Recommended)
|
|
10
12
|
|
|
11
13
|
```bash
|
|
@@ -36,6 +38,13 @@ Download the latest binary for your platform from [GitHub Releases](https://gith
|
|
|
36
38
|
| Linux ARM64 | [han-linux-arm64](https://github.com/TheBushidoCollective/han/releases/latest/download/han-linux-arm64) |
|
|
37
39
|
| Windows x64 | [han-windows-x64.exe](https://github.com/TheBushidoCollective/han/releases/latest/download/han-windows-x64.exe) |
|
|
38
40
|
|
|
41
|
+
After downloading, move the binary to a directory in your PATH (e.g., `/usr/local/bin`) and make it executable:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
chmod +x han-darwin-arm64
|
|
45
|
+
mv han-darwin-arm64 /usr/local/bin/han
|
|
46
|
+
```
|
|
47
|
+
|
|
39
48
|
## Plugin Categories
|
|
40
49
|
|
|
41
50
|
Han organizes plugins into four categories inspired by Japanese samurai traditions:
|