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/astandrik/gravity-ai-ui/agents-mdgit clone --depth 1 https://github.com/astandrik/gravity-ai-uiWrote 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/astandrik/gravity-ai-ui/agents-md)<a href="https://agentmods.dev/instructions/astandrik/gravity-ai-ui/agents-md"><img src="https://agentmods.dev/badge/instructions/astandrik/gravity-ai-ui/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.00586 | $0.00586 |
| Opus 5 | $0.00293 | $0.00293 |
| Sonnet 5 | $0.00117 | $0.00117 |
| Haiku 4.5 | $0.00059 | $0.00059 |
Grade A, and why
gravity-ai-ui 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 — 62 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Precedence: the closest AGENTS.md to the files you edit wins. Root defines repo-wide defaults.
Commands
| Task | Command |
|---|---|
| Install deps | npm install |
| Dev server | npm run dev -- --port 3000 |
| Typecheck | npm run typecheck |
| Lint | npm run lint |
| Test | npm test |
| Build | npm run build |
| Generate Gravity capabilities | npm run generate:gravity-capabilities |
| Check Gravity capabilities | npm run check:gravity-capabilities |
Stack
- Next.js 16 App Router on React 19
- TypeScript strict with
@/*mapped tosrc/* - Gravity UI components and theme provider
- A2UI trusted renderer with curated Gravity component registry
- SCSS with global tokens and adjacent component styles
- npm and Node 24
Workflow
- Read nearest
AGENTS.mdbefore editing. - For
src/**, check./src/AGENTS.md. - Prefer server components. Add
"use client"only for hooks, browser APIs, or direct interactivity. - Run the smallest relevant check after each change.
- For Gravity UI capability/doc changes, regenerate or check generated capability files before relying on prompt/component metadata.
- Before claiming completion, provide evidence from lint, tests, typecheck, build, or browser verification.
File Map
src/app/ -> Next App Router pages, layouts, providers
src/components/ -> reusable UI components
src/lib/agent/ -> OpenAI tool flow, A2UI schemas, composed payload builder, React export
src/styles/ -> global SCSS variables, mixins, utilities, overrides
public/ -> static assets
Boundaries
- Keep diffs small and local to the requested feature.
- Reuse existing Gravity UI exports from
src/components/GravityUI/GravityUI.tsx. - Use
@/imports for internal modules. - Do not reintroduce fixed interface templates; use the composed A2UI component tree path.
- Do not edit
.next/,node_modules/, or.playwright-mcp/. - Ask before adding production dependencies unless the task explicitly requires them.
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 · 62 lines · 586 tokens per session scan A a79e59b7a3ca
gravity-ai-ui AGENTS.md is an instructions file published in the GitHub repository astandrik/gravity-ai-ui (2 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 586 tokens to every session, about $0.0029 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
webmcp-react AGENTS.md
AGENTS.md instructions for agentcathq/webmcp-react, covering agents.md, reference, commands, project structure and architecture decisions — don't "fix" these.
generative-ui-playground CLAUDE.md
Claude Code instructions for CopilotKit/generative-ui-playground, covering ui protocols demo, architecture overview, three protocols, 1. static genui and 2. mcp apps.
angular-a2ui-macroquest AGENTS.md
AGENTS.md instructions for Soverius-AI/angular-a2ui-macroquest: MacroQuest is an Angular 22 demonstration application for CopilotKit Angular, A2UI, Open Generative UI, and NgRx Signal Store. Keep implementation changes small, visible, and reliable enough for a live talk.
ai AGENTS.md
AGENTS.md instructions for vercel/ai, covering agents.md, project overview, repository structure, key directories and core package dependencies.
openrouter-mcp-multimodal AGENTS.md
AGENTS.md instructions for stabgan/openrouter-mcp-multimodal, covering agent instructions, before you ship, releasing (read this before publishing), short version and version files (must all match package.json).
seekstone CLAUDE.md
Claude Code instructions for shaqmughal/seekstone, covering claude.md, what this repo is, commands, the harness itself (run after npm install) and architecture.