vue-reactivity-review

vue-reactivity-review is an agent for coding agents from bdfinst/agentic-dev-team. It costs 27 tokens per session (1,440 once invoked), scanned A, original, MIT.

A Vue code reviewer focused on how Vue's reactive values and subscriptions update components over time.

In plain words
What is it for?
Use it to review Vue components and composables that use refs, reactive objects, computed values, watchers, or watchEffect.
Why use it?
It finds mistakes that can silently stop the interface from updating or leave subscriptions running after they are no longer needed.

Agent

Installs and runs on its own, but its text points at files inside its plugin — anything it tells you to read at a ${CLAUDE_PLUGIN_ROOT} path is only there once the plugin is installed. Installing the plugin gets both.

Part of the dev-team plugin — 96 skills, 54 agents, 4 hooks shipped together

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.

agentmods
npx agentmods add agents/bdfinst/agentic-dev-team/vue-reactivity-review
Clone the repo
git clone --depth 1 https://github.com/bdfinst/agentic-dev-team

Or install dev-team, the plugin that ships this one along with the rest of its 96 skills, 54 agents, 4 hooks.

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-reactivity-review

README.md
[![agentmods](https://agentmods.dev/badge/agents/bdfinst/agentic-dev-team/vue-reactivity-review.svg)](https://agentmods.dev/agents/bdfinst/agentic-dev-team/vue-reactivity-review)
Your own site
<a href="https://agentmods.dev/agents/bdfinst/agentic-dev-team/vue-reactivity-review"><img src="https://agentmods.dev/badge/agents/bdfinst/agentic-dev-team/vue-reactivity-review.svg" alt="Measured on agentmods" height="20"></a>
Per session 27 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,440 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00027 $0.01440
Opus 5 $0.00014 $0.00720
Sonnet 5 $0.00005 $0.00288
Haiku 4.5 $0.00003 $0.00144

Measured 5d ago against content hash e5592cee21c7, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

vue-reactivity-review 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 5d 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.

plugins/dev-team/agents/vue-reactivity-review.md · 96 lines

How it starts

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

Vue Reactivity Review

Scope:

  • **/*.vue
  • **/*.js
  • **/*.ts Cites: [adversarial-review-protocol]

Scope: Vue component and composable files (.vue, and .js/.ts files that import from vue). Skip this agent entirely if the project has no vue dependency in package.json (or equivalent manifest). Covers Vue 3 Composition API (ref, reactive, computed, watch, watchEffect) and Vue 2 Options API reactivity pitfalls.

Output JSON: per ${CLAUDE_PLUGIN_ROOT}/knowledge/review-agent-output-contract.md (Whole-file load: short, canonical schema).

Status: pass=no reactivity issues, warn=potential concerns, fail=likely silent reactivity breakage Severity: error=silent reactivity breakage; warning=potential reactivity concern; suggestion=defensive improvement Confidence: high=mechanical Vue fix (wrap in ref/reactive, add dep, use .value); medium=pattern identified but component design may affect the fix; none=requires human judgment

Context needs: full-file

Skip

Return {"status": "skip", "issues": [], "summary": "No Vue files in target"} when:

  • No vue dependency found in the project manifest (package.json, package-lock.json, yarn.lock, etc.)
  • No .vue / .js / .ts files import from vue in the target set

Detect

Whole-file load: ${CLAUDE_PLUGIN_ROOT}/knowledge/reactive-effect-patterns.md for cross-framework effect/watcher patterns shared with React and Angular agents before running the Vue-specific checks below.

ref vs reactive unwrapping pitfalls (Vue 3):

  • Destructuring a reactive() object breaks reactivity — the destructured variables become plain (non-reactive) copies
  • Spreading reactive() into a new object ({ ...state }) loses tracking — returned object is no longer reactive
  • Using reactive() on a primitive (number, string, boolean) — use ref() instead; reactive() only wraps objects
  • Passing a reactive() property directly to a composable parameter — the composable receives the current value, not a reactive reference; use toRef() or pass the whole object
  • Forgetting .value on a ref in <script setup> — compiler auto-unwraps refs in templates but not in JS code

Read the full file on GitHub · 96 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. 5d ago First seen · 96 lines · 27 tokens per session scan A e5592cee21c7

Subscribe to this mod's changes

vue-reactivity-review is an agent published in the GitHub repository bdfinst/agentic-dev-team (280 stars, last pushed today), licensed MIT. It adds 27 tokens to every session and 1,440 once invoked, about $0.0001 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-30.

Related

Other agents, from other repositories

svelte-idiom-review

Reviews a feature segment in any SvelteKit app (apps/moderator, apps/auth, apps/creator-studio) for Svelte 5 idiom (runes, async, forms, keys) and the shared UI conventions (shadcn primitives, text-dark-2, panel styling). Use before calling a segment done, alongside svelte-correctness-review and…

civitai/civitai · 89 tokens

svelte-recurrence-sweep

Given a defect just found or fixed in a SvelteKit app (apps/moderator, apps/auth, apps/creator-studio), finds every OTHER place the same shape exists. Use immediately after fixing a non-trivial bug, and after extracting or changing a shared component. Not a review of a segment — a sweep for siblings of one known…

civitai/civitai · 80 tokens

laravel-vue-developer

Build full-stack Laravel applications with Vue3 frontend. Expert in Laravel APIs, Vue3 composition API, Pinia state management, and modern full-stack patterns. Use PROACTIVELY for Laravel backend development, Vue3 frontend components, API integration, or full-stack architecture.

davepoon/buildwithclaude · 61 tokens

frontend-engineer

Senior frontend engineer for Vue 3 development. Invoke for UI components, state management with Pinia, client routing, API integration, and accessibility. Writes production code using component-first workflow.

irahardianto/awesome-agv · 41 tokens

i18n

你是一个精通 Vue3 国际化架构的前端专家(专注于 Vue3 + TypeScript + Composition API)。同时,你也是一位专业的 UI/UX 翻译专家,擅长将中文界面语言翻译为地道、简洁的英文。.

zhimaAi/chatwiki · 7 tokens

nuxtjs-architect

Senior Nuxt.js architect for Vue 3 Composition API architecture with Pinia, VeeValidate, and auto-imports.

smicolon/ai-kit · 30 tokens