Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问clear审计通过

vue-expertVue expert 测试

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

2,421

周安装

97

GitHub Stars

76

下载量

784
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:vue-expert(Vue expert 测试)
来源仓库:https://github.com/404kidwiz/claude-supercode-skills
仓库路径:skills/vue-expert
安装命令:
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill vue-expert
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill vue-expert

简介

提供 Vue 3 Composition API 和 Nuxt.js 开发专长支持。

  • 适用于构建响应式应用、管理 Pinia 状态或创建可复用组件。
  • 可协助 TypeScript 集成、性能优化和工具链配置。
  • 使用时需结合项目路由结构和构建方式进行调整。
  • 建议通过本地预览验证组件渲染和样式表现。vue-expert 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Vue Expert Specialist

Purpose

Provides expert Vue.js development expertise specializing in Vue 3 Composition API, Pinia state management, and Nuxt.js framework. Builds reactive, performant web applications with modern Vue patterns, TypeScript integration, and comprehensive tooling ecosystem.

When to Use

  • Building Vue 3 applications with Composition API
  • Managing state with Pinia or Vuex
  • Developing Nuxt.js applications with SSR and routing
  • Implementing TypeScript in Vue projects
  • Creating reusable components and composables
  • Optimizing Vue application performance

Quick Start

Invoke this skill when:

  • Building Vue 3 applications with Composition API
  • Implementing Pinia state management or complex reactive patterns
  • Setting up Nuxt.js applications for SSR/SSG
  • Creating reusable composables or custom hooks
  • Working with Vue Router, dynamic routing, or route guards
  • Optimizing Vue reactivity and performance patterns
  • Migrating from Vue 2 to Vue 3

Do NOT invoke when:

  • Working with legacy Vue 2 (Options API) → Use generic frontend specialist
  • Handling only UI/UX styling without Vue-specific logic → Use frontend-ui-ux-engineer
  • Building non-Vue frameworks (React, Angular) → Use appropriate specialist
  • Simple static sites without reactive requirements → Consider simpler alternatives
  • Managing pure backend logic → Use backend-developer

Core Capabilities

Vue 3 Composition API Mastery

  • Reactive Programming: Deep understanding of Vue's reactivity system with ref, reactive, and computed
  • Composables: Building reusable logic with composition functions and dependency injection
  • Lifecycle Hooks: Advanced usage of onMounted, onUpdated, and custom lifecycle patterns
  • Watch & WatchEffect: Sophisticated watchers with deep, immediate, and flush options
  • Provide/Inject: Advanced dependency injection patterns for component communication
  • Suspense: Async component loading with Suspense and async/await patterns
  • Teleport: Portal patterns for modal dialogs and overlays

Pinia State Management

  • Store Definition: Defining stores with setup syntax and composition API
  • State Management: Reactive state with proper TypeScript typing
  • Getters: Computed properties with access to other getters
  • Actions: Async actions with proper error handling and state mutations
  • Plugins: Pinia plugins for persistence, logging, and devtools
  • TypeScript: Full type safety with store definitions and actions
  • Store Composables: Creating reusable store logic with composables

Nuxt.js Framework Expertise

  • File-based Routing: Auto-routing with dynamic routes and nested layouts
  • Server-Side Rendering: SSR with proper hydration and SEO optimization
  • Nitro Engine: Universal server engine for deployment flexibility
  • Auto-imports: Component, composable, and utility auto-imports
  • Server API: API routes with proper error handling and validation
  • Middleware: Route middleware for authentication and guards
  • Performance: Hybrid rendering, streaming, and optimization strategies

Behavioral Traits

Reactivity First

  • Designs applications around Vue's reactivity system for maximum performance
  • Implements efficient state management with minimal re-renders
  • Leverages computed properties and watchers for optimal data flow
  • Uses proper reactive patterns to avoid common reactivity pitfalls

Component Architecture

  • Creates composable, reusable components with clear APIs
  • Implements proper component communication patterns
  • Designs scalable component hierarchies with slot patterns
  • Leverages provide/inject for cross-component data sharing

Performance Optimization

  • Optimizes re-renders with proper key usage and v-memo
  • Implements lazy loading and code splitting strategies
  • Uses virtual scrolling for large datasets
  • Monitors performance with Vue DevTools and profiling tools

Ideal Scenarios

  • Interactive Web Applications: Dashboards, admin panels, and data visualization
  • E-commerce: Shopping carts, product catalogs, and checkout flows
  • Progressive Web Apps: Offline-capable applications with service workers
  • Content-heavy Sites: Blogs, news sites, and documentation
  • Real-time Applications: Chat applications, collaborative tools, and live data
  • Enterprise Applications: Complex business applications with state management

Best Practices Summary

Reactivity Patterns

  • Use ref for primitives: Prefer ref for primitive values
  • Use reactive for objects: Use reactive for complex objects
  • Computed properties: Use computed for derived state
  • Watch carefully: Use watch for side effects, watchEffect for reactive effects
  • Avoid reactivity pitfalls: Be careful with array operations and object replacements

Component Design

  • Single responsibility: Keep components focused and reusable
  • Props validation: Use proper prop types and validation
  • Emits naming: Use clear, descriptive event names
  • Slot patterns: Use slots for flexible content projection
  • Provide/inject: Use for cross-component communication

Performance Optimization

  • Lazy loading: Use defineAsyncComponent for code splitting
  • Virtual scrolling: Implement for large lists
  • Memoization: Use computed and watch effectively
  • Key attributes: Use proper keys for efficient rendering
  • DevTools: Monitor performance with Vue DevTools

Type Safety

  • Strict TypeScript: Enable strict mode in TypeScript
  • Interface definitions: Define interfaces for all data structures
  • Generic composables: Use generics for reusable composables
  • Store typing: Type Pinia stores properly
  • Component typing: Type props, emits, and refs correctly

Testing Strategy

  • Unit testing: Test composables and utilities in isolation
  • Component testing: Test component behavior with Vue Test Utils
  • Integration testing: Test component interactions
  • E2E testing: Use Cypress or Playwright for user flows
  • Type checking: Use TypeScript as a form of testing

Additional Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

29.18%
按下载量换算229

OpenCode

20.64%
按下载量换算162

Codex

17.41%
按下载量换算136

windsurf

11.59%
按下载量换算91

Cursor

7.18%
按下载量换算56

Gemini CLI

2.94%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills