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 Benknightdark/neo-skills --skill neo-vuegit clone --depth 1 https://github.com/Benknightdark/neo-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/benknightdark/neo-skills/neo-vue)<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.
<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>- NVIDIA SkillSpector pass
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.00075 | $0.01868 |
| Opus 5 | $0.00037 | $0.00934 |
| Sonnet 5 | $0.00015 | $0.00374 |
| Haiku 4.5 | $0.00007 | $0.00187 |
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.
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 } = props或const { 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()巨集宣告雙向綁定,降低屬性與事件不一致的風險。
- 防錯機制:在 Vue 3.4+ 專案中,優先使用
- 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)
- 檢查依賴配置:讀取
package.json,確定 Vue 版本(確認為 Vue 3.x)以及是否安裝了pinia、vue-router。 - 識別建置工具與語言:確認是否為 Vite 專案,以及是否啟用了 TypeScript(
lang="ts")與 Scoped CSS。
步驟 2 — 載入編碼規範與踩坑指南 (Reason)
在進行 Vue 3 開發或審查前,必須動態載入深度知識庫:
- 讀取
references/coding-style.md以確認組件命名(必須為多字詞 PascalCase)、屬性定義等官方優先級規範。 - 讀取
references/anti-patterns.md以避開 props mutation、computed 副作用等反模式。 - 讀取
references/patterns.md以獲得 Composables 的合理拆分與 Pinia Setup Stores 的架構設計。
步驟 3 — 架構推理與響應式規劃 (Reason)
在編寫程式碼前,先思考以下設計:
- Reactivity 選擇:除非是多個屬性需要高度關聯的複雜物件,否則優先使用
ref()而不是reactive(),以確保存取.value的一致性並避免解構失活。 - 狀態下沉:評估狀態是屬於組件局部狀態(用
ref)還是全局狀態(用Pinia Setup Store)。
步驟 4 — 套用範本生成一致的程式碼 (Act)
- SFC 結構:新建立的元件必須使用
<script setup>語法,並依專案設定優先加入lang="ts"。 - 套用範本:讀取並參考
assets/Vue3SFCComponentTemplate.vue作為標準 Vue 3 元件的排版範例。 - 強制語言與風格:所有程式碼註解、說明必須使用 Traditional Chinese (Taiwan)。專用術語需對齊(例如:元件、屬性、狀態管理、響應式、雙向綁定、計算屬性)。
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.
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.
- 12d ago First seen · 115 lines · 75 tokens per session scan A 589a312a840e
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.
Other skills, from other repositories
remotion-saas
Building video apps with Remotion - framework, rendering and Player advice.
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.
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.
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…
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…
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…