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 Aarvion-AI/stackwise-skills --skill vue-expertgit clone --depth 1 https://github.com/Aarvion-AI/stackwise-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/aarvion-ai/stackwise-skills/vue-expert)<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.
<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>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.00130 | $0.02286 |
| Opus 5 | $0.00065 | $0.01143 |
| Sonnet 5 | $0.00026 | $0.00457 |
| Haiku 4.5 | $0.00013 | $0.00229 |
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.
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,
shallowRefmisuse - Fix SSR/hydration mismatches and data-fetching duplication in Nuxt
- Write component and composable tests with Vitest + Vue Testing Library
Core Workflow
- Analyze - Inspect the project before writing anything: check
package.jsonfor 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/vssrc/in Nuxt 4). - Implement - Write
<script setup lang="ts">only. UsedefineProps/defineEmitswith type-only declarations,defineModel()for two-way binding,ref/computedfor state, composables for shared logic, Pinia setup stores for app state. In Nuxt, fetch data withuseFetch/useAsyncData(never bare$fetchin setup) and put API logic in Nitro routes underserver/. Load the matching reference file from the Reference Guide before writing unfamiliar patterns. - Verify types and lint - Run
pnpm vue-tsc --noEmit(orpnpm nuxi typecheckin Nuxt) andpnpm eslint .; fix all reported issues and re-run until clean before proceeding. - Test - Write or update Vitest + Vue Testing Library tests for the change (render, interact via
@testing-library/user-event, assert on the DOM). Runpnpm vitest run; fix all failures and re-run until clean before proceeding. - Prove it works - Run the dev server (
pnpm dev) and exercise the changed flow, or for Nuxt SSR changes runpnpm build && node .output/server/index.mjsand confirm no hydration warnings in the console. If anything fails, fix it and re-verify (steps 3-4) until clean.
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.
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 · 127 lines · 130 tokens per session scan A bb0ce25947b0
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.
Other skills, from other repositories
svelte-conventions
Svelte and SvelteKit patterns. Use when building or reviewing Svelte apps.
vue-conventions
Vue 3 Composition API patterns. Use when building or reviewing Vue apps.
scroll-craft
Build premium scroll-driven landing pages for service, product, food, and drink brands. Plan the visitor journey, page grammar, emotional peak, and bespoke signature move. Create dimensional heroes with independent visual planes, restrained motion, and separate mobile composition. Use supplied photos and footage or…
create-site
Creates a new Power Pages code site (SPA) using React, Angular, Vue, or Astro. Guides through the full process from initial concept to deployed site: requirements discovery, scaffolding, component planning, design, implementation, validation, and deployment. Use when the user wants to create, build, or scaffold a new…
bun-nuxt
Use when running Nuxt 3 with Bun runtime, building Vue/Nuxt apps with Bun, or configuring Nuxt projects to use Bun for development and production.
bun-sveltekit
Use when building or running SvelteKit apps on Bun, including SSR, adapters, and Bun-specific APIs.