← ClaudeAtlas

torquechecklisted

Verify GSD and Superpowers installation, detect version mismatches, and flag common misconfigurations. Run this when things aren't working as expected.
mattjaikaran/torque · ★ 6 · Data & Documents · score 78
Install: claude install-skill mattjaikaran/torque
# Torque Health Check Verify that GSD and Superpowers are installed correctly and the current project has no configuration conflicts. ## Procedure ### Step 1: Check GSD installation ```bash # Check for GSD tools ls ~/.claude/get-shit-done/bin/gsd-tools.cjs 2>/dev/null && echo "GSD_INSTALLED=true" || echo "GSD_INSTALLED=false" # Get GSD version cat ~/.claude/get-shit-done/VERSION 2>/dev/null || echo "GSD_VERSION=unknown" # Check GSD skills are registered ls ~/.claude/skills/gsd-* 2>/dev/null | head -5 ``` ### Step 2: Check Superpowers installation ```bash # Check for core SP skills (required) for skill in systematic-debugging test-driven-development brainstorming writing-plans subagent-driven-development requesting-code-review verification-before-completion finishing-a-development-branch receiving-code-review; do if ls ~/.claude/skills/$skill/SKILL.md 2>/dev/null > /dev/null; then echo " ✓ $skill" else echo " ✗ $skill (MISSING)" fi done # Check for extended SP skills (optional but recommended) echo "" echo "Extended skills:" for skill in grill-me improve-codebase-architecture write-a-prd prd-to-issues changelog-generator webapp-testing playwright-skill ci-cd monitoring-observability; do if ls ~/.claude/skills/$skill/SKILL.md 2>/dev/null > /dev/null; then echo " ✓ $skill" else echo " ○ $skill (optional, not installed)" fi done ``` ### Step 3: Check Torque installation ```bash # Verify this skill is properly installed ls ~/.claude/skill