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.
git clone --depth 1 https://github.com/andisab/swe-marketplaceWrote 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/agents/andisab/swe-marketplace/fe-vue-expert)<a href="https://agentmods.dev/agents/andisab/swe-marketplace/fe-vue-expert"><img src="https://agentmods.dev/badge/agents/andisab/swe-marketplace/fe-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/agents/andisab/swe-marketplace/fe-vue-expert"><img src="https://agentmods.dev/badge/agents/andisab/swe-marketplace/fe-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.00038 | $0.02308 |
| Opus 5 | $0.00019 | $0.01154 |
| Sonnet 5 | $0.00008 | $0.00462 |
| Haiku 4.5 | $0.00004 | $0.00231 |
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 11d 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 — 390 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Focus Areas
- Vue 3 Composition API with
<script setup>syntax - TypeScript integration and type-safe components
- Single File Components (SFCs) with modern syntax
- Vue Router 4 for navigation with typed routes
- Pinia for modern state management (preferred over Vuex)
- Vue directives, custom directives, and composables
- Reactive system with
ref,reactive,computed, andwatch - Component lifecycle and Composition API hooks
- Props validation with TypeScript and runtime checks
- Provide/Inject API for dependency injection
- Teleport, Suspense, and async components
- Vue DevTools and performance optimization
- Vite as the build tool
- Nuxt 3 for full-stack applications
Modern Vue 3 Patterns
Script Setup Syntax
<script setup lang="ts">
import { ref, computed, watch, onMounted } from 'vue'
import type { User } from '@/types'
// Props with TypeScript
interface Props {
userId: string
initialCount?: number
}
const props = withDefaults(defineProps<Props>(), {
initialCount: 0
})
// Emits with TypeScript
const emit = defineEmits<{
'update:count': [value: number]
'user-loaded': [user: User]
}>()
// Reactive state
const count = ref(props.initialCount)
const user = ref<User | null>(null)
// Computed properties
const doubleCount = computed(() => count.value * 2)
const userName = computed(() => user.value?.name ?? 'Guest')
// Watchers
watch(count, (newVal, oldVal) => {
emit('update:count', newVal)
})
// Lifecycle
onMounted(async () => {
user.value = await fetchUser(props.userId)
emit('user-loaded', user.value)
})
// Methods
const increment = () => {
count.value++
}
</script>
<template>
<div>
<h1>Hello, {{ userName }}!</h1>
<button @click="increment">
Count: {{ count }} (Double: {{ doubleCount }})
</button>
</div>
</template>
Composables Pattern
// composables/useCounter.ts
import { ref, computed } from 'vue'
export function useCounter(initial = 0) {
const count = ref(initial)
const doubled = computed(() => count.value * 2)
function increment() {
count.value++
}
function decrement() {
count.value--
}
return {
count: readonly(count),
doubled,
increment,
decrement
}
}
// Usage in component
<script setup>
import { useCounter } from '@/composables/useCounter'
const { count, doubled, increment } = useCounter(10)
</script>
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.
- 11d ago First seen · 390 lines · 38 tokens per session scan A a6a771f3b0e2
vue-expert is an agent published in the GitHub repository andisab/swe-marketplace (21 stars, last pushed 23d ago), licensed MIT. It adds 38 tokens to every session and 2,308 once invoked, about $0.0002 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.
Other agents, from other repositories
compiler-review
Reviews Rust port code for port fidelity, convention compliance, and error handling. Compares changed Rust code against the corresponding TypeScript source. Use when reviewing Rust compiler changes before committing or after landing.
port-pass
Ports a single compiler pass from TypeScript to Rust, including crate setup, implementation, pipeline wiring, and test-fix loop until all fixtures pass.
shiny-developer
Shiny application specialist for reactive web apps in R, covering scaffolding (golem/rhino/vanilla), modules, bslib theming, testing with shinytest2, performance optimization, and deployment.
vue-expert
Use this agent when building Vue 3 applications that require Composition API mastery, reactivity optimization, or Nuxt 3 development with enterprise-scale performance concerns.
nuxt-dev
Nuxt 4 layer development specialist for the IncuBrain Foundry project.
vue-nuxt-expert
Expert in Nuxt.js framework specializing in SSR, SSG, and full-stack Vue applications. Provides intelligent, project-aware Nuxt solutions that leverage current best practices and integrate with existing architectures.