gsd-health-check
Verify GSD setup - checks Claude, Codex, skills, and MCP servers are working correctly.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Verify GSD setup - checks Claude, Codex, skills, and MCP servers are working correctly.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Query OpenAI Codex (GPT-5.2-codex) for second opinions, alternative implementations, or specialized knowledge. Use when you want to consult another AI model, need a different perspective on a coding problem, or want to verify an approach.
Run entire milestone autonomously with Codex validation. Auto-detects current milestone, executes all phases, and runs audit.
Get a second opinion from OpenAI Codex (GPT-5.2-codex) on code, architecture, or implementation decisions. Use when you want independent verification or an alternative perspective.
Autonomous phase execution with Codex validation. Runs plan/execute/verify cycles in a bash loop until done or halted.
| name | gsd:health-check |
| description | Verify GSD setup - checks Claude, Codex, skills, and MCP servers are working correctly. |
| argument-hint | [--verbose] |
Run diagnostics to verify your GSD setup is working correctly.
# Quick check (summary only)
/gsd:health-check
# Verbose output (full details)
/gsd:health-check --verbose
GSD Health Check
================
Claude CLI: [OK] v1.2.3, authenticated as user@example.com
Codex CLI: [OK] v0.1.0, authenticated
Skills: [OK] 5 skills found
MCP Servers: [OK] 3 servers configured
All checks passed!
# Support both project-local (.claude/) and global (~/.claude/) installs
if [[ -f ".claude/skills/gsd-health-check/scripts/health-check.sh" ]]; then
bash .claude/skills/gsd-health-check/scripts/health-check.sh $ARGUMENTS
else
bash ~/.claude/skills/gsd-health-check/scripts/health-check.sh $ARGUMENTS
fi