haiku-method 3.6.0 → 3.7.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/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +11 -0
- package/VALIDATION.md +2 -2
- package/bin/haiku +38 -2157
- package/bin/haiku.mjs +2158 -0
- package/package.json +1 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.7.0] - 2026-05-04
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Elaborator now surfaces available skills during elaboration, and units inherit skill availability on a per-hat basis for role-specific tool access.
|
|
12
|
+
|
|
13
|
+
## [3.6.1] - 2026-05-04
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- Plugin binary is now bundled with the distribution, reducing installation time and improving reliability across network conditions.
|
|
17
|
+
- Marketplace references now use relative paths for better offline support.
|
|
18
|
+
|
|
8
19
|
## [3.6.0] - 2026-05-04
|
|
9
20
|
|
|
10
21
|
### Added
|
package/VALIDATION.md
CHANGED
|
@@ -326,8 +326,8 @@ No SessionStart hooks are registered. `inject-context` and `ensure-deps` were re
|
|
|
326
326
|
- [ ] `haiku hook <name>`: executes the named hook
|
|
327
327
|
- [ ] `haiku migrate`: migrates `.ai-dlc/` to `.haiku/`
|
|
328
328
|
- [ ] Unknown command: exits with error and usage message
|
|
329
|
-
- [ ]
|
|
330
|
-
- [ ]
|
|
329
|
+
- [ ] Bundle is a single file at `plugin/bin/haiku.mjs` (~5MB minified, includes review SPA inlined). `plugin/bin/haiku` is a bash dispatcher that selects bundle vs source.
|
|
330
|
+
- [ ] Bundle shebang (`#!/usr/bin/env node`) makes `plugin/bin/haiku.mjs` directly executable
|
|
331
331
|
- [ ] Zero external dependencies at runtime (no jq, yq, or npm install)
|
|
332
332
|
|
|
333
333
|
---
|