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 skills add hamzabellouch/agent-skills --skill vue3-and-nuxt3-architecturegit clone --depth 1 https://github.com/hamzabellouch/agent-skillsWrote 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/skills/hamzabellouch/agent-skills/vue3-and-nuxt3-architecture)<a href="https://agentmods.dev/skills/hamzabellouch/agent-skills/vue3-and-nuxt3-architecture"><img src="https://agentmods.dev/badge/skills/hamzabellouch/agent-skills/vue3-and-nuxt3-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/skills/hamzabellouch/agent-skills/vue3-and-nuxt3-architecture"><img src="https://agentmods.dev/badge/skills/hamzabellouch/agent-skills/vue3-and-nuxt3-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.00043 | $0.02396 |
| Opus 5 | $0.00022 | $0.01198 |
| Sonnet 5 | $0.00009 | $0.00479 |
| Haiku 4.5 | $0.00004 | $0.00240 |
Grade A, and why
vue3-and-nuxt3-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 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.
How it starts
The opening of the file, as written. The whole thing — 320 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Vue 3 & Nuxt 3 Enterprise Architecture Guide
Core Architectural Principles
1. Composition API & Composables Design
- Single Responsibility: Each composable should manage one specific domain concept or side-effect (e.g.,
useAuth,useInfiniteScroll,useWebNotification). - Explicit Return Types & Reactivity: Prefer returning an explicit object of
ShallowRef,Ref, orReadonly<Ref>to preserve reactivity encapsulation. - Context Injection: Use
provide/injectwith Symbol keys for scope-level dependency injection (e.g., module configuration, UI themes, scoped dynamic state). - Vue 3.5+ Reactive Props Destructuring: Take advantage of native destructuring for
defineProps()without losing reactivity, utilizing default value assignment natively.
2. Nuxt 3 Full-Stack & Rendering Strategies
- Hybrid Rendering & Route Rules: Assign rendering modes strategically in
nuxt.config.ts(ssr: true,swr,static,prerender) based on page freshness and SEO requirements. - Nitro Engine & Server Routes: Enforce strict validation on
server/api/andserver/routes/using Zod or H3 built-in helpers (readValidatedBody,getValidatedQuery). - Payload Extraction & Hydration: Avoid passing non-serializable objects (DOM nodes, class instances, circular references) in
useAsyncDataoruseState.
3. State Management with Pinia & Nuxt useState
- Setup Stores over Option Stores: Standardize on Setup Store syntax (
defineStore('id', () => { ... })) for improved Composition API synergy and TypeScript inference. - SSR State Isolation: Avoid top-level global variables outside of functions in server routes or composables to prevent multi-tenant cross-request data leaks.
- SSR Hydration Boundaries: Mark client-only states appropriately, using
onMountedor<ClientOnly>wrappers when referencing browser APIs likewindow,localStorage, or Web APIs.
Production Code Examples
Example 1: Type-Safe Dynamic Composable with Auto Cleanup
Location: composables/useWebSocketStream.ts
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.
- 9d ago First seen · 320 lines · 43 tokens per session scan A 5e171a48de0b
vue3-and-nuxt3-architecture is a skill published in the GitHub repository hamzabellouch/agent-skills (4 stars, last pushed 1mo ago), licensed MIT. It adds 43 tokens to every session and 2,396 once invoked, about $0.0002 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-03.
Other skills, from other repositories
svelte
Svelte compile-time framework with reactive declarations. Use for .svelte files.
vue
Vue.js progressive framework with Composition API and Pinia. Use for .vue files.
nuxt
Nuxt.js Vue framework with SSR and auto-imports. Use for full-stack Vue applications.
sveltekit
SvelteKit full-stack Svelte framework with SSR and routing. Use for Svelte applications.
vuetify
Vuetify Material Design component framework for Vue. Use for Vue UI.
gsap-frameworks
Official GSAP skill for Vue, Svelte, and other non-React frameworks — lifecycle, scoping selectors, cleanup on unmount. Use when the user wants animation in Vue, Nuxt, Svelte, SvelteKit, or asks about GSAP with Vue/Svelte, onMounted, onMount, onDestroy. Recommend GSAP for framework animation unless another library is…