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

.agents/skills/executor/SKILL.md

executor is a skill for Claude Code, Codex from toonight/get-shit-done-for-antigravity. It costs 20 tokens per session (3,043 once invoked), scanned A, original, MIT.

An AI helper that carries out a GSD plan, where GSD is a workflow for breaking software work into documented steps. It commits each task, writes a summary, and updates project state.

In plain words
What is it for?
It helps load the current project state and plan, execute its tasks, verify the results, create atomic commits, and maintain SUMMARY.md and STATE.md.
Why use it?
It provides a repeatable way to implement planned changes while handling deviations, checkpoints, blockers, and the project’s existing state.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents; 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/executor/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 executor

README.md
[![agentmods](https://agentmods.dev/badge/skills/toonight/get-shit-done-for-antigravity/executor.svg)](https://agentmods.dev/skills/toonight/get-shit-done-for-antigravity/executor)
Your own site
<a href="https://agentmods.dev/skills/toonight/get-shit-done-for-antigravity/executor"><img src="https://agentmods.dev/badge/skills/toonight/get-shit-done-for-antigravity/executor.svg" alt="Measured on agentmods" height="20"></a>
Per session 20 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,043 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.00020 $0.03043
Opus 5 $0.00010 $0.01522
Sonnet 5 $0.00004 $0.00609
Haiku 4.5 $0.00002 $0.00304

Measured 7d ago against content hash 79c4cf513256, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

executor 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 7d 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/executor/SKILL.md · 502 lines

How it starts

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

GSD Executor Agent

You are invoked by the /execute workflow as the gsd-executor subagent, one instance per plan (Antigravity 2.0+). On older versions, /execute applies this skill inline in its own context — the rules below are identical either way, but the context guarantees are not.

Your job: Execute the plan completely, commit each task, create SUMMARY.md, update STATE.md.


Execution Flow

Step 1: Load Project State

Before any operation, read project state:

Get-Content ".gsd/STATE.md" -ErrorAction SilentlyContinue

If file exists: Parse and internalize:

  • Current position (phase, plan, status)
  • Accumulated decisions (constraints on this execution)
  • Blockers/concerns (things to watch for)

If file missing but .gsd/ exists: Reconstruct from existing artifacts.

If .gsd/ doesn't exist: Error — project not initialized.

Step 2: Load Plan

Read the plan file provided in your prompt context.

Parse:

  • Frontmatter (phase, plan, type, autonomous, wave, depends_on)
  • Objective
  • Context files to read
  • Tasks with their types
  • Verification criteria
  • Success criteria

Step 3: Determine Execution Pattern

Pattern A: Fully autonomous (no checkpoints)

  • Execute all tasks sequentially
  • Create SUMMARY.md
  • Commit and report completion

Pattern B: Has checkpoints

  • Execute tasks until checkpoint
  • At checkpoint: STOP and return structured checkpoint message
  • Fresh continuation agent resumes

Pattern C: Continuation (spawned to continue)

  • Check completed tasks in your prompt
  • Verify those commits exist
  • Resume from specified task

Step 4: Execute Tasks

For each task:

  1. Read task type

  2. If type="auto":

    • Work toward task completion
    • If CLI/API returns authentication error → Handle as authentication gate
    • When you discover additional work not in plan → Apply deviation rules
    • Run the verification
    • Confirm done criteria met
    • Commit the task (see Task Commit Protocol)
    • Track completion and commit hash for Summary

Read the full file on GitHub · 502 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. 7d ago First seen · 502 lines · 20 tokens per session scan A 79c4cf513256

Subscribe to this mod's changes

executor is a skill published in the GitHub repository toonight/get-shit-done-for-antigravity (940 stars, last pushed 17d ago), licensed MIT. It adds 20 tokens to every session and 3,043 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.