vue-expert

vue-expert is a skill for Claude Code from Aarvion-AI/stackwise-skills. It costs 130 tokens per session (2,286 once invoked), scanned A, original, MIT.

A specialist guide for Vue 3 and Nuxt, tools for building web interfaces and full web applications with JavaScript or TypeScript.

In plain words
What is it for?
Creating Vue components, composables, Pinia stores, Nuxt pages and server routes, and tests while fixing reactivity, server-rendering, and hydration bugs.
Why use it?
It helps handle modern reactive state, server rendering, data fetching, and hydration issues without falling back to older Vue patterns.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the stackwise plugin — 15 skills shipped together

Good fit Creating Vue components, composables, Pinia stores, Nuxt pages and server routes, and tests while fixing reactivity, server-rendering, and hydration bugs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aarvion-ai/stackwise-skills/vue-expert
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 Aarvion-AI/stackwise-skills --skill vue-expert
Clone the repo
git clone --depth 1 https://github.com/Aarvion-AI/stackwise-skills

Made for: Claude Code.

Or install stackwise, the plugin that ships this one along with the rest of its 15 skills.

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 vue-expert

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/aarvion-ai/stackwise-skills/vue-expert"><img src="https://agentmods.dev/badge/skills/aarvion-ai/stackwise-skills/vue-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 130 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,286 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.00130 $0.02286
Opus 5 $0.00065 $0.01143
Sonnet 5 $0.00026 $0.00457
Haiku 4.5 $0.00013 $0.00229

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

Security

Grade A, and why

vue-expert 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.

skills/vue-expert/SKILL.md · 127 lines

How it starts

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

Vue Expert

Turns Claude into a senior Vue 3.5+/Nuxt 4 engineer who writes idiomatic <script setup lang="ts"> code, designs reactive state that survives SSR, and never ships Options API or Vue 2 idioms.

When to Use This Skill

  • Build or modify Vue single-file components (.vue) with Composition API and TypeScript
  • Design composables (useX) with correct reactivity, cleanup, and SSR safety
  • Create or refactor Pinia stores (setup-store style) and wire them into components
  • Add Nuxt 4 pages, layouts, middleware, or Nitro server routes (server/api/)
  • Debug reactivity bugs: lost reactivity from destructuring, stale watchers, shallowRef misuse
  • Fix SSR/hydration mismatches and data-fetching duplication in Nuxt
  • Write component and composable tests with Vitest + Vue Testing Library

Core Workflow

  1. Analyze - Inspect the project before writing anything: check package.json for Vue/Nuxt/Pinia versions, whether it is a Nuxt app (nuxt.config.ts) or plain Vite SPA, auto-import config, existing composable/store conventions, and the test runner setup (vitest.config.ts, existing *.spec.ts). Match existing directory conventions (app/ vs src/ in Nuxt 4).
  2. Implement - Write <script setup lang="ts"> only. Use defineProps/defineEmits with type-only declarations, defineModel() for two-way binding, ref/computed for state, composables for shared logic, Pinia setup stores for app state. In Nuxt, fetch data with useFetch/useAsyncData (never bare $fetch in setup) and put API logic in Nitro routes under server/. Load the matching reference file from the Reference Guide before writing unfamiliar patterns.
  3. Verify types and lint - Run pnpm vue-tsc --noEmit (or pnpm nuxi typecheck in Nuxt) and pnpm eslint .; fix all reported issues and re-run until clean before proceeding.
  4. Test - Write or update Vitest + Vue Testing Library tests for the change (render, interact via @testing-library/user-event, assert on the DOM). Run pnpm vitest run; fix all failures and re-run until clean before proceeding.
  5. Prove it works - Run the dev server (pnpm dev) and exercise the changed flow, or for Nuxt SSR changes run pnpm build && node .output/server/index.mjs and confirm no hydration warnings in the console. If anything fails, fix it and re-verify (steps 3-4) until clean.

Read the full file on GitHub · 127 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 127 lines · 130 tokens per session scan A bb0ce25947b0

Subscribe to this mod's changes

vue-expert is a skill published in the GitHub repository Aarvion-AI/stackwise-skills (5 stars, last pushed 6d ago), licensed MIT. It adds 130 tokens to every session and 2,286 once invoked, about $0.0006 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-31.