ワンクリックで
dogfood
Systematic exploratory QA for web apps using pire-browser evidence.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Systematic exploratory QA for web apps using pire-browser evidence.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | dogfood |
| description | Systematic exploratory QA for web apps using pire-browser evidence. |
Use this skill when the user asks you to dogfood, QA, test, bug hunt, review, or explore a web app/site/platform. The goal is to behave like a careful user, find real product issues, and leave evidence that another engineer can reproduce.
Start by loading the core command guidance if you need syntax details:
pire-browser skills get core
snapshot -i, semantic find, and targeted
get/is checks before reporting success or failure.Create a predictable output directory:
mkdir -p dogfood-artifacts/screenshots dogfood-artifacts/recordings dogfood-artifacts/traces dogfood-artifacts/network
SESSION="$(pire-browser session id --scope worktree --prefix dogfood)"
pire-browser --session "$SESSION" open https://app.example.com
pire-browser --session "$SESSION" snapshot -i -c
For CI-style dogfood runs, add --headless before the command or set
PIRE_BROWSER_HEADLESS=1. Headless only affects newly launched managed Firefox
sessions; existing sessions keep their current mode.
If the app needs login state, ask whether compact restore is enough or the app requires a full persistent Firefox profile. Useful setup commands:
pire-browser profiles
SESSION="$(pire-browser session id --scope worktree --prefix dogfood)"
pire-browser --profile Default --session "$SESSION" --restore open https://app.example.com
pire-browser --session "$SESSION" --restore session info --json
pire-browser --state ./.pire-state/app.json open https://app.example.com
Run profiles before asking for paths; Default selects the discovered default
Firefox source when present. A named source is copied into a temporary snapshot
for the first run. Later runs can omit --profile Default and use compact
restore. Use a dedicated --profile <path> only when IndexedDB, service
workers, history, cache, or other full-profile state must persist.
For each major user journey:
pire-browser --session "$SESSION" snapshot -i -c
pire-browser --session "$SESSION" find role button --name "Continue"
pire-browser --session "$SESSION" click '<fresh-ref>'
pire-browser --session "$SESSION" wait --load networkidle
pire-browser --session "$SESSION" snapshot -i -c
pire-browser --session "$SESSION" screenshot dogfood-artifacts/screenshots/NN-step.png
Use type instead of fill when you are collecting human-readable repro
evidence and timing matters. Use fill for fast setup outside the repro path.
For static visual issues, one annotated screenshot plus URL/snapshot context is usually enough:
pire-browser --session "$SESSION" screenshot --annotate dogfood-artifacts/screenshots/issue-01.png
pire-browser --session "$SESSION" get url
pire-browser --session "$SESSION" snapshot -i -c
For interactive bugs, start a recording bundle before reproducing. In
pire-browser, recording is a bounded screenshot-sequence evidence directory,
not native WebM video. Pair it with trace and HAR when another engineer needs a
complete diagnostic bundle:
pire-browser --session "$SESSION" trace start
pire-browser --session "$SESSION" record start dogfood-artifacts/recordings/issue-01
pire-browser --session "$SESSION" network har start
pire-browser --session "$SESSION" type '<input-ref>' "example"
pire-browser --session "$SESSION" press Enter
pire-browser --session "$SESSION" wait --load networkidle
pire-browser --session "$SESSION" screenshot dogfood-artifacts/screenshots/issue-01-final.png
pire-browser --session "$SESSION" get url
pire-browser --session "$SESSION" snapshot -i -c
pire-browser --session "$SESSION" network har stop dogfood-artifacts/network/issue-01.har
pire-browser --session "$SESSION" record stop dogfood-artifacts/recordings/issue-01
pire-browser --session "$SESSION" trace stop dogfood-artifacts/traces/issue-01.json
Start the collectors before the interaction under test and stop HAR, recording, and trace in reverse order even when the flow fails. Trace is the compact all-in-one diagnostic; the explicit HAR and recording make API and visual timing easier to inspect.
If the first reproduction attempt gets noisy, use:
pire-browser --session "$SESSION" record restart dogfood-artifacts/recordings/issue-01-retake
Use these only when they help explain the user-visible bug:
pire-browser --session "$SESSION" console --json
pire-browser --session "$SESSION" errors --json
pire-browser --session "$SESSION" network wait-for-request "**/api/**"
pire-browser --session "$SESSION" network wait-for-response "**/api/**"
pire-browser --session "$SESSION" vitals
pire-browser --session "$SESSION" diff screenshot --baseline before.png after.png
Avoid over-collecting private data. Redact or omit secrets from reports.
For each issue, capture:
Close with a short summary of tested areas, issues found, and areas not covered.