gemini-superpowers-antigravity: Skill for Claude Code

.agent/skills/superpowers-debug/SKILL.md

superpowers-debug is a skill for Claude Code, Codex from anthonylee991/gemini-superpowers-antigravity. It costs 36 tokens per session (240 once invoked), scanned A, original, MIT.

A step-by-step method for finding and fixing software problems. It reproduces the issue, reduces it to a small example, tests possible causes, applies a fix, and adds a regression test so the problem does not return.

In plain words
What is it for?
Use it for runtime errors, failing or flaky tests, incorrect results, regressions, and initial investigation of slow or timing-out operations.
Why use it?
It replaces guesswork with evidence and preserves the exact failure details needed to verify the solution. A regression test is an automated check for a bug that was already fixed.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

This is anthonylee991/gemini-superpowers-antigravity's own configuration. It tells Claude Code and Codex how to work on gemini-superpowers-antigravity itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything gemini-superpowers-antigravity configures →

Reuse

Borrowing it

Nothing to install: this file belongs to anthonylee991/gemini-superpowers-antigravity. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/anthonylee991/gemini-superpowers-antigravity/main/.agent/skills/superpowers-debug/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/anthonylee991/gemini-superpowers-antigravity

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for superpowers-debug

README.md
[![agentmods](https://agentmods.dev/badge/skills/anthonylee991/gemini-superpowers-antigravity/superpowers-debug/github.svg)](https://agentmods.dev/skills/anthonylee991/gemini-superpowers-antigravity/superpowers-debug)
Your own site
<a href="https://agentmods.dev/skills/anthonylee991/gemini-superpowers-antigravity/superpowers-debug"><img src="https://agentmods.dev/badge/skills/anthonylee991/gemini-superpowers-antigravity/superpowers-debug/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for superpowers-debug

Your own site · 80×15
<a href="https://agentmods.dev/skills/anthonylee991/gemini-superpowers-antigravity/superpowers-debug"><img src="https://agentmods.dev/badge/skills/anthonylee991/gemini-superpowers-antigravity/superpowers-debug.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 240 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00036 $0.00240
Opus 5 $0.00018 $0.00120
Sonnet 5 $0.00007 $0.00048
Haiku 4.5 $0.00004 $0.00024

Measured 9d ago against content hash b9cb58c5df99, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

superpowers-debug scanned grade A with 0 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 9d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agent/skills/superpowers-debug/SKILL.md · 36 lines

What it actually says

Debug Skill

When to use this skill

  • runtime errors, flaky tests, wrong outputs
  • “it used to work” regressions
  • performance or timeout problems (initial triage)

Debug workflow (do not skip steps)

  1. Reproduce
    • Capture exact error, inputs, environment, command.
  2. Minimize
    • Reduce to smallest repro (one file, one function, smallest dataset).
  3. Hypotheses (2–5)
    • Rank by likelihood.
  4. Instrument
    • Add temporary logging/assertions or use existing diagnostics.
  5. Fix
    • Smallest change that removes root cause.
  6. Prevent
    • Add regression test or permanent guard/validation.
  7. Verify
    • Run the failing case + relevant suites.

Reporting format

  • Symptom
  • Repro steps
  • Root cause
  • Fix
  • Regression protection
  • Verification
Changes

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.

  1. 9d ago First seen · 36 lines · 0 tokens per session scan A b9cb58c5df99

Subscribe to this mod's changes

superpowers-debug is a skill published in the GitHub repository anthonylee991/gemini-superpowers-antigravity (828 stars, last pushed 7mo ago), licensed MIT. It adds 36 tokens to every session and 240 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

testing

Skill validation framework PLUS daily test-suite health and regression intelligence. Validates skill conformance (frontmatter, manifest coverage, resolver coverage). Runs the project test suite in tiered phases (unit / evals / integration / system health), classifies failures, and produces a regression-aware report.

garrytan/gbrain · 63 tokens

verify

Verify that a change really works before you claim completion.

Yeachan-Heo/oh-my-claudecode · 12 tokens

detect-static-dependencies

Scan C# source files for hard-to-test static dependencies — DateTime.Now/UtcNow, File., Directory., Environment., HttpClient, Console., Process., and other untestable statics. Produces a ranked report of static call sites by frequency. USE FOR: find untestable statics, scan for static dependencies, testability audit…

dotnet/skills · 143 tokens

experiment-iterative-coder

Iterative code refinement through plan → code → evaluate → refine cycles. Runs lint checks (ruff), tests (pytest), and structured self-evaluation each cycle, then diagnoses failures and refines. Decomposes complex tasks into sequential phases, iterates up to 3 times per phase (10 total). Use when: the main agent…

EvoScientist/EvoSkills · 145 tokens

testing-blocks

Use this when you have made AEM Edge Delivery Services code changes to blocks, scripts, or styles and need to validate them before opening a pull request. Covers unit testing for utilities and logic, browser testing with Playwright, linting, and guidance on what to test and how.

adobe/skills · 61 tokens

symbolic-execution-assistant

Performs symbolic execution to detect potential errors by exploring execution paths, solving path constraints, and generating test inputs. Use when you need to analyze code for bugs like null dereferences, division by zero, buffer overflows, or assertion violations. Also use to generate test inputs that exercise…

ArabelaTso/Skills-4-SE · 111 tokens