nuxt

nuxt is a skill for Claude Code, Codex from andresquirogadev/skillsense. It costs 0 tokens per session (530 once invoked), scanned A, original, MIT.

A set of conventions for Nuxt 3, a Vue-based framework for building websites and server applications. It explains where pages, components, server routes, and assets belong.

In plain words
What is it for?
Use it when building Nuxt pages, reusable components, composables, API endpoints, server routes, and data-fetching or asset-handling logic.
Why use it?
It helps avoid mixing up browser-side and server-side data loading. It also makes use of Nuxt's automatic routing, imports, and server-aware fetching consistent.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when building Nuxt pages, reusable components, composables, API endpoints, server routes, and data-fetching or asset-handling logic.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/andresquirogadev/skillsense/nuxt
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.

Any agent
npx skills add andresquirogadev/skillsense --skill nuxt
Clone the repo
git clone --depth 1 https://github.com/andresquirogadev/skillsense

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/andresquirogadev/skillsense/nuxt/github.svg)](https://agentmods.dev/skills/andresquirogadev/skillsense/nuxt)
Your own site
<a href="https://agentmods.dev/skills/andresquirogadev/skillsense/nuxt"><img src="https://agentmods.dev/badge/skills/andresquirogadev/skillsense/nuxt/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.

agentmods 80×15 button for nuxt

Your own site · 80×15
<a href="https://agentmods.dev/skills/andresquirogadev/skillsense/nuxt"><img src="https://agentmods.dev/badge/skills/andresquirogadev/skillsense/nuxt.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 530 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00000 $0.00530
Opus 5 $0.00000 $0.00265
Sonnet 5 $0.00000 $0.00106
Haiku 4.5 $0.00000 $0.00053

Measured 9d ago against content hash c3601fc8f508, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

nuxt 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 9d 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.

packages/catalog/skills/nuxt/SKILL.md · 44 lines

How it starts

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

Nuxt Skill

You are working on a Nuxt 3 project. Apply these conventions.

Project Structure

  • Pages live in pages/ — file-based routing is automatic.
  • Shared components in components/ are auto-imported, no explicit imports needed.
  • Composables in composables/ and utils in utils/ are also auto-imported.
  • Server routes live in server/api/ and server/routes/.
  • Static assets go in public/; processed assets go in assets/.

Data Fetching

  • Use useFetch('/api/…') or useAsyncData('key', () => $fetch('…')) in pages/components.
  • These composables are SSR-aware: they run on server, then hydrate on client without double-fetching.
  • Use $fetch inside server routes and event handlers — never use useFetch server-side outside composables.
  • Use lazy: true option in useFetch to defer loading and avoid blocking navigation.
  • Call refreshNuxtData('key') to manually invalidate cached data.

Server Routes

  • Create server endpoints in server/api/[name].ts — export a default defineEventHandler(async (event) => { … }).
  • Use readBody(event) for POST bodies, getQuery(event) for query params, getRouterParam(event, 'id') for route params.
  • Use createError({ statusCode: 404, statusMessage: 'Not Found' }) for HTTP errors.

State & Composables

  • Use useState('key', () => defaultValue) for SSR-safe shared state.
  • Create composables that return reactive refs for shared logic across components.
  • Use useRuntimeConfig() to access environment variables — server-only vars under .runtimeConfig, public under .runtimeConfig.public.

Auto-imports & TypeScript

  • Run nuxi prepare to regenerate .nuxt/ type declarations after adding new composables or components.
  • Prefix component names to avoid conflicts: TheHeader.vue, AppButton.vue.
  • Types for pages are in .nuxt/types/; use NuxtPage, NuxtLayout, etc.

nuxt.config.ts

  • Configure modules in modules: []; they auto-register plugins and composables.
  • Use runtimeConfig for environment variables; never hardcode secrets.
  • Use routeRules for per-route rendering strategies (SSR, SWC, prerender, ISR).

Read the full file on GitHub · 44 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. 9d ago First seen · 44 lines · 0 tokens per session scan A c3601fc8f508

Subscribe to this mod's changes

nuxt is a skill published in the GitHub repository andresquirogadev/skillsense (2 stars, last pushed 5mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 530 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-31.