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/carlos-algms/agentic.nvim/agents-mdgit clone --depth 1 https://github.com/carlos-algms/agentic.nvimWhat 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 | $0.04974 | $0.04974 |
| Opus 5 | $0.02487 | $0.02487 |
| Sonnet 5 | $0.00995 | $0.00995 |
| Haiku 4.5 | $0.00497 | $0.00497 |
Grade A, and why
agentic.nvim 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 3d 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 — 424 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agents Guide
agentic.nvim is a Neovim plugin that emulates Cursor AI IDE behavior, providing AI-driven code assistance through a chat interface.
Nested instructions
Read these before touching the matching area:
lua/agentic/acp/AGENTS.md- ACP client, tool calls, permissions, providerslua/agentic/ui/AGENTS.md- chat UI: topology, lifecycle contracts (open/close/destroy), MessageWriter state machines, tool-call block layout, folding, auto-scroll, permission reanchor, trapstests/AGENTS.md- test framework, TDD workflow, assertions, helpers
Skill driven
This project splits instructions and repetitive workflows into skills.
MANDATORY: Load the related skill before suggesting a solution, writing to lua files, or adding, updating, or creating unit tests.
Skills hold good practices, code standards, and architecture flows that may not match your training data. Load them before assuming your solution is right.
Domain glossary — lazy read
CONTEXT.md (repo root) defines overloaded terms (Session, Agent, Provider,
Tool Call, Diff, etc.). Do NOT pre-read. Grep it for the ambiguous keyword
first; only Read the file if the grep matches. If no match, the term is not in
the glossary — proceed without loading.
Architectural decisions (ADRs) — optional read
docs/adr/ stores Architecture Decision Records. One file per subject,
NNNN-short-slug.md (4-digit). "ADR 2" = 0002-*.md. Full template in
docs/adr/README.md.
Do NOT pre-read. Load only when:
- A rule in
AGENTS.mdis unclear, contested, or looks arbitrary. - You are about to rewrite a subsystem an ADR covers.
- A reviewer asks "why didn't we do X?".
Discovery: grep docs/adr/ for the keyword, read only on match. No match = no
ADR exists.
ADR NNNN cited in a nested AGENTS.md/CONTEXT.md is an implicit match, NOT
an auto-load. Read it only when a trigger above fires. Citation in passing is
not a trigger.
grill-with-docs override
grill-with-docs skill ships a minimal ADR template. Path + 4-digit numbering
match this repo; the template does NOT. Use docs/adr/README.md verbatim. Keep
the Rejected / superseded alternatives table and Changelog. Changelog rows
contain only the date and change summary.
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.
- 3d ago First seen · 424 lines · 4,974 tokens per session scan A 1240bd8e2c71
agentic.nvim AGENTS.md is an instructions file published in the GitHub repository carlos-algms/agentic.nvim (609 stars, last pushed 10d ago), licensed MIT. It adds 4,974 tokens to every session, about $0.0249 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
sidekick.nvim AGENTS.md
Instructions for folke/sidekick.nvim, covering agent cheat sheet, project overview, everyday commands, adding features and writing tests.
fff AGENTS.md
AGENTS.md instructions for dmtrKovalenko/fff, covering to clankers, development commands, building, testing and development tools and code quality.
review.nvim CLAUDE.md
Instructions for vuki656/review.nvim, covering claude.md, commands, lint, run all tests and run a single test file.
minuet-ai.nvim AGENTS.md
AGENTS.md instructions for milanglacier/minuet-ai.nvim, covering agents.md, coding style, writing, comments & docstrings and commit messages & communication.
my-neovim-pluginlist CLAUDE.md
Claude Code instructions for yutkat/my-neovim-pluginlist, covering claude.md, repository overview, repository structure, content organization and plugin categories.
my-neovim-pluginlist AGENTS.md
AGENTS.md instructions for yutkat/my-neovim-pluginlist, covering repository guidelines, project structure & module organization, build, test, and development commands, coding style & naming conventions and testing guidelines.