← ClaudeAtlas

gsd-verify-worklisted

Built-in for plan (adapted from open-gsd/gsd-core)
Adnova-Group/muster · ★ 2 · AI & Automation · score 80
Install: claude install-skill Adnova-Group/muster
<purpose> Validate built features through conversational testing with persistent state. Creates UAT.md that tracks test progress, survives /clear, and feeds gaps into /gsd:plan-phase --gaps. User tests, Claude records. One test at a time. Plain text responses. </purpose> <available_agent_types> Valid GSD subagent types (use exact names — do not fall back to 'general-purpose'): - gsd-planner — Creates detailed plans from phase scope - gsd-plan-checker — Reviews plan quality before execution </available_agent_types> <philosophy> **Show expected, ask if reality matches.** Claude presents what SHOULD happen. User confirms or describes what's different. - "yes" / "y" / "next" / empty → pass - Anything else → logged as issue, severity inferred No Pass/Fail buttons. No severity questions. Just: "Here's what should happen. Does it?" </philosophy> <template> @~/.claude/gsd-core/templates/UAT.md </template> <process> <step name="initialize" priority="first"> If $ARGUMENTS contains a phase number, load context: ```bash _GSD_SHIM_NAME="gsd-tools.cjs"; _GSD_RUNTIME_ROOT="${RUNTIME_DIR:-$(git rev-parse --show-toplevel 2>/dev/null || pwd)}"; GSD_TOOLS="${_GSD_RUNTIME_ROOT}/gsd-core/bin/${_GSD_SHIM_NAME}"; if [ -f "$GSD_TOOLS" ]; then gsd_run() { node "$GSD_TOOLS" "$@"; }; elif [ -f "${_GSD_RUNTIME_ROOT}/.claude/gsd-core/bin/${_GSD_SHIM_NAME}" ]; then GSD_TOOLS="${_GSD_RUNTIME_ROOT}/.claude/gsd-core/bin/${_GSD_SHIM_NAME}"; gsd_run() { node "$GSD_TOOLS" "$@"; }; elif command -v gsd-t