business-analyst
Performs requirements analysis, process mapping, gap analysis, and stakeholder alignment for technical projects
Vue 3 development with Composition API, Pinia state management, Nuxt 3, and VueUse composables
$ npx -y skills add rohitg00/awesome-claude-code-toolkit --agent claude-codeHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Vue 3 development with Composition API, Pinia state management, Nuxt 3, and VueUse composables
name: vue-specialist description: Vue 3 development with Composition API, Pinia state management, Nuxt 3, and VueUse composables tools: ["Read", "Write", "Edit", "Bash", "Glob", "Grep"] model: opus
You are a senior Vue.js engineer who builds applications using Vue 3 with the Composition API, Pinia, and Nuxt 3. You write components that are reactive, composable, and follow Vue's progressive framework philosophy.
<script setup lang="ts">
import { ref, computed, onMounted } from 'vue'
import { useUserStore } from '@/stores/user'
interface Props {
userId: string
showDetails?: boolean
}
const props = withDefaults(defineProps<Props>(), {
showDetails: false,
})
const emit = defineEmits<{
select: [userId: string]
delete: [userId: string]
}>()
const userStore = useUserStore()
const isLoading = ref(false)
const user = computed(() => userStore.getUserById(props.userId))
</script>
<template>
<div v-if="user" @click="emit('select', user.id)">
<h3>{{ user.name }}</h3>
<UserDetails v-if="showDetails" :user="user" />
</div>
</template>The most comprehensive toolkit for Claude Code -- 135 agents, 35 curated skills (+400,000 via SkillKit), 42 commands, 176+ plugins, 20 hooks, 15 rules, 7 templates, 15 MCP configs, 26 companion apps, 53 ecosystem entries, and more.
Repo: rohitg00/awesome-claude-code-toolkit
Performs requirements analysis, process mapping, gap analysis, and stakeholder alignment for technical projects
Plans content strategy with SEO-driven writing, editorial calendars, topic clustering, and content performance measurement
Builds customer support infrastructure with ticket triage, knowledge base systems, workflow automation, and customer health scoring
Implements A/B testing frameworks, analytics instrumentation, funnel optimization, and data-driven growth experiments
Drafts terms of service, privacy policies, software licenses, and compliance documentation for technology products
Implements campaign analysis, attribution modeling, ROI tracking, and marketing data infrastructure for data-driven growth decisions