haiku-method 3.4.0 → 3.5.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 +12 -0
- package/README.md +14 -0
- package/bin/haiku +677 -605
- package/package.json +5 -1
- package/schemas/intent.schema.json +147 -0
- package/schemas/stage.schema.json +95 -0
- package/skills/autopilot/SKILL.md +7 -7
- package/studios/software/stages/security/outputs/security-fix.md +39 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ 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.5.0] - 2026-05-04
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Drift detection alerts you when outputs change unexpectedly, with assessment interface to classify and approve changes
|
|
12
|
+
- Knowledge upload during review lets you inject new files or context without restarting the intent
|
|
13
|
+
- One-click output replacement for invalidated results in the review view
|
|
14
|
+
- Coverage gap acknowledgment to mark sections intentionally out-of-scope
|
|
15
|
+
|
|
16
|
+
## [3.4.1] - 2026-05-03
|
|
17
|
+
|
|
18
|
+
This release contains only internal test coverage improvements with no user-facing changes to report.
|
|
19
|
+
|
|
8
20
|
## [3.4.0] - 2026-05-01
|
|
9
21
|
|
|
10
22
|
### Changed
|
package/README.md
CHANGED
|
@@ -98,6 +98,20 @@ Each stage's gate decides whether work advances:
|
|
|
98
98
|
|
|
99
99
|
Mix them per stage. Compound gates like `[external, ask]` let you choose at runtime.
|
|
100
100
|
|
|
101
|
+
## Kill-switch — disabling drift detection
|
|
102
|
+
|
|
103
|
+
H·AI·K·U ships a per-stage drift-detection gate that catches out-of-band edits to tracked files between ticks. If it ever misfires (false positives during a noisy refactor, an integration that legitimately rewrites tracked surfaces, load shedding under heavy churn), turn it off in `.haiku/settings.yml`:
|
|
104
|
+
|
|
105
|
+
```yaml
|
|
106
|
+
drift_detection: false
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
That single key disables the drift-detection gate for the project. Reconciliation, baseline establishment, and every other gate continue to run normally — only drift-finding emission is silenced. Flip it back to `true` (or remove the key entirely) once the noisy condition clears.
|
|
110
|
+
|
|
111
|
+
**Verifying the kill-switch is live.** After flipping the flag, call `haiku_baseline_init` against any intent — the response will include a `drift_disabled_warning` key when the kill-switch is active. The flag uses the literal lowercase boolean `false`; `"false"` (string) and `False` (Python-cased) are silently ignored. If `drift_disabled_warning` is absent on the next call, the YAML key is malformed.
|
|
112
|
+
|
|
113
|
+
For incident playbooks — including how to verify the kill-switch is live, how to roll back a corrupt baseline, and how to clear stuck reconciliation findings — see `.haiku/knowledge/RUNBOOK.md` inside any intent that uses drift detection.
|
|
114
|
+
|
|
101
115
|
## Links
|
|
102
116
|
|
|
103
117
|
- **Method paper** — [haikumethod.ai/papers/haiku-method](https://haikumethod.ai/papers/haiku-method)
|