haiku-method 3.8.0 → 3.10.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/bin/haiku.mjs +549 -517
- package/lib/capture-playwright-worker.js +3 -3
- package/package.json +1 -1
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
// node capture-playwright-worker.js '{"url":"http://localhost:3000","routes":"/,/about",...}'
|
|
9
9
|
|
|
10
10
|
const { chromium } = require("playwright")
|
|
11
|
-
const path = require("path")
|
|
12
|
-
const fs = require("fs")
|
|
11
|
+
const path = require("node:path")
|
|
12
|
+
const fs = require("node:fs")
|
|
13
13
|
|
|
14
14
|
const BREAKPOINT_NAMES = {
|
|
15
15
|
375: "mobile",
|
|
@@ -121,7 +121,7 @@ async function main() {
|
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
const manifestPath = path.join(outputDir, "manifest.json")
|
|
124
|
-
fs.writeFileSync(manifestPath, JSON.stringify(manifest, null, 2)
|
|
124
|
+
fs.writeFileSync(manifestPath, `${JSON.stringify(manifest, null, 2)}\n`)
|
|
125
125
|
console.log(` manifest: ${manifestPath}`)
|
|
126
126
|
} catch (err) {
|
|
127
127
|
console.error(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "haiku-method",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.10.0",
|
|
4
4
|
"description": "H·AI·K·U methodology — universal lifecycle orchestration with hat-based workflows, completion criteria, and automatic context preservation.",
|
|
5
5
|
"homepage": "https://haikumethod.ai",
|
|
6
6
|
"repository": {
|