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.
git clone --depth 1 https://github.com/louisbrulenaudet/monorepo-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/rules/louisbrulenaudet/monorepo-template/frontend-architecture)<a href="https://agentmods.dev/rules/louisbrulenaudet/monorepo-template/frontend-architecture"><img src="https://agentmods.dev/badge/rules/louisbrulenaudet/monorepo-template/frontend-architecture/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/rules/louisbrulenaudet/monorepo-template/frontend-architecture"><img src="https://agentmods.dev/badge/rules/louisbrulenaudet/monorepo-template/frontend-architecture.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00000 | $0.01469 |
| Opus 5 | $0.00000 | $0.00734 |
| Sonnet 5 | $0.00000 | $0.00294 |
| Haiku 4.5 | $0.00000 | $0.00147 |
Grade A, and why
frontend-architecture 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 10d 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 — 50 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Frontend Architecture (Vite + React) Rules
Cross-cutting scaffolding for the React SPAs. Component/hook authoring is in react.mdc; server state in tanstack-query.mdc; routing in tanstack-router.mdc. This file is the wiring between them.
Directory layout
- Thin route shells under
src/routes/(file-based - see tanstack-router.mdc) hold loaders, guards, and search validation; the code-split UI entry is the pairedsrc/routes/*.lazy.tsx, and the actual screen lives insrc/pages/(imported by the lazy route). Shared UI sits insrc/components/(with primitives insrc/components/ui/); non-render logic insrc/hooks/,src/services/,src/utils/; frontend-only enums insrc/enums/; runtime config insrc/config/(env.ts,query-client.ts). - HTTP calls and their
queryOptionslive together undersrc/services/worker-api/(<feature>.ts+<feature>-query-options.ts). Wire schemas are not redefined here - they come from@repo/dtos-common. - Colocate feature code (route + its queries + its components) over deep global folders. Use package.json
"imports"(#/*→./src/*) for in-app absolute imports (e.g.#/components/ui/Button); see vite-config.mdc and the TypeScript config rule. - Filenames stay kebab-case; a React component file may be PascalCase to mirror its export. See naming.mdc.
Vite config
- When editing
vite.config.ts, follow vite-config.mdc - plugin order, Rolldown/Oxc build options, monorepofs.allow, env guards, and generateddist/_headers. - Hook rules (
react/rules-of-hooks,react/exhaustive-deps) are enforced by oxlint, not ESLint - they are configured forapps/front-*/src/**in.oxlintrc.json. Do not add an ESLint/eslint-plugin-react-hookstoolchain;pnpm run ciruns oxlint.
Cloudflare Workers deployment
- These SPAs deploy as static assets + SPA routing on Cloudflare Workers -
@cloudflare/vite-plugininvite.config.ts, deploy settings inwrangler.jsonc. Router/query devtools stay dev-only (see below). - Keep the Vite plugin assets-only for
front-*. Never addauxiliaryWorkersto pull inworker-api, and never co-locate gateway/API routes in the SPA Worker. SPA to gateway remains HTTP only;worker-apistays on Wrangler.
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.
- 10d ago First seen · 50 lines · 0 tokens per session scan A 304c434b4092
frontend-architecture is a cursor rule published in the GitHub repository louisbrulenaudet/monorepo-template (19 stars, last pushed 9d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,469 tokens. 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 cursor rules, from other repositories
cursorrules-cursor-ai-nextjs-14-tailwind-seo-setup
Cursor rules for Next.js development with Tailwind CSS and SEO optimization.
nextjs-react-tailwind-cursorrules-prompt-file
Cursor rules for Next.js development with React and Tailwind CSS integration.
python-fastapi-scalable-api-cursorrules-prompt-fil
Cursor rules for Python FastAPI development with scalable API integration.
nextjs-material-ui-tailwind-css-cursorrules-prompt
Cursor rules for Next.js development with Material UI and Tailwind CSS integration.
react-components-creation-cursorrules-prompt-file
Cursor rules for React component creation and development.
react-chakra-ui-cursorrules-prompt-file
Cursor rules for React development with Chakra UI integration.