一键导入
torque-check
Verify GSD and Superpowers installation, detect version mismatches, and flag common misconfigurations. Run this when things aren't working as expected.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Verify GSD and Superpowers installation, detect version mismatches, and flag common misconfigurations. Run this when things aren't working as expected.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Torque: a Claude Code skill that converts GSD (project management) and Superpowers (engineering discipline) into one coherent workflow. Prevents double-planning, conflicting subagent models, and overlapping design capture by providing a single routing decision at task start.
Evaluate whether to upgrade from Torque (GSD + Superpowers) to Meridian, and guide the migration if ready. Use when projects outgrow the routing model.
Determine the single best next action based on current project state. Reads GSD state, SP plans, and git context to suggest exactly one command to run.
Show current project state across GSD and Superpowers systems. Reads .planning/, docs/plans/, and git state to give a unified view of where you are and what to do next.
| name | torque:check |
| description | Verify GSD and Superpowers installation, detect version mismatches, and flag common misconfigurations. Run this when things aren't working as expected. |
Verify that GSD and Superpowers are installed correctly and the current project has no configuration conflicts.
# 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
# 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
# Verify this skill is properly installed
ls ~/.claude/skills/torque/SKILL.md 2>/dev/null && echo "TORQUE_INSTALLED=true" || echo "TORQUE_INSTALLED=false"
Run these checks in the current working directory:
.planning/ AND docs/plans/ exist.planning/ exists but has no PROJECT.md (manually created).planning/STATE.md references a phase that doesn't have a directoryVERIFICATION.md but no code review was done (check git log for review commits)## Torque Health Check
### Dependencies
| System | Status | Version |
|--------|--------|---------|
| GSD | ✓ Installed | 1.34.2 |
| Superpowers | ✓ Installed (8/8 core skills) | — |
| Torque | ✓ Installed | 0.3.0 |
### Project Checks
✓ Plan location is consistent (.planning/ only)
✓ STATE.md references valid phases
✗ Phase 2 was verified but never code-reviewed
### Recommendations
- Run `requesting-code-review` for Phase 2 before merging
If a dependency is missing:
### Dependencies
| System | Status | Version |
|--------|--------|---------|
| GSD | ✗ NOT FOUND | — |
### How to Install
GSD: https://github.com/cline/gsd
Superpowers: https://github.com/obra/superpowers