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 instructions/gsd-build/get-shit-done/agents-mdgit clone --depth 1 https://github.com/gsd-build/get-shit-doneWrote 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.
[](https://agentmods.dev/instructions/gsd-build/get-shit-done/agents-md)<a href="https://agentmods.dev/instructions/gsd-build/get-shit-done/agents-md"><img src="https://agentmods.dev/badge/instructions/gsd-build/get-shit-done/agents-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00739 | $0.00739 |
| Opus 5 | $0.00369 | $0.00369 |
| Sonnet 5 | $0.00148 | $0.00148 |
| Haiku 4.5 | $0.00074 | $0.00074 |
Grade A, and why
get-shit-done AGENTS.md 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 5d 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.
How it starts
The opening of the file, as written. The whole thing — 42 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Repository Guidelines
Active Discussions
For current work on Grok Build compatibility and multi-runtime synchronization across Grok Build, Claude Code, Gemini CLI, and Codex, see:
docs/discussions/grok-build-support-2026-05.md
Project Structure & Module Organization
This repository ships GSD as a Node.js CLI and SDK. Root package entry points live in bin/, scripts in scripts/, runtime hooks in hooks/, command definitions in commands/gsd/, and workflow/template content in get-shit-done/. Agent role files are in agents/; docs are in docs/; logos and terminal images are in assets/. Root tests are in tests/*.test.cjs. The TypeScript SDK is isolated under sdk/, with source and Vitest tests in sdk/src/.
Build, Test, and Development Commands
Use Node.js >=22.
npm install: install root dependencies.npm test: builds the SDK first, then runs rootnode:testsuites viascripts/run-tests.cjs.npm run test:coverage: runs root tests withc8and enforces 70% line coverage for included CommonJS library files.npm run build:hooks: rebuilds generated hook artifacts.npm run build:sdk: installs SDK dependencies and builds TypeScript.cd sdk && npm test: runs SDK Vitest unit and integration projects.cd sdk && npm run build: type-checks and emitssdk/dist/.
Coding Style & Naming Conventions
Match the existing style in the edited area. Root JavaScript is CommonJS, generally strict-mode, two-space indentation, semicolons, const/let, and node: imports for built-ins. SDK code is strict TypeScript using ESM/NodeNext. Keep command, workflow, and test filenames kebab-case, for example commands/gsd/plan-phase.md and tests/bug-2396-makefile-test-priority.test.cjs. Agent files use gsd-*.md. Avoid unrelated formatting and unnecessary dependencies.
Testing Guidelines
Root tests use Node’s built-in node:test and node:assert/strict; do not add Jest, Mocha, or Chai. Prefer helpers from tests/helpers.cjs for temporary projects, cleanup, and CLI execution. Name root tests *.test.cjs; run one with node --test tests/name.test.cjs. SDK tests use Vitest with *.test.ts for unit tests and *.integration.test.ts for integration tests.
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.
- 5d ago First seen · 42 lines · 739 tokens per session scan A 9b4210dcd0ff
get-shit-done AGENTS.md is an instructions file published in the GitHub repository gsd-build/get-shit-done (64,600 stars, last pushed 3mo ago), licensed MIT. It adds 739 tokens to every session, about $0.0037 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.
Other instructions, from other repositories
gsd-core GEMINI.md
Gemini CLI instructions for open-gsd/gsd-core, covering gsd core — antigravity cli context, what gsd is, the slash commands (installed separately) and working with gsd.
get-shit-done-multi copilot-instructions.md
Copilot instructions for shoootyou/get-shit-done-multi, a project described as: Fork of Get Shit Done (TÂCHES) with multi-CLI support. Spec-driven development workflows for Claude, Copilot, and Codex with unified project state.
get-shit-done-multi CLAUDE.md
Claude Code instructions for shoootyou/get-shit-done-multi, a project described as: Fork of Get Shit Done (TÂCHES) with multi-CLI support. Spec-driven development workflows for Claude, Copilot, and Codex with unified project state.
get-shit-done-multi AGENTS.md
AGENTS.md instructions for shoootyou/get-shit-done-multi, a project described as: Fork of Get Shit Done (TÂCHES) with multi-CLI support. Spec-driven development workflows for Claude, Copilot, and Codex with unified project state.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).