haiku-method 3.2.1 → 3.3.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/README.md +110 -0
- package/bin/haiku +2 -2
- package/package.json +4 -1
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.3.1] - 2026-04-30
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Plugin is now installable from npm
|
|
12
|
+
|
|
13
|
+
## [3.3.0] - 2026-04-30
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
- Article landmarks improve navigation and accessibility of intent, stage, and unit review content for screen readers and assistive technology.
|
|
17
|
+
|
|
8
18
|
## [3.2.1] - 2026-04-30
|
|
9
19
|
|
|
10
20
|
### Fixed
|
package/README.md
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
# H·AI·K·U
|
|
2
|
+
|
|
3
|
+
**Human + AI Knowledge Unification** — a Claude Code plugin that turns "tell the AI what to do" into a structured workflow with role-based hats, hard quality gates, and completion criteria.
|
|
4
|
+
|
|
5
|
+
AI can only move as fast as the rails it runs on. H·AI·K·U is the rails.
|
|
6
|
+
|
|
7
|
+
> **This is a Claude Code plugin, not a JavaScript library.** `import` and `require` won't do anything useful — install it via your Claude harness (instructions below). The npm package exists so the plugin can be distributed and version-pinned through standard tooling.
|
|
8
|
+
|
|
9
|
+
## The problem
|
|
10
|
+
|
|
11
|
+
Most AI workflows are a single prompt and a hope. The model produces 400 lines of plausible-looking code, you skim it, you ship it, and the bug shows up in production. The model wasn't wrong because it was dumb — it was wrong because nothing was checking, and nothing was telling it to slow down.
|
|
12
|
+
|
|
13
|
+
H·AI·K·U adds the structure that stops fast movement from becoming fast-wrong. Every piece of work runs through stages. Every stage has a hat sequence (planner → builder → verifier, or whatever the work demands). Every stage ends in a review gate. State lives on disk, so a context reset isn't a progress reset.
|
|
14
|
+
|
|
15
|
+
## Install
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
/plugin marketplace add gigsmart/haiku-method
|
|
19
|
+
/plugin install haiku --scope project
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Works in [Claude Code](https://claude.ai/code), [Claude Cowork](https://claude.ai/cowork), and other MCP-compatible harnesses (Cursor, Windsurf, Gemini CLI, OpenCode, Kiro).
|
|
23
|
+
|
|
24
|
+
### Other MCP harnesses
|
|
25
|
+
|
|
26
|
+
Configure your harness's MCP server list with:
|
|
27
|
+
|
|
28
|
+
```json
|
|
29
|
+
{
|
|
30
|
+
"mcpServers": {
|
|
31
|
+
"haiku": {
|
|
32
|
+
"command": "npx",
|
|
33
|
+
"args": ["-y", "haiku-method", "mcp"]
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
The skills (`/haiku:start`, `/haiku:pickup`, etc.) are Claude-specific — outside Claude, you drive the workflow by calling MCP tools directly (`haiku_run_next`, `haiku_intent_create`, etc.).
|
|
40
|
+
|
|
41
|
+
## Quickstart
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
/haiku:start # describe what you want; the plugin scaffolds an intent
|
|
45
|
+
/haiku:pickup # advance the workflow one tick at a time
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
The orchestrator drives the stage loop. It tells you what to do next; you do it; it advances. When a stage finishes, adversarial review agents try to break the output before the gate opens.
|
|
49
|
+
|
|
50
|
+
## Studios
|
|
51
|
+
|
|
52
|
+
Studios are the lifecycle templates — pre-built sequences of stages, hats, and gates tuned for a class of work.
|
|
53
|
+
|
|
54
|
+
| Engineering | Go-to-Market | General Purpose |
|
|
55
|
+
|---|---|---|
|
|
56
|
+
| Software | Sales | Ideation |
|
|
57
|
+
| Data Pipeline | Marketing | Documentation |
|
|
58
|
+
| Migration | Customer Success | Project Management |
|
|
59
|
+
| Incident Response | Product Strategy | Executive Strategy |
|
|
60
|
+
| Compliance | Dev Evangelism | Training |
|
|
61
|
+
| Security Assessment | | |
|
|
62
|
+
| Quality Assurance | | |
|
|
63
|
+
| Hardware Dev | | |
|
|
64
|
+
| Game Dev | | |
|
|
65
|
+
| Library Dev | | |
|
|
66
|
+
|
|
67
|
+
Plus support studios for HR, Legal, Finance, Vendor Management, and more. See the full catalog at [haikumethod.ai/studios](https://haikumethod.ai/studios).
|
|
68
|
+
|
|
69
|
+
## The model
|
|
70
|
+
|
|
71
|
+
```
|
|
72
|
+
Studio > Stage > Unit > Bolt
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
- **Studio** — the lifecycle template
|
|
76
|
+
- **Stage** — a phase within the studio with its own hat sequence and review gate
|
|
77
|
+
- **Unit** — a discrete piece of work with explicit completion criteria
|
|
78
|
+
- **Bolt** — one iteration through the hat sequence on a unit
|
|
79
|
+
|
|
80
|
+
Studio is *not* the same as Stage. Unit is *not* the same as Bolt. The vocabulary is load-bearing — see the [paper](https://haikumethod.ai/papers/haiku-method) for the full model.
|
|
81
|
+
|
|
82
|
+
## Why it's different
|
|
83
|
+
|
|
84
|
+
- **The work fails fast, not slow.** Quality gates run after every stage. A broken build doesn't propagate downstream; it bounces back to the hat that caused it.
|
|
85
|
+
- **Context-reset proof.** State lives on disk in `.haiku/intents/<slug>/`. Lose your conversation, restart Claude, swap models — the work picks up where it left off.
|
|
86
|
+
- **No magic, just file boundaries.** Every artifact is a markdown file you can read, grep, diff, and commit. The plugin enforces who can write what; nothing else is hidden.
|
|
87
|
+
- **Adversarial review is the default.** Every stage spawns review agents whose job is to find what's wrong. Findings become open feedback that has to be addressed (or explicitly rejected) before the gate opens.
|
|
88
|
+
- **Hats over agents.** Roles are stage-scoped behavioural definitions, not separate agent processes. The same Claude session puts on the planner hat, then the builder hat, then the verifier hat — context flows through.
|
|
89
|
+
|
|
90
|
+
## Review gates
|
|
91
|
+
|
|
92
|
+
Each stage's gate decides whether work advances:
|
|
93
|
+
|
|
94
|
+
- **`auto`** — the harness advances automatically (low-risk, machine-verifiable work)
|
|
95
|
+
- **`ask`** — local human approval via the review web UI
|
|
96
|
+
- **`external`** — blocks until a PR/MR is approved on GitHub or GitLab
|
|
97
|
+
- **`await`** — blocks until an external event fires (customer reply, pipeline finish, etc.)
|
|
98
|
+
|
|
99
|
+
Mix them per stage. Compound gates like `[external, ask]` let you choose at runtime.
|
|
100
|
+
|
|
101
|
+
## Links
|
|
102
|
+
|
|
103
|
+
- **Method paper** — [haikumethod.ai/papers/haiku-method](https://haikumethod.ai/papers/haiku-method)
|
|
104
|
+
- **Website + docs** — [haikumethod.ai](https://haikumethod.ai)
|
|
105
|
+
- **Source** — [github.com/gigsmart/haiku-method](https://github.com/gigsmart/haiku-method)
|
|
106
|
+
- **Changelog** — [CHANGELOG.md](https://github.com/gigsmart/haiku-method/blob/main/CHANGELOG.md)
|
|
107
|
+
|
|
108
|
+
## License
|
|
109
|
+
|
|
110
|
+
[Apache 2.0](https://github.com/gigsmart/haiku-method/blob/main/LICENSE) — use it, fork it, ship it.
|