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/m4tt72/terminal/agents-mdgit clone --depth 1 https://github.com/m4tt72/terminalWhat 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.01211 | $0.01211 |
| Opus 5 | $0.00606 | $0.00606 |
| Sonnet 5 | $0.00242 | $0.00242 |
| Haiku 4.5 | $0.00121 | $0.00121 |
Grade A, and why
terminal 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 — 122 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md - Repository Guide for Agentic Coding
This file contains essential information for agentic coding agents working in this repository.
Project Overview
- Framework: Svelte 4 + TypeScript + Vite
- Styling: Tailwind CSS
- Type Checking: TypeScript with
svelte-check - Node Version: >=18.17.0
Commands
Development
npm run dev- Start dev server (port 3000)npm run build- Build for productionnpm run preview- Preview production buildnpm run check- Run Svelte type checking
Testing
npm run test- Run unit/component tests oncenpm run test:ui- Run tests with Vitest UInpm run test:watch- Run tests in watch modenpm run test:coverage- Generate coverage report (85%+ target)npm run test:e2e- Run E2E tests (Playwright, headless)npm run test:e2e:ui- Run E2E tests with Playwright UInpm run test:e2e:headed- Run E2E tests in headed browsernpm run test:all- Run all tests (unit + E2E)
Running Single Test
- Unit/component:
vitest run [filename]orvitest run -t [test-name] - E2E:
npx playwright test [filename]ornpx playwright test -g [test-name]
Pre-commit Hook
Tests run automatically on pre-commit for staged TypeScript/Svelte files using husky + lint-staged.
Coverage
Target: 85%+ across all files. View coverage report in coverage/index.html.
Code Style Guidelines
File Structure & Naming
- Components: PascalCase (
src/components/History.svelte) - Utilities: lowercase (
src/utils/commands.ts) - Stores:
src/stores/[name].tspattern - Interfaces:
src/interfaces/[name].tspattern - Entry point:
src/main.ts
Imports
- Use single quotes for all import paths
- Svelte imports use named imports from specific packages:
import { writable } from 'svelte/store'; import { onMount, afterUpdate } from 'svelte'; - Relative imports use
./or../notation - JSON imports are supported:
import themes from '../../themes.json';
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 · 122 lines · 1,211 tokens per session scan A 876911a0dd92
terminal AGENTS.md is an instructions file published in the GitHub repository m4tt72/terminal (1,561 stars, last pushed 13d ago), licensed MIT. It adds 1,211 tokens to every session, about $0.0061 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
personal-site AGENTS.md
Instructions for mldangelo/personal-site, covering agents.md, quick commands, project structure, code style and git workflow.
Claw3D AGENTS.md
Instructions for iamlukethedev/Claw3D, covering agent instructions, cursor cloud specific instructions, service overview, running the app and lint, typecheck, and tests.
devportfolio CLAUDE.md
Instructions for RyanFitzgerald/devportfolio, covering claude.md, project overview, tech stack, development commands and architecture.
pdflokal CLAUDE.md
Claude Code instructions for ojanlubis/pdflokal, covering pdflokal — app/ (the bench: all code execution), hard constraints, the tree, the seo generator's split is load-bearing and tokens and theming.
personal-site CLAUDE.md
Instructions for mldangelo/personal-site, a project described as: My personal website - built with Next for Static-Export, and GitHub Pages.
ikuyo AGENTS.md
AGENTS.md instructions for haikelz/ikuyo, covering ikuyo agent guide, start every request here, read-only requests, change requests and repository map.