nuxt-conventions

nuxt-conventions is a cursor rule for coding agents from e-gov/cursor-prompts. It costs 8,507 tokens per session, scanned A, original, MIT.

Coding rules for Nuxt, a framework for building Vue web applications, with TypeScript, a typed version of JavaScript. They cover project structure, components, state, server-side rendering, and tests.

In plain words
What is it for?
Use them when creating Nuxt features, shared components, composables, stores, routes, server-rendered pages, or tests.
Why use it?
They give a team consistent patterns for organizing and maintaining Nuxt applications and help avoid common framework mistakes.

Cursor rule

Install

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.

agentmods
npx agentmods add rules/e-gov/cursor-prompts/nuxt-conventions
Clone the repo
git clone --depth 1 https://github.com/e-gov/cursor-prompts

Wrote 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.

agentmods badge for nuxt-conventions

README.md
[![agentmods](https://agentmods.dev/badge/rules/e-gov/cursor-prompts/nuxt-conventions.svg)](https://agentmods.dev/rules/e-gov/cursor-prompts/nuxt-conventions)
Your own site
<a href="https://agentmods.dev/rules/e-gov/cursor-prompts/nuxt-conventions"><img src="https://agentmods.dev/badge/rules/e-gov/cursor-prompts/nuxt-conventions.svg" alt="Measured on agentmods" height="20"></a>
Per session 8,507 This file is loaded in full into every session.
When invoked 8,507 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.08507 $0.08507
Opus 5 $0.04254 $0.04254
Sonnet 5 $0.01701 $0.01701
Haiku 4.5 $0.00851 $0.00851

Measured 4d ago against content hash da6ccf2b3668, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

nuxt-conventions 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.

rules/typescript-nuxt/nuxt-conventions.mdc · 1,032 lines

How it starts

The opening of the file, as written. The whole thing — 1,032 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Nuxt Development Conventions

Context

  • Apply this rule when developing Nuxt applications
  • This rule complements typescript-common/application-logging.mdc and typescript-common/audit-logging.mdc for logging
  • For TypeScript code standards, see typescript-common/typescript-code-standards.mdc
  • For comprehensive security best practices, see rules/common/security.mdc
  • Follow Vue style guide and Nuxt best practices
  • Convention over Configuration: Adhere to Nuxt 4 conventions to simplify development and collaboration

Requirements

1. Project Structure

  • Feature-based organization: Group related components, composables, and stores by feature
  • Shared components: Create shared components for common functionality
  • Lazy loading: Implement lazy loading for route components
  • Directory Structure: Co-locate related files:
    .
    ├── app/                      # Nuxt 4 uses app/ directory
    │   ├── assets/               # Assets processed by build tools (CSS, images, fonts)
    │   ├── components/
    │   │   ├── [feature-name]/
    │   │   │   └── FeatureComponent.vue
    │   │   └── MyComponent.vue
    │   ├── composables/
    │   │   └── useUser.ts
    │   ├── layouts/
    │   │   └── default.vue
    │   ├── middleware/           # Route middleware
    │   │   └── auth.ts
    │   ├── pages/                # File-based routing
    │   │   ├── [feature-name]/
    │   │   │   └── feature-page.vue
    │   │   └── index.vue
    │   ├── plugins/
    │   │   └── analytics.ts
    │   ├── store/
    │   │   └── user-store.ts
    │   ├── utils/                # Utility functions
    │   │   └── formatDate.ts
    │   ├── app.config.ts         # Reactive configuration (optional, no secrets!)
    │   ├── app.vue               # Root application component (optional)
    │   └── error.vue             # Error page (optional)
    ├── modules/                  # Custom Nuxt modules
    ├── public/                   # Static assets (images, fonts)
    ├── server/                   # API routes and server-side logic
    │   ├── api/
    │   ├── routes/
    │   └── middleware/
    └── test/                     # Mirror app/ structure for test files
        ├── unit/
        ├── integration/
        └── e2e/
    

Read the full file on GitHub · 1,032 lines

Changes

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.

  1. 4d ago First seen · 1,032 lines · 8,507 tokens per session scan A da6ccf2b3668

Subscribe to this mod's changes

nuxt-conventions is a cursor rule published in the GitHub repository e-gov/cursor-prompts (34 stars, last pushed 4mo ago), licensed MIT. It adds 8,507 tokens to every session, about $0.0425 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.