haiku-method 3.0.0 → 3.2.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/.mcp.json +6 -6
- package/CHANGELOG.md +11 -0
- package/bin/haiku +459 -434
- package/data/archetypes.json +172 -172
- package/harnesses/cursor.json +7 -7
- package/harnesses/gemini-cli.json +7 -7
- package/harnesses/windsurf.json +7 -7
- package/hooks/hooks.json +72 -72
- package/lib/capture-playwright-worker.js +118 -112
- package/package.json +1 -1
- package/schemas/providers/hubspot.schema.json +10 -8
- package/schemas/providers/jira.schema.json +3 -1
- package/schemas/providers/openpencil.schema.json +10 -1
- package/schemas/providers/salesforce.schema.json +10 -8
- package/schemas/providers/stack-alerting.schema.json +7 -1
- package/schemas/providers/stack-monitoring.schema.json +8 -1
- package/schemas/settings.schema.json +112 -22
- package/studios/software/examples/add-oauth-login/sequence.ts +1164 -119
- package/studios/software/examples/add-oauth-login/stages/design/state.json +5 -8
- package/studios/software/examples/add-oauth-login/stages/development/state.json +9 -9
- package/studios/software/examples/add-oauth-login/stages/inception/state.json +10 -10
- package/studios/software/examples/add-oauth-login/stages/operations/state.json +5 -7
- package/studios/software/examples/add-oauth-login/stages/product/state.json +5 -7
- package/studios/software/examples/add-oauth-login/stages/security/state.json +5 -8
package/.mcp.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ 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.2.0] - 2026-04-30
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Plugin now displays its version in the footer and exposes version information via `/api/version` endpoint for programmatic access.
|
|
12
|
+
|
|
13
|
+
## [3.1.0] - 2026-04-30
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Agent now receives prior-rejection context when retrying failed units, enabling it to learn from previous attempts and avoid repeating mistakes in subsequent bolts.
|
|
18
|
+
|
|
8
19
|
## [3.0.0] - 2026-04-30
|
|
9
20
|
|
|
10
21
|
### Changed
|