haiku-method 3.12.1 → 3.13.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/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +10 -0
- package/VALIDATION.md +0 -1
- package/bin/haiku.mjs +425 -428
- package/hooks/hooks.json +0 -11
- package/package.json +1 -1
- package/skills/zap/SKILL.md +207 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ 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.13.1] - 2026-05-05
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- You can now create multiple intents in the same session without being blocked by the one-intent-per-session guard.
|
|
12
|
+
|
|
13
|
+
## [3.13.0] - 2026-05-05
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
- Run hat iterations faster with `/haiku:zap`, which executes a streamlined hat-loop without the usual ceremony.
|
|
17
|
+
|
|
8
18
|
## [3.12.1] - 2026-05-05
|
|
9
19
|
|
|
10
20
|
### Fixed
|
package/VALIDATION.md
CHANGED
|
@@ -309,7 +309,6 @@ No SessionStart hooks are registered. `inject-context` and `ensure-deps` were re
|
|
|
309
309
|
### Stop
|
|
310
310
|
- [ ] `quality-gate`: runs configured gate commands (test, lint, typecheck, build)
|
|
311
311
|
- [ ] `quality-gate`: blocks stop if gates fail
|
|
312
|
-
- [ ] `enforce-iteration`: rescues from premature stop, checks DAG status
|
|
313
312
|
|
|
314
313
|
### All hooks
|
|
315
314
|
- [ ] Execute via `${CLAUDE_PLUGIN_ROOT}/bin/haiku hook <name>` — no shell scripts
|