torque:check — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited torque:check (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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 mergingIf 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~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.