Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/mattjaikaran/torque/checknpx skills add mattjaikaran/torque --skill checkgit clone --depth 1 https://github.com/mattjaikaran/torqueWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00034 | $0.00830 |
| Opus 5 | $0.00017 | $0.00415 |
| Sonnet 5 | $0.00007 | $0.00166 |
| Haiku 4.5 | $0.00003 | $0.00083 |
Grade C, and why
torque:check scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
cat ~/.claude/get-shit-done/VERSION 2>/dev/null || echo "GSD_VERSION=unknown" Enumerates other installed skillsmediumAgent snooping
Other skills' SKILL.md files reveal prompts, capabilities and secrets that should be invisible to peers.
ls ~/.claude/skills/gsd-* 2>/dev/null | head -5 How it starts
The opening of the file, as written. The whole thing — 103 lines — stays where its author put it; the contents beside it link to each section on GitHub.
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
# 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
# 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
# Verify this skill is properly installed
ls ~/.claude/skills/torque/SKILL.md 2>/dev/null && echo "TORQUE_INSTALLED=true" || echo "TORQUE_INSTALLED=false"
Step 4: Project-level checks
Run these checks in the current working directory:
- Mixed plan locations: Flag if both
.planning/ANDdocs/plans/exist - Orphaned .planning/: Flag if
.planning/exists but has noPROJECT.md(manually created) - Stale state: Flag if
.planning/STATE.mdreferences a phase that doesn't have a directory - Missing reviews: Flag if any phase has
VERIFICATION.mdbut no code review was done (check git log for review commits)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 103 lines · 34 tokens per session scan C fb30d80b13cc
torque:check is a skill published in the GitHub repository mattjaikaran/torque (6 stars, last pushed 4mo ago), licensed MIT. It adds 34 tokens to every session and 830 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 2 findings (reads agent configuration directories, enumerates other installed skills). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
etsy-category-listing
Etsy category page scraper: given an Etsy category URL (e.g. https://www.etsy.com/c/jewelry) and optional page number, returns paginated product listings with listingId, shopId, title, url, image, salePrice, originalPrice, currency, rating, reviewCount, shopName, isAd, freeShipping, badge from category and subcategory…
agent-memory
../../../engineering/agent-memory/skills/agent-memory/SKILL.md.
agile-product-owner
../../../product-team/agile-product-owner/skills/agile-product-owner/SKILL.md.
amazon-reviews-api-skill
This skill helps users automatically extract Amazon product reviews via the Amazon Reviews API. Agent should proactively apply this skill when users express needs like getting reviews for Amazon product with ASIN B07TS6R1SF, analyzing customer feedback for a specific Amazon item, getting ratings and comments for a…
amazon-competitor-analyzer
Scrapes Amazon product data from ASINs using browseract.com automation API and performs surgical competitive analysis. Compares specifications, pricing, review quality, and visual strategies to identify competitor moats and vulnerabilities.
research-report
Summarize deep research results into markdown report, cover all fields, skip uncertain values.