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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "haiku",
3
- "version": "3.6.0",
3
+ "version": "3.7.0",
4
4
  "description": "H·AI·K·U methodology — universal lifecycle orchestration with hat-based workflows, completion criteria, and automatic context preservation.",
5
5
  "author": {
6
6
  "name": "GigSmart",
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
- - [ ] Binary is a single file at `plugin/bin/haiku` (~1.1MB minified, includes review SPA inlined)
330
- - [ ] Shebang (`#!/usr/bin/env node`) makes it directly executable
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
  ---