Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .armada/logbook/staging.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"surface": "web",
"recordUrl": "http://localhost:3001/",
"launch": {
"command": "cd src/ui && npm run dev",
Comment thread
tomek-i marked this conversation as resolved.
"extraFlags": [],
"readySignal": {
"type": "httpUrl",
"value": "http://localhost:3000/"
},
"env": ["VITE_DEBUG_BUILD"]
},
"stage": {
"auth": null,
"seed": null,
"entry": "http://localhost:3000/"
},
"cursor": true,
"reach": [
{
"action": "goto",
"target": "/"
}
],
"notes": {
"appClass": "Electron (web-wrapped desktop) — record the inner Vite renderer, never `npm run start` (the native shell can't render headless and can't be driven by Playwright).",
"entryPoints": "The renderer has multiple HTML entries: index.html (main window), control-bar.html, camera.html, countdown.html, frame-overlay.html — reach a secondary window with e.g. { \"action\": \"goto\", \"target\": \"/control-bar.html\" }.",
"outOfFrame": "Native-only chrome (tray icon, native menus, OS file dialogs, screen-capture pickers) lives in the Electron shell and cannot appear in headless recordings; IPC/preload-backed features may render with stub data. Name these in the handoff when a chapter depends on them.",
"port": "Vite dev server is strictPort 3000."
}
}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -116,3 +116,7 @@ tmpclaude*
!.claude/skills/
.claude/skills/*
!.claude/skills/yakshaver-config/

# ARMADA logbook — machine/content-specific artifacts (config stays committed)
.armada/logbook/bin/
.armada/logbook/cache/
54 changes: 53 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
"electron-builder": "^26.0.12",
"electron-rebuild": "^3.2.9",
"js-yaml": "^4.1.0",
"playwright": "^1.61.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
Comment thread
tomek-i marked this conversation as resolved.
"wait-on": "^9.0.3"
Expand Down
Loading