vue

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

A set of coding conventions for Vue 3, a JavaScript framework for building web interfaces. It covers component structure, reactive data, typed properties and events, routing, and related patterns.

In plain words
What is it for?
It helps create or review Vue 3 components, manage reactive state, define component inputs and events, set up routes, and handle authentication checks.
Why use it?
It reduces inconsistent Vue code by giving the agent clear rules for how new components and navigation should be written.

Skill for Claude CodeCodex

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

Good fit It helps create or review Vue 3 components, manage reactive state, define component inputs and events, set up routes, and handle authentication checks.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/andresquirogadev/skillsense/vue"><img src="https://agentmods.dev/badge/skills/andresquirogadev/skillsense/vue.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 487 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.00487
Opus 5 $0.00000 $0.00244
Sonnet 5 $0.00000 $0.00097
Haiku 4.5 $0.00000 $0.00049

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

Security

Grade A, and why

vue 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 10d 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/vue/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.

Vue Skill

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

Composition API

  • Always use the Composition API with <script setup> — avoid the Options API for new code.
  • Declare reactive state with ref() for primitives and reactive() for objects.
  • Access ref values via .value in <script setup>; template auto-unwraps them.
  • Use computed() for derived values; they are cached automatically.
  • Use watch() for side effects on reactive sources; prefer watchEffect() when dependencies are obvious.

Component Design

  • Use defineProps<{ title: string; count?: number }>() for typed props.
  • Use defineEmits<{ update: [value: string] }>() for typed events.
  • Use defineExpose() only when parent components need to call child methods directly.
  • Prefer v-model over manual emit('update:modelValue') for two-way binding.

Routing (Vue Router 4)

  • Define routes in a typed router with RouteRecordRaw[].
  • Use <RouterLink> for navigation; useRouter() and useRoute() in <script setup>.
  • Use route guards with router.beforeEach() for auth; use meta fields for route metadata.
  • Lazy-load routes: () => import('./views/HomeView.vue').

State Management (Pinia)

  • Define stores with defineStore('id', () => { … }) (Setup syntax preferred over Options).
  • Export and use stores only inside components and composables, never in plain JS modules at module scope.
  • Use storeToRefs() to destructure reactive state without losing reactivity.

Reactivity Pitfalls

  • Destructuring a reactive() object breaks reactivity — use toRefs() first.
  • Adding new properties to a reactive() object is fine in Vue 3 (uses Proxy), unlike Vue 2.
  • Never reassign a reactive() variable itself; mutate properties instead.

Templates

  • Use v-bind="$attrs" on the root element in components that forward attributes.
  • Use :key on v-for items that are unique database IDs, not array indices.
  • Use v-memo on expensive list items to skip re-renders when data hasn't changed.

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. 10d ago First seen · 44 lines · 0 tokens per session scan A d4c205a19863

Subscribe to this mod's changes

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