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/jvidalv/vital/agents-mdgit clone --depth 1 https://github.com/jvidalv/vitalWrote 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/jvidalv/vital/agents-md)<a href="https://agentmods.dev/instructions/jvidalv/vital/agents-md"><img src="https://agentmods.dev/badge/instructions/jvidalv/vital/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 | $0.04263 | $0.04263 |
| Opus 5 | $0.02132 | $0.02132 |
| Sonnet 5 | $0.00853 | $0.00853 |
| Haiku 4.5 | $0.00426 | $0.00426 |
Grade A, and why
vital 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 — 767 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AI Agent Development Guide
This guide helps AI agents build features and components for the Vital project efficiently and consistently.
Quick Reference
- Architecture: Atomic Design (atoms → molecules → organisms → templates → pages)
- Styling: Tailwind CSS v4 (inline utility classes)
- TypeScript: Strict mode, use
forwardRefandComponentProps - Imports: Use path aliases (
components/*,app/*,hooks/*) - Commits: Conventional commits format
Component Creation Workflow
Step 1: Determine Component Level
Ask yourself:
Is it an Atom?
- Single, standalone UI element
- No other components inside (except maybe icons)
- Highly reusable
- Examples: Button, Input, Badge, Avatar, Icon
Is it a Molecule?
- Combines 2-3 atoms
- Serves a single, clear purpose
- Examples: SearchBox (input + button), FormField (label + input + error), MenuItem (icon + text)
Is it an Organism?
- Complex, feature-rich component
- Contains multiple molecules and/or atoms
- Often domain-specific
- Examples: Header, Card, Form, Navigation, ProductCard
Is it a Template?
- Page layout structure
- Defines content areas
- No actual content, just placeholders
- Examples: DashboardLayout, AuthLayout
Is it a Page?
- Specific instance of a template
- Contains real content
- Examples: HomePage, LoginPage, UserProfilePage
Step 2: Create Component Files
Directory Structure
# Atoms
src/components/atoms/{component-name}/
├── {component-name}.tsx
└── index.ts
# Molecules
src/components/molecules/{component-name}/
├── {component-name}.tsx
└── index.ts
# Organisms
src/components/organisms/{component-name}/
├── {component-name}.tsx
└── index.ts
File Naming
- Use kebab-case for directories:
copy-button,user-card,search-input - Use kebab-case for files:
copy-button.tsx, notCopyButton.tsx - Component name is PascalCase:
const CopyButton = ...
Step 3: Component Implementation
Template for Simple Atoms
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 · 767 lines · 4,263 tokens per session scan A 886535ee7a1c
vital AGENTS.md is an instructions file published in the GitHub repository jvidalv/vital (292 stars, last pushed 5mo ago), licensed MIT. It adds 4,263 tokens to every session, about $0.0213 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
weapp-tailwindcss CLAUDE.md
Claude Code instructions for sonofmagic/weapp-tailwindcss, covering claude.md, project overview, monorepo structure, common development commands and build.
weapp-tailwindcss AGENTS.md
AGENTS.md instructions for sonofmagic/weapp-tailwindcss, covering repository guidelines (root short version), 适用范围与优先级, 全局硬规则, 多 codex / 多代理协作 and 仓库常用命令.
react-seed AGENTS.md
Instructions for guokaigdg/react-seed, covering agents.md, 目录, 1. 项目概览, 2. 技术栈 and 3. 目录结构.
vuestrata AGENTS.md
Instructions for boussadjra/vuestrata, covering using vite+, the unified toolchain for the web, built-in commands vs scripts, tool versions, review checklist and vuestrata project rules.
vuestrata CLAUDE.md
Instructions for boussadjra/vuestrata, covering claude.md, the one thing that trips people up, slash commands, verifying and testing reka-backed components.
vuestrata copilot-instructions.md
Instructions for boussadjra/vuestrata, covering copilot instructions, copilot-specific notes and before you finish.