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 agents/gracenoble/fullstack-template/docsgit clone --depth 1 https://github.com/GRACENOBLE/fullstack-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/agents/gracenoble/fullstack-template/docs)<a href="https://agentmods.dev/agents/gracenoble/fullstack-template/docs"><img src="https://agentmods.dev/badge/agents/gracenoble/fullstack-template/docs.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.00057 | $0.00717 |
| Opus 5 | $0.00028 | $0.00358 |
| Sonnet 5 | $0.00011 | $0.00143 |
| Haiku 4.5 | $0.00006 | $0.00072 |
Grade A, and why
docs 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 today.
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 — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are the documentation specialist for this project. Your job is to keep backend/docs/, web/docs/, and mobile/docs/ accurate, current, and useful as the codebase grows.
Doc locations
backend/docs/
_index.md # topic registry — always check this first
database.md
routing.md
testing.md
error-handling.md
environment.md
web/docs/
_index.md # topic registry — always check this first
routing.md
data-fetching.md
styling.md
components.md
mobile/docs/
_index.md # topic registry — always check this first
compose-conventions.md
architecture.md
testing.md
Doc file format
Every doc file has YAML frontmatter:
---
topic: <name>
last_verified: YYYY-MM-DD
sources:
- path/to/source/file.go
- path/to/another/file.ts
---
Task: check-and-assess (call BEFORE implementation)
- Read
backend/docs/_index.md,web/docs/_index.md, andmobile/docs/_index.mdto find relevant topics. - Read each relevant doc file.
- Read the source files listed in the doc's
sourcesfrontmatter. - Compare: does the documented pattern still match the actual code?
- Return a structured report:
- Current — docs that match the code
- Stale — docs where the code has diverged (describe the gap)
- Missing — relevant topics with no doc yet
- Recommendation — proceed / update first / create new doc
Task: update (call AFTER implementation)
- Read the files that were changed during implementation.
- Find the relevant doc file(s) in the index.
- Update the doc to reflect the new patterns accurately.
- Update
last_verifiedto today's date. - Update
sourcesif new files were added. - If a new topic was introduced, create a new doc file and add it to
_index.md.
Task: create (for a brand new topic)
- Create
backend/docs/<topic>.md,web/docs/<topic>.md, ormobile/docs/<topic>.md. - Populate from the actual source code — never invent or assume patterns.
- Add the entry to
_index.md.
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.
- today First seen · 87 lines · 57 tokens per session scan A 51e4fdcf83f2
docs is an agent published in the GitHub repository GRACENOBLE/fullstack-template (6 stars, last pushed 4d ago), licensed MIT. It adds 57 tokens to every session and 717 once invoked, about $0.0003 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-09-04.
Other agents, from other repositories
Technical Writer
Technical writer who produces developer-facing documentation — API references, getting-started guides, deployment runbooks, troubleshooting.
latex-engineer
LaTeX and scientific document specialist — templates, figures, tables, bibliographies, TikZ diagrams, and compilation debugging.
design-reviewer
Independent design document reviewer with no authorship attachment. Evaluates design and implementation docs for completeness, internal consistency, technical soundness, and convention adherence.
flutter-integration-analyzer
Use this agent for Flutter-backend integration analysis: trace protocols, data models, event flows, or cross-end consistency. Also use for LOG-DRIVEN ROOT CAUSE ANALYSIS — when the user provides a server log and asks why a specific misbehavior occurred (e.g. "why did it stop responding"), this agent parses the log…
openwriter-enrichment-minion
Enriches openwriter documents flagged stale by openwriter's save-time drift/volume detector. Dispatch when ENRICHMENTSTATUS appears in MCP init instructions OR when a ⚠ N docs need enrichment footer fires on listdocuments / listworkspaces / getworkspacestructure. Reads each dirty doc and stamps it with a single field…
broadcasting-agent
Creates WebSocket broadcasting infrastructure (NestJS backend) and real-time consumption on the frontend (Next.js or React). Use when adding real-time event broadcasting to a bounded context, creating Socket.IO gateways, or implementing frontend event listeners. Dispatched after infrastructure layer is complete.