ワンクリックで
verify
Build, launch, and drive the mindwalk web UI end-to-end for verification.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Build, launch, and drive the mindwalk web UI end-to-end for verification.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Set up or troubleshoot Yassimba's curated agent skills, Pi packages, Herdr, and Herdr plugins through the ai-setup CLI. Use when the user asks to install this collection, configure Herdr, add one of its capabilities, update the setup, or diagnose installation problems.
Backlog management: use when the user mentions a backlog, asks what's next, wants work recorded before implementation, or wants queued ideas or specs prioritized, transitioned, completed, or removed; also use when another skill needs to record lifecycle changes.
Use when the user wants to brainstorm or explore an idea — a feature, product direction, or "what if" — before deciding whether it deserves a plan. Ideation only — ends in an idea brief, not a design.
Review the changes since a fixed point (commit, branch, tag, or merge-base) along two axes — Standards (this repo's documented coding standards) and Spec (what the originating issue/PRD asked for). Use when the user wants to review a branch, a PR, work-in-progress changes, or asks to "review since X".
Use when creating a git commit — the user asks to commit, or a unit of work is complete and ready to commit.
Diagnosis loop for hard bugs and performance regressions. Use when the user says "diagnose"/"debug this", or reports something broken/throwing/failing/slow.
SOC 職業分類に基づく
| name | verify |
| description | Build, launch, and drive the mindwalk web UI end-to-end for verification. |
npm --prefix web run build # tsc -b && vite build → web/dist
go build -o bin/mindwalk ./cmd/mindwalk
bin/mindwalk serve --no-open --dev --port <PORT> # --dev serves web/dist from the working tree
Gotchas:
--no-open during automated verification so repeated server
starts do not create tabs or steal focus from the user's current work.bind: address already in use.~/.claude/projects — this machine has real data, no
fixtures needed. testdata/claude-session.jsonl works via mindwalk open.System Chrome + raw CDP over Node's built-in WebSocket works; WebGL renders
under --headless=new with --use-angle=swiftshader --enable-unsafe-swiftshader:
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" \
--headless=new --remote-debugging-port=9333 --user-data-dir=<tmp> \
--window-size=1440,900 --no-first-run about:blank &
New-tab endpoint needs PUT: fetch('http://127.0.0.1:9333/json/new?<url>', {method:'PUT'}).
/?session=<id> deep link; assert .session-row.active .session-title..readout-count shows N / N after load (playhead starts at end).[aria-label="Restart playback"] → 1 / N; [aria-label="Play playback"]
→ ~3 ticks/second; playback draws the ember trail + firefly.Tree / Terrain buttons rebuild the scene — watch for
Runtime.exceptionThrown.?session= must fall back to the newest session with a console.warn.