ワンクリックで
verify
Use when user wants to Run the full validation suite (lint + types + tests) before marking any code change done.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when user wants to Run the full validation suite (lint + types + tests) before marking any code change done.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when user wants to Run the Arc Raiders AutoScrapper validation stack after edits. Use for linting, typing, tests, workflow checks, and broader repo validation.
Use when user wants to Update Metaforge snapshots and bundled default rules
Use when user wants to Validate OCR changes against failure corpus before shipping
Add a new OCR regression fixture from an ocr_debug image. Use when a scan misidentified an item and you want to lock in the correct result as a test case.
Use when user wants to Run full validation, push branch, and open a PR with appropriate context notes
Workflow for safely adding, removing, or renaming persisted config fields in config.py. Use whenever editing dataclass fields in src/autoscrapper/config.py. Covers incrementing CONFIG_VERSION, writing a migration function, and validating the round-trip.
| name | verify |
| description | Use when user wants to Run the full validation suite (lint + types + tests) before marking any code change done. |
Run these commands in sequence from the project root. Stop and report on the first failure.
uv run ruff check src/ tests/
uv run basedpyright src/
uv run ty check src/
uv run pytest
ty vs basedpyright disagreements: If only ty reports an error and basedpyright is clean, check whether it's a known ty false positive before fixing (e.g., dict[object, object] key narrowing after isinstance(value, dict) - fix with isinstance(key, str) guard; dict[Never, Never] narrowing after type-narrowed isinstance - known ty limitation, suppress with # type: ignore[union-attr]).
Report: pass/fail per step, any errors inline. Do not claim the change is done until all four pass.