verify-template
Read ../general/verify-template/SKILL.md, then adapt it to Codex:
- Prefer commands documented in
AGENTS.md, package manifests, Makefiles, or CI config over generic defaults. - Run only relevant checks for the files changed.
- If a command needs network, dependency installation, or writes outside the workspace, use Codex approval flow.
- Report exact commands run and whether each passed, failed, or was skipped.
- Do not claim success from intended commands or stale output.
For Python, start with uv run ruff check, uv run ruff format --check,
uv run mypy, and uv run pytest when the project supports them.
For Node, start with package scripts such as lint, typecheck, test, and
build. Do not invent scripts that are not in package.json.