haiku-method 3.13.1 → 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 +19 -0
- package/bin/haiku.mjs +675 -662
- 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,25 @@ 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
|
+
|
|
8
27
|
## [3.13.1] - 2026-05-05
|
|
9
28
|
|
|
10
29
|
### Changed
|