Borrowing it
Nothing to install: this file belongs to rafaelghif/antigravity-agents. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/rafaelghif/antigravity-agents/main/AGENTS.mdgit clone --depth 1 https://github.com/rafaelghif/antigravity-agentsWrote 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/rafaelghif/antigravity-agents/agents-md)<a href="https://agentmods.dev/instructions/rafaelghif/antigravity-agents/agents-md"><img src="https://agentmods.dev/badge/instructions/rafaelghif/antigravity-agents/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.01580 | $0.01580 |
| Opus 5 | $0.00790 | $0.00790 |
| Sonnet 5 | $0.00316 | $0.00316 |
| Haiku 4.5 | $0.00158 | $0.00158 |
Grade A, and why
antigravity-agents 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 yesterday.
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 — 67 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AAC Always-On Workspace Policy
<CORE_CONSTRAINTS>
- [ANTI-HALLUCINATE] ALWAYS run
python3 scripts/grounding.pyand inspect target files viaview_fileBEFORE coding. Never assume APIs/signatures. Cite file:line for assertions. Map blast radius:python3 scripts/semantic_grapher.py blast-radius <file>or grep/rg. - [ZERO_MISSING_TASK] Deconstruct requests into atomic IDs (
[REQ-1],[REQ-2]). Present complete Requirement Traceability Matrix linking every REQ-ID to its implementation and passing unit test before completion. - [SAFE_REFACTOR] Strictly additive and backward-compatible. Refactor via Expand-Contract or atomic deprecation; never break features or delete code without 100% test parity. Zero dead code duplication.
- [TARGET_FOCUS] 100% engineering bandwidth ships consumer project features. Never modify harness internals (
.agents/,scripts/) unless explicitly instructed. - [UNIVERSAL_STACK] 100% Language-agnostic: Python, TS/JS, Go, Rust, Java/Kotlin, C#, PHP, Ruby, C++, Dart, Swift. Respect project conventions.
- [DRY_TOKENS] Telegraphic, high-density responses. Mouth smaller, brain bigger. Link to files instead of dumping snippets.
- [CLI_OVER_SCRIPT] Prefer existing CLI tools (git, pytest, rg, fd). Use
scripts/guards for workspace quality gates. - [VERIFY]
python3 scripts/verify.py --execute --terseMUST pass with zero regressions before claiming completion. Dry-run without--executeis strictly invalid. - [NO_MOCKS] 100% complete byte-exact production code (zero TODOs/stubs). Unit test mocks strictly restricted to external I/O boundaries.
- [GIT] Conventional Commits only. Minimal Delta. </CORE_CONSTRAINTS>
<SKILL_TRIGGERS>
CRITICAL: Read relevant .agents/skills/<name>/SKILL.md before acting. Do not duplicate rules here.
architecture: System design, RFC 7807 contracts, outbox resilience, blast radius (semantic_grapher.py), task DAG (hermes_manager.py)code-quality: SOLID, clean architecture, early returns, DRY (dry_guard.py), complexity (complexity_analyzer.py), review (auto_reviewer.py)data-engineering: Zero-downtime expand-contract migrations, concurrent DDL, ETL, CDCdesign: UI components, DTCG tokens, WCAG 2.2 AA a11y (ui_hygiene_guard.py), Core Web Vitalsdevops: Docker, K8s, CI/CD pipelines (dag_orchestrator.py), Git hygiene (git_hygiene_guard.py), PR submission (auto_reviewer.py)security: Zero-Trust, secrets, PBAC/RBAC, input sanitization, secret scanning (git_hygiene_guard.py)verification: TDD, boundary validation, property tests, anti-sham (test_quality_guard.py), verification runner (verify.py)observability: Metrics, OpenTelemetry distributed tracing, structured logging, audit trails (inbox_manager.py report)deep-research: Epistemic web research, official documentation lookup, API contracts, local stack ground (grounding.py)semantic-graphing: Blast radius analysis, AST knowledge graph, PageRank centrality (semantic_grapher.py)caveman: Token economy, high-density telegraphic responses, byte-exact output </SKILL_TRIGGERS>
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.
- yesterday Changed · -26 lines · -189 tokens per session scan C → A 320ca7fe47ad
- 6d ago First seen · 93 lines · 1,769 tokens per session scan C f78e42f62d9f
antigravity-agents AGENTS.md is an instructions file published in the GitHub repository rafaelghif/antigravity-agents (5 stars, last pushed yesterday), licensed MIT. It adds 1,580 tokens to every session, about $0.0079 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-31.
Other instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
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).
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.