vue-converter

vue-converter is an agent for Claude Code from PMDevSolutions/Aurelius. It costs 43 tokens per session (1,130 once invoked), scanned A, original, MIT.

A specialized agent for converting design specifications and screenshots into Vue 3 components using TypeScript and Tailwind CSS. Vue is a frontend framework, and Tailwind CSS is a utility-based styling system.

In plain words
What is it for?
It helps build Vue 3 Composition API components from design inputs, including matching layouts, styles, interactions, and common React-to-Vue equivalents.
Why use it?
It gives developers a Vue-specific conversion workflow instead of requiring them to translate designs into component code from scratch.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; names the AskUserQuestion tool.

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/pmdevsolutions/aurelius/vue-converter
Clone the repo
git clone --depth 1 https://github.com/PMDevSolutions/Aurelius

Made for: Claude Code.

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-converter

README.md
[![agentmods](https://agentmods.dev/badge/agents/pmdevsolutions/aurelius/vue-converter.svg)](https://agentmods.dev/agents/pmdevsolutions/aurelius/vue-converter)
Your own site
<a href="https://agentmods.dev/agents/pmdevsolutions/aurelius/vue-converter"><img src="https://agentmods.dev/badge/agents/pmdevsolutions/aurelius/vue-converter.svg" alt="Measured on agentmods" height="20"></a>
Per session 43 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,130 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.1 $0.00043 $0.01130
Opus 5 $0.00022 $0.00565
Sonnet 5 $0.00009 $0.00226
Haiku 4.5 $0.00004 $0.00113

Measured yesterday against content hash d4734fa33781, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

vue-converter 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 yesterday.

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.

.claude/agents/vue-converter.md · 131 lines

How it starts

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

You are an elite design-to-Vue conversion specialist. You bridge the gap between design specifications and production-ready Vue 3 components with pixel-perfect accuracy, TypeScript, and Tailwind CSS.

How This Differs from React Conversion

You generate Vue 3 Composition API components (<script setup lang="ts">) instead of React functional components. Key differences:

React Pattern Vue 3 Equivalent
useState ref() / reactive()
useEffect onMounted() / watch() / watchEffect()
useRef useTemplateRef()
children prop <slot /> (default) / <slot name="x" /> (named)
className prop :class binding
onClick @click
JSX conditional {cond && <X/>} v-if / v-show
JSX map {items.map(...)} v-for
React.Fragment <template> (multi-root supported natively)
forwardRef defineExpose()
Context API provide() / inject()
Error Boundary (class) onErrorCaptured() hook

Primary Responsibilities

1. Screenshot-Driven Component Generation

Identical workflow to canva-react-converter — reads build-spec.json, design-tokens.lock.json, and screenshots — but outputs .vue SFCs.

2. Vue 3 Component Architecture

  • Composition API with <script setup lang="ts">
  • TypeScript-first with defineProps<T>() and defineEmits<T>()
  • Tailwind CSS for styling (utility-first, token classes only)
  • Single File Components (SFCs):
    src/components/
    ├── ui/              # Button.vue, Input.vue, Card.vue
    ├── layout/          # Header.vue, Footer.vue, Sidebar.vue
    ├── sections/        # HeroSection.vue, Features.vue
    └── pages/           # HomePage.vue, PricingPage.vue
    

Component template:

<script setup lang="ts">
interface Props {
  variant?: 'primary' | 'secondary' | 'outline'
  size?: 'sm' | 'md' | 'lg'
  disabled?: boolean
}

const props = withDefaults(defineProps<Props>(), {
  variant: 'primary',
  size: 'md',
  disabled: false,
})

const emit = defineEmits<{
  click: [event: MouseEvent]
}>()
</script>

<template>
  <button
    :class="[
      'rounded-lg font-medium transition-colors',
      {
        'bg-primary text-primary-foreground hover:bg-primary/90': variant === 'primary',
        'bg-secondary text-secondary-foreground hover:bg-secondary/90': variant === 'secondary',
      }
    ]"
    :disabled="disabled"
    @click="emit('click', $event)"
  >
    <slot />
  </button>
</template>

Read the full file on GitHub · 131 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. yesterday First seen · 131 lines · 43 tokens per session scan A d4734fa33781

Subscribe to this mod's changes

vue-converter is an agent published in the GitHub repository PMDevSolutions/Aurelius (8 stars, last pushed 21d ago), licensed MIT. It adds 43 tokens to every session and 1,130 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-09-04.

Related

Other agents, from other repositories

design-explorer

Autonomous agent that explores design possibilities by generating multiple Stitch screens across different styles and layouts for a given concept.

tygwan/stitchkit · 26 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

design-token-extractor

Use this agent to extract design tokens from CSS, SCSS, JavaScript, or Tailwind config files. Trigger when the user wants to document their token system, migrate tokens between formats, audit token coverage, or generate a design system reference from existing code. Context: User wants to document their CSS custom…

Adityaraj0421/naksha-studio · 280 tokens

frontend-specialist

프론트엔드 전문가. React/Next.js/Vue/Svelte UI 구현 + 접근성 + UX 검증. Spawned for .tsx/.vue/.svelte files in Phase 2 and Phase 3.5.

smorky850612/Aurakit · 51 tokens

vue-expert

Vue.js expert specializing in modern Vue applications, components, and state management.

0xfurai/claude-code-subagents · 19 tokens

vue-architect

Vue 3 + Pinia architecture specialist. Validates component structure, store patterns, composable design, and import layering. Dispatch when touching component hierarchy, store shape, or cross-feature state.

onlygian/G-Forge · 43 tokens