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/vstorm-co/full-stack-ai-agent-template/agents-mdgit clone --depth 1 https://github.com/vstorm-co/full-stack-ai-agent-templateWrote 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/vstorm-co/full-stack-ai-agent-template/agents-md)<a href="https://agentmods.dev/instructions/vstorm-co/full-stack-ai-agent-template/agents-md"><img src="https://agentmods.dev/badge/instructions/vstorm-co/full-stack-ai-agent-template/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.00979 | $0.00979 |
| Opus 5 | $0.00490 | $0.00490 |
| Sonnet 5 | $0.00196 | $0.00196 |
| Haiku 4.5 | $0.00098 | $0.00098 |
Grade A, and why
full-stack-ai-agent-template 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 4d 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 — 99 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Guidance for AI coding agents (Codex, Copilot, Cursor, Zed, OpenCode) working with this repository.
Project Overview
Full-Stack AI Agent Template — CLI tool that generates production-ready FastAPI + Next.js projects with AI agents (5 frameworks), RAG (4 vector stores), and 20+ enterprise integrations.
Commands
uv sync # Install dependencies
uv run pytest # Run tests
uv run ruff check . --fix # Lint
uv run ruff format . # Format
uv run ty check # Type check
CLI
fastapi-fullstack # Interactive wizard (default)
fastapi-fullstack create my_app --database postgresql
fastapi-fullstack create my_app --rag --task-queue celery
fastapi-fullstack templates # List all options
Generated project CLI includes sync source commands:
uv run <project_slug> cmd rag-sources # List configured sources
uv run <project_slug> cmd rag-source-add # Add a new source
uv run <project_slug> cmd rag-source-sync # Trigger sync for a source
Architecture
| Module | Purpose |
|---|---|
fastapi_gen/cli.py |
Click CLI: new, create, templates |
fastapi_gen/config.py |
Pydantic models, enums, validation, cookiecutter context |
fastapi_gen/prompts.py |
Interactive prompts (Questionary) |
fastapi_gen/generator.py |
Cookiecutter invocation |
Template (template/)
template/
├── cookiecutter.json # ~120 variables
├── hooks/post_gen_project.py # Cleanup & formatting
└── {{cookiecutter.project_slug}}/
├── backend/app/ # FastAPI (agents, rag, services, repos)
└── frontend/ # Next.js 15 (optional)
Jinja2 conditionals: {%- if cookiecutter.enable_rag %}...{%- endif %}
Key Features
- 5 AI Frameworks: PydanticAI, PydanticDeep, LangChain, LangGraph, DeepAgents
- 4 LLM Providers: OpenAI, Anthropic, Google Gemini, OpenRouter
- RAG: 4 vector stores (Milvus, Qdrant, ChromaDB, pgvector), 4 embedding providers, reranking, image description
- Document Sources: Local files (CLI), API upload, Google Drive (service account), S3/MinIO
- Sync Sources: Configurable connectors (Google Drive, S3) with scheduled sync
- PDF Parsers: PyMuPDF, LiteParse, LlamaParse (runtime selection via env var)
- Observability: Logfire (PydanticAI), LangSmith (LangChain/LangGraph/DeepAgents)
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.
- 4d ago First seen · 99 lines · 979 tokens per session scan A 4420a31bca74
full-stack-ai-agent-template AGENTS.md is an instructions file published in the GitHub repository vstorm-co/full-stack-ai-agent-template (1,862 stars, last pushed 5d ago), licensed MIT. It adds 979 tokens to every session, about $0.0049 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
flight-finder CLAUDE.md
Claude Code instructions for affromero/flight-finder, covering claude.md — flight finder, tech stack, monorepo, environment variables and build commands.
flight-finder AGENTS.md
AGENTS.md instructions for affromero/flight-finder, covering agents.md, stack, setup, checks (run before every commit and pr) and or individually.
OpenNotebookLM AGENTS.md
AGENTS.md instructions for tom1030507/OpenNotebookLM, covering repository guidelines, project structure & module organization, build, test, and development commands, coding style & naming conventions and testing guidelines.
conductai copilot-instructions.md
Copilot instructions for sseshachala/conductai, covering conductguard policy and conductguard policy.
conductai CLAUDE.md
Claude Code instructions for sseshachala/conductai, covering conduct, about, agent work — always-on watchdog, rtk (rust token killer) - token-optimized commands and golden rule.
conductai AGENTS.md
AGENTS.md instructions for sseshachala/conductai, covering rtk (rust token killer) - token-optimized commands, golden rule, ❌ wrong, ✅ correct and rtk commands by workflow.