一键导入
auto-bmad-check
Read-only Auto-BMAD capability check. Use when the user asks whether Auto-BMAD can run, what modes are available, or whether TEA/GDS is required.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Read-only Auto-BMAD capability check. Use when the user asks whether Auto-BMAD can run, what modes are available, or whether TEA/GDS is required.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Codex bridge for Auto-BMAD. Use when the user asks to use Auto-BMAD from Codex, run slash-like /auto-bmad or /auto-gds commands in Codex, or smoke-test Auto-BMAD command routing without executing BMAD agents.
Codex entrypoint for Auto-BMAD. Use when the user invokes Auto-BMAD from Codex, asks for /auto-bmad-check, /auto-bmad-* or /auto-gds-* behavior, wants quick-mode readiness, or wants a dry-run before executing BMAD automation.
| name | auto-bmad-check |
| description | Read-only Auto-BMAD capability check. Use when the user asks whether Auto-BMAD can run, what modes are available, or whether TEA/GDS is required. |
Run a read-only capability check. Do not create, modify, delete, migrate, or commit files.
Quick mode is the baseline success path:
Run from the project root:
CHECK_SCRIPT=""
for candidate in \
"./scripts/check-auto-bmad.mjs" \
"../auto-bmad/scripts/check-auto-bmad.mjs" \
"$HOME/dev/auto-bmad/auto-bmad/scripts/check-auto-bmad.mjs"
do
if [ -f "$candidate" ]; then CHECK_SCRIPT="$candidate"; break; fi
done
if [ -z "$CHECK_SCRIPT" ]; then
for root in "$HOME/.codex" "$HOME/.agents/plugins" "$HOME/.claude/plugins/cache"; do
if [ -d "$root" ]; then
CHECK_SCRIPT="$(find "$root" -path '*/auto-bmad*/scripts/check-auto-bmad.mjs' 2>/dev/null | sort | tail -1)"
if [ -n "$CHECK_SCRIPT" ]; then break; fi
fi
done
fi
if [ -z "$CHECK_SCRIPT" ]; then
echo "Auto-BMAD check script not found. Reinstall or update the auto-bmad plugin."
exit 2
fi
node "$CHECK_SCRIPT" --project-root .
Print the output exactly. If it reports Issues: none for quick mode, the project can run BMM quick mode.