원클릭으로
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.