get-shit-done-for-antigravity: Skill for Claude Code

.agents/skills/verifier/SKILL.md

verifier is a skill for Claude Code, Codex from toonight/get-shit-done-for-antigravity. It costs 13 tokens per session (2,575 once invoked), scanned A, original, MIT.

A review procedure for checking whether completed software really meets its requirements, including whether code is complete and connected correctly.

In plain words
What is it for?
It helps inspect project plans and previous reviews, check required outcomes and implementation details, and record findings in a VERIFICATION.md file.
Why use it?
It catches unfinished code, false completion claims, and tests that pass without checking the important behavior.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is toonight/get-shit-done-for-antigravity's own configuration. It tells Claude Code and Codex how to work on get-shit-done-for-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 get-shit-done-for-antigravity configures →

Reuse

Borrowing it

Nothing to install: this file belongs to toonight/get-shit-done-for-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/toonight/get-shit-done-for-antigravity/main/.agents/skills/verifier/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/toonight/get-shit-done-for-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 verifier

README.md
[![agentmods](https://agentmods.dev/badge/skills/toonight/get-shit-done-for-antigravity/verifier/github.svg)](https://agentmods.dev/skills/toonight/get-shit-done-for-antigravity/verifier)
Your own site
<a href="https://agentmods.dev/skills/toonight/get-shit-done-for-antigravity/verifier"><img src="https://agentmods.dev/badge/skills/toonight/get-shit-done-for-antigravity/verifier/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 verifier

Your own site · 80×15
<a href="https://agentmods.dev/skills/toonight/get-shit-done-for-antigravity/verifier"><img src="https://agentmods.dev/badge/skills/toonight/get-shit-done-for-antigravity/verifier.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 13 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,575 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00013 $0.02575
Opus 5 $0.00006 $0.01288
Sonnet 5 $0.00003 $0.00515
Haiku 4.5 $0.00001 $0.00258

Measured 11d ago against content hash 564838a4a50c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

verifier 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 11d 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.

.agents/skills/verifier/SKILL.md · 422 lines

How it starts

The opening of the file, as written. The whole thing — 422 lines — stays where its author put it; the contents beside it link to each section on GitHub.

GSD Verifier Agent

Your job: Verify must-haves, detect stubs, identify gaps, and produce VERIFICATION.md with structured findings.


Core Principle

Trust nothing. Verify everything.

  • SUMMARY.md says "completed" → Verify it actually works
  • Code exists → Verify it's substantive, not a stub
  • Function is called → Verify the wiring actually connects
  • Tests pass → Verify they test the right things

Verification Process

Step 0: Check for Previous Verification

Before starting fresh, check if a previous VERIFICATION.md exists:

Get-ChildItem ".gsd/phases/{N}/*-VERIFICATION.md" -ErrorAction SilentlyContinue

If previous verification exists with gaps → RE-VERIFICATION MODE:

  1. Parse previous VERIFICATION.md
  2. Extract must-haves (truths, artifacts, key_links)
  3. Extract gaps (items that failed)
  4. Set is_re_verification = true
  5. Skip to Step 3 with optimization:
    • Failed items: Full 3-level verification
    • Passed items: Quick regression check only

If no previous verification → INITIAL MODE: Set is_re_verification = false, proceed with Step 1.


Step 1: Load Context (Initial Mode Only)

Gather verification context:

# Phase PLANs and SUMMARYs
Get-ChildItem ".gsd/phases/{N}/*-PLAN.md"
Get-ChildItem ".gsd/phases/{N}/*-SUMMARY.md"

# Phase goal from ROADMAP
Select-String -Path ".gsd/ROADMAP.md" -Pattern "Phase {N}"

Extract phase goal from ROADMAP.md. This is the outcome to verify, not the tasks.


Step 2: Establish Must-Haves (Initial Mode Only)

Option A: Must-haves in PLAN frontmatter

must_haves:
  truths:
    - "User can see existing messages"
    - "User can send a message"
  artifacts:
    - path: "src/components/Chat.tsx"
      provides: "Message list rendering"
  key_links:
    - from: "Chat.tsx"
      to: "api/chat"
      via: "fetch in useEffect"

Read the full file on GitHub · 422 lines

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. 11d ago First seen · 422 lines · 13 tokens per session scan A 564838a4a50c

Subscribe to this mod's changes

verifier is a skill published in the GitHub repository toonight/get-shit-done-for-antigravity (946 stars, last pushed 21d ago), licensed MIT. It adds 13 tokens to every session and 2,575 once invoked, about $0.0001 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

adversarial-reviewer

Adversarial code review that assumes bugs exist and hunts for them. Use when asked to review code, find bugs, audit for correctness, stress-test a PR, or when someone says "tear this apart" or "what's wrong with this". Give no benefit of the doubt — every line is guilty until proven innocent.

emdash-cms/emdash · 71 tokens

go-testing

Trigger: Go tests, go test coverage, Bubbletea teatest, golden files. Apply focused Go testing patterns.

Gentleman-Programming/gentle-ai · 26 tokens

semgrep-rule-variant-creator

Creates language variants of existing Semgrep rules. Use when porting a Semgrep rule to specified target languages. Takes an existing rule and target languages as input, produces independent rule+test directories for each language.

waybarrios/opencode-power-pack · 50 tokens

brooks-sweep

Full-sweep mode: runs a unified analysis across all quality dimensions — code decay, architecture, tech debt, and test quality — then applies fixes directly to the codebase. Safe changes are auto-applied; risky changes are confirmed before execution. Drawing on twelve classic engineering books. Triggers when: user…

hyhmrright/brooks-lint · 178 tokens

include-test-files-that-assert-on-behavior-being-changed-in-decl

When delegating a task affected by this skill, include.

ZaxbyHub/opencode-swarm · 29 tokens

qa-frontend

Internal PostHog developer frontend/browser QA skill. Use only when a PostHog developer explicitly asks to run frontend QA, browser-test a PR, verify a UI flow against the local PostHog stack, use qa-frontend, or QA current frontend changes with browser/runtime evidence. Do not use for generic code review, PR review…

PostHog/posthog · 142 tokens