haiku-method 3.13.0 → 3.14.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 +24 -0
- package/VALIDATION.md +0 -1
- package/bin/haiku.mjs +673 -663
- package/hooks/hooks.json +0 -11
- package/package.json +1 -1
- package/schemas/intent.schema.json +8 -2
- package/skills/change-mode/SKILL.md +33 -0
- package/skills/quick/SKILL.md +8 -7
- package/skills/start/SKILL.md +10 -4
- package/studios/ARCHITECTURE.md +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,30 @@ 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.14.0] - 2026-05-05
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Choose operating mode (discrete, continuous, or hybrid) when creating an intent, with constraints enforced based on the selected studio.
|
|
13
|
+
- Select which stage to start in before advancing from elaboration, enabling flexible entry points into staged workflows.
|
|
14
|
+
- New `/haiku:change-mode` skill to switch between discrete and continuous modes during an active intent.
|
|
15
|
+
- Automatic recovery from dirty tree conflicts when the workflow encounters uncommitted local changes, reducing manual intervention.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Intent creation now includes a validation gate that reviews the intent specification before advancing to the first stage.
|
|
20
|
+
- Elaborate phase prompts now inject structured discovery and output template guidance directly into the agent's tool-use result, eliminating separate discovery dispatch steps.
|
|
21
|
+
- Operating mode is now a mutable, schema-enforced field on the intent, allowing mid-workflow adjustments without recreating the intent.
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- Workflow no longer gets stuck when local branches conflict with remote state during multi-stage execution.
|
|
26
|
+
|
|
27
|
+
## [3.13.1] - 2026-05-05
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
- You can now create multiple intents in the same session without being blocked by the one-intent-per-session guard.
|
|
31
|
+
|
|
8
32
|
## [3.13.0] - 2026-05-05
|
|
9
33
|
|
|
10
34
|
### Added
|
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
|