neo-vue

neo-vue is a skill for Claude Code, Codex from Benknightdark/neo-skills. It costs 75 tokens per session (1,868 once invoked), scanned A, original, MIT.

A set of guidelines for building and reviewing Vue 3 applications with Pinia, Vue Router, the Composition API, or TypeScript. Vue is a JavaScript framework for building interactive web interfaces, while Pinia manages shared application state.

In plain words
What is it for?
Use it for Vue components, stores, routing, reactive state, two-way form binding, TypeScript integration, debugging, and application architecture.
Why use it?
It helps avoid common reactivity mistakes that make the interface stop updating, including unsafe destructuring and incorrect combinations of Vue directives.

Skill for Claude CodeCodex

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

Good fit Use it for Vue components, stores, routing, reactive state, two-way form binding, TypeScript integration, debugging, and application architecture.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/benknightdark/neo-skills/neo-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 Benknightdark/neo-skills --skill neo-vue
Clone the repo
git clone --depth 1 https://github.com/Benknightdark/neo-skills

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/benknightdark/neo-skills/neo-vue"><img src="https://agentmods.dev/badge/skills/benknightdark/neo-skills/neo-vue.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,868 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00075 $0.01868
Opus 5 $0.00037 $0.00934
Sonnet 5 $0.00015 $0.00374
Haiku 4.5 $0.00007 $0.00187

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

Security

Grade A, and why

neo-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 12d 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/neo-vue/SKILL.md · 115 lines

How it starts

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

Modern Vue 3 & Pinia 開發專家 (neo-vue)

本技能為 Agent 提供 Vue 3 (Composition API) 與 Pinia 狀態管理的開發與審查指南。它協助產出符合 Vue Style Guide 優先級 A/B 規則的程式碼,避開常見響應式陷阱,並生成一致、強型別的單一檔案元件(SFC)。

Gotchas

  • 解構 reactive 物件導致響應性丟失:禁止直接解構 props 或由 reactive() 定義的物件(例如:const { name } = propsconst { x } = state),這會徹底失去 Vue 響應式追蹤!
    • 防錯機制:必須使用 toRefs(props)toRef(props, 'name') 來保持其響應性。
  • 解構 Pinia Store 導致狀態響應性丟失:直接解構 Pinia store 的 state(如 const { user } = useAuthStore())會使 state 失去雙向響應!
    • 防錯機制:必須使用 storeToRefs(store) 來解構 state;而 action 則可以直接正常解構。
  • v-model 手動繁瑣綁定:在 Vue 3.4 之前,自定義雙向綁定需要手動宣告 modelValue 屬性並觸發 update:modelValue 事件,容易寫錯。
    • 防錯機制:在 Vue 3.4+ 專案中,優先使用 defineModel() 巨集宣告雙向綁定,降低屬性與事件不一致的風險。
  • v-if 與 v-for 在同一節點混用:在 Vue 3 中,v-if 的優先級高於 v-for,這意味著 v-if 的條件判斷無法存取到 v-for 迴圈中的變數,會直接導致編譯或執行期報錯!
    • 防錯機制:永遠使用 <template> 標籤包裹 v-for,再於內部子節點使用 v-if,或者預先使用 computed 計算屬性對陣列進行過濾。

Workflow Checklist

Progress:

  • 步驟 1:感知專案環境與依賴 (Perceive Setup & Tooling)
  • 步驟 2:載入編碼規範與踩坑指南 (Load Guides & Best Practices)
  • 步驟 3:架構推理與響應式規劃 (Reasoning & Architecture)
  • 步驟 4:套用範本生成一致的程式碼 (Generate SFC & Stores)
  • 步驟 5:程式碼健檢與自我校對 (Code Quality Review)

Detailed Guidelines

步驟 1 — 感知專案環境與依賴 (Perceive)

  1. 檢查依賴配置:讀取 package.json,確定 Vue 版本(確認為 Vue 3.x)以及是否安裝了 piniavue-router
  2. 識別建置工具與語言:確認是否為 Vite 專案,以及是否啟用了 TypeScript(lang="ts")與 Scoped CSS。

步驟 2 — 載入編碼規範與踩坑指南 (Reason)

在進行 Vue 3 開發或審查前,必須動態載入深度知識庫

  1. 讀取 references/coding-style.md 以確認組件命名(必須為多字詞 PascalCase)、屬性定義等官方優先級規範。
  2. 讀取 references/anti-patterns.md 以避開 props mutation、computed 副作用等反模式。
  3. 讀取 references/patterns.md 以獲得 Composables 的合理拆分與 Pinia Setup Stores 的架構設計。

步驟 3 — 架構推理與響應式規劃 (Reason)

在編寫程式碼前,先思考以下設計:

  1. Reactivity 選擇:除非是多個屬性需要高度關聯的複雜物件,否則優先使用 ref() 而不是 reactive(),以確保存取 .value 的一致性並避免解構失活。
  2. 狀態下沉:評估狀態是屬於組件局部狀態(用 ref)還是全局狀態(用 Pinia Setup Store)。

步驟 4 — 套用範本生成一致的程式碼 (Act)

  1. SFC 結構:新建立的元件必須使用 <script setup> 語法,並依專案設定優先加入 lang="ts"
  2. 套用範本:讀取並參考 assets/Vue3SFCComponentTemplate.vue 作為標準 Vue 3 元件的排版範例。
  3. 強制語言與風格:所有程式碼註解、說明必須使用 Traditional Chinese (Taiwan)。專用術語需對齊(例如:元件、屬性、狀態管理、響應式、雙向綁定、計算屬性)。

Read the full file on GitHub · 115 lines

Files

What ships with it

7 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. 12d ago First seen · 115 lines · 75 tokens per session scan A 589a312a840e

Subscribe to this mod's changes

neo-vue is a skill published in the GitHub repository Benknightdark/neo-skills (7 stars, last pushed 6d ago), licensed MIT. It adds 75 tokens to every session and 1,868 once invoked, about $0.0004 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.

Related

Other skills, from other repositories

remotion-saas

Building video apps with Remotion - framework, rendering and Player advice.

guanyang/open-agent-hub · 18 tokens

html-portal-generator

Convert a codebase into a self-contained HTML portal app for ingestion into AI application systems. Produces a single deployable HTML file with embedded CSS, JS, and data.

athola/skrills · 40 tokens

vue

Use when building Vue 3 applications. Covers the Composition API, reactivity fundamentals, composables, Pinia state management, and the reactivity mistakes that cause silent update failures.

nimadorostkar/Claude-Skills-collection · 38 tokens

image-first-frontend

Generate a polished frontend reference screenshot through a configurable GPT-image-2-compatible generations endpoint, save and show versioned previews inside the project, revise selected previews through a configurable /images/edits endpoint, and reproduce only the user-approved design as functional frontend code with…

jinshiqwq/image-first-frontend · 118 tokens

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…

display-design-studio/skills · 90 tokens

nuxt-sanity

@nuxtjs/sanity module integration best practices for Nuxt 3 and Nuxt 4 apps connected to Sanity CMS (there is no separate @sanity/nuxt package). Covers useSanityQuery, useLazySanityQuery, useSanity, SanityImage, SanityContent (Portable Text), visual editing / live preview with stega, TypeScript typegen, named clients…

display-design-studio/skills · 169 tokens