ワンクリックで
verify
Run bash syntax checks on all scripts, then preflight and doctor checks to verify the codebase is healthy.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run bash syntax checks on all scripts, then preflight and doctor checks to verify the codebase is healthy.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Consult Gemini, Codex, Mistral Vibe, Cursor, Claude, Kimi, Qwen, MiniMax, GLM, Grok, and DeepSeek as external experts for coding questions. Automatically excludes the invoking agent from the panel to avoid self-consultation. Use when you have doubts about implementations, want a second opinion, need to choose between different approaches, or when explicitly requested with phrases like "ask the consultants", "what do the other models think", "compare solutions", "get expert opinions", "I'm not sure about this approach", "what would other models say". Make sure to consult this skill whenever the user is weighing trade-offs, comparing architectures, validating complex solutions, or wants multiple perspectives on any non-trivial coding decision. Do NOT use for simple questions that only need one model's answer or when you already have high confidence in a solution.
Automate a version bump across all files that track the version, create the release note, and prepare the commit.
| name | verify |
| description | Run bash syntax checks on all scripts, then preflight and doctor checks to verify the codebase is healthy. |
Run the following verification steps in order. Stop and report on first failure.
Run bash -n on every .sh file in scripts/ and scripts/lib/:
for f in scripts/*.sh scripts/lib/*.sh; do bash -n "$f" || echo "FAIL: $f"; done
Run ShellCheck on changed files (or all if none specified):
shellcheck -x scripts/*.sh scripts/lib/*.sh
Report warnings but don't fail on style-only issues (SC2034, SC2086 are common in this codebase).
./scripts/preflight_check.sh
./scripts/doctor.sh
Report a summary table of pass/fail for each step.