arco-design-vue

arco-design-vue is a skill for Claude Code, Codex from arco-design/arco-design-skill. It costs 181 tokens per session (3,175 once invoked), scanned A, original, MIT.

A reference for building Vue 3 interfaces with Arco Design Vue, a library of ready-made user-interface components. It covers components such as buttons, tables, forms, dialogs, navigation, and date controls.

In plain words
What is it for?
Use it when creating Vue pages, dashboards, forms, tables, dialogs, or other web interfaces with the @arco-design/web-vue package.
Why use it?
It gives developers the library’s required import, styling, event, form, and data-binding conventions. This reduces mistakes when combining Vue code with Arco components.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when creating Vue pages, dashboards, forms, tables, dialogs, or other web interfaces with the @arco-design/web-vue package.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/arco-design/arco-design-skill/arco-design-vue
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.

Any agent
npx skills add arco-design/arco-design-skill --skill arco-design-vue
Clone the repo
git clone --depth 1 https://github.com/arco-design/arco-design-skill

Made for: Claude Code, Codex.

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 arco-design-vue

README.md
[![agentmods](https://agentmods.dev/badge/skills/arco-design/arco-design-skill/arco-design-vue/github.svg)](https://agentmods.dev/skills/arco-design/arco-design-skill/arco-design-vue)
Your own site
<a href="https://agentmods.dev/skills/arco-design/arco-design-skill/arco-design-vue"><img src="https://agentmods.dev/badge/skills/arco-design/arco-design-skill/arco-design-vue/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.

agentmods 80×15 button for arco-design-vue

Your own site · 80×15
<a href="https://agentmods.dev/skills/arco-design/arco-design-skill/arco-design-vue"><img src="https://agentmods.dev/badge/skills/arco-design/arco-design-skill/arco-design-vue.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 181 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,175 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00181 $0.03175
Opus 5 $0.00090 $0.01588
Sonnet 5 $0.00036 $0.00635
Haiku 4.5 $0.00018 $0.00317

Measured 12d ago against content hash e453e37fe88c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

arco-design-vue 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 12d 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.

skills/arco-design-vue/SKILL.md · 172 lines

How it starts

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

Arco Design Vue Skill

@arco-design/web-vue 是 Arco Design 的 Vue 3 组件库实现。

关键约定

编写 Arco Design Vue 代码时始终遵守这些规则:

  • 使用 Vue 3。新代码优先使用 <script setup lang="ts"> 和 Composition API。
  • 完整引入:
import { createApp } from 'vue';
import ArcoVue from '@arco-design/web-vue';
import '@arco-design/web-vue/dist/arco.css';
import App from './App.vue';

const app = createApp(App);
app.use(ArcoVue);
app.mount('#app');
  • 组件与服务从根包导入:import { Button, Table, Form, Message } from '@arco-design/web-vue'
  • 图标从图标入口导入:import { IconSearch, IconPlus } from '@arco-design/web-vue/es/icon'
  • 样式完整引入使用 @arco-design/web-vue/dist/arco.css。手动按需引入时使用组件样式,例如 @arco-design/web-vue/es/button/style/css.js
  • 默认全局组件标签使用 a- 前缀:<a-button><a-table><a-form><a-form-item>
  • 模板中的属性使用 kebab-case:html-typeshow-jumperrow-selection
  • 事件使用 Vue 语法:@click@change@page-change@submit-success
  • 双向绑定使用 v-model 或命名形式:v-model:visiblev-model:selected-keysv-model:current
  • 插槽使用 #slot-name;作用域插槽参数以组件文档为准。
  • 表单使用 :modelfield 和校验规则;子输入控件用 v-model
  • 日期时间组件内部使用 dayjs;不要引入 Moment.js。
  • 优先使用本 skill 中的 Vue 示例。不要套用 React 专属 API,例如 Form.useForm、JSX children 或 Component.Sub

Skill 索引

需要完整属性、事件、插槽、示例和使用要点时,加载对应参考文件。

安装与配置

主题 文件 适用场景
安装 getting-started.md 安装 @arco-design/web-vue、注册 ArcoVue、引入样式、配置按需加载
全局配置 config-provider.md 使用 app.use(ArcoVue, options)<a-config-provider> 配置语言、前缀、尺寸等
主题 theming.md Less 变量、主题包、暗黑模式、CSS/样式引入
国际化 internationalization.md 语言包和 <a-config-provider :locale="...">
架构约定 architecture.md Vue 3 SFC 结构、导入、v-model、属性、事件、插槽、组件注册

通用

组件 文件 适用场景
Button button.md 操作按钮、加载按钮、图标按钮、按钮组
ConfigProvider config-provider.md 全局语言、前缀、尺寸、滚动更新等配置
Icon icon.md 内置图标、图标注册、按需导入、iconfont.cn
Link link.md 链接及其状态、图标链接
Typography typography.md 标题、段落、文本、省略、复制、编辑

Read the full file on GitHub · 172 lines

Files

What ships with it

60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 172 lines · 181 tokens per session scan A e453e37fe88c

Subscribe to this mod's changes

arco-design-vue is a skill published in the GitHub repository arco-design/arco-design-skill (69 stars, last pushed 3mo ago), licensed MIT. It adds 181 tokens to every session and 3,175 once invoked, about $0.0009 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 skills, from other repositories

eval-graphics

Turn an eval study's numbers into on-brand, publish-ready figures using the Newsjack chart room (the eval design system), then validate them with Playwright. For producing the charts in a published eval/data study.

elvisun/newsjack · 47 tokens

shadcn-ui

Provides complete shadcn/ui component library patterns including installation, configuration, and implementation of accessible React components. Use when setting up shadcn/ui, installing components, building forms with React Hook Form and Zod, customizing themes with Tailwind CSS, or implementing UI patterns like…

giuseppe-trisciuoglio/developer-kit · 74 tokens

tailwind-design-system

Skill for creating and managing a Design System using Tailwind CSS and shadcn/ui. Use when defining design tokens, setting up theming with CSS variables, building a consistent UI component library, initializing a design system configuration, or wrapping shadcn/ui components into design system primitives.

giuseppe-trisciuoglio/developer-kit · 62 tokens

tailwind-css-patterns

Provides comprehensive Tailwind CSS utility-first styling patterns including responsive design, layout utilities, flexbox, grid, spacing, typography, colors, and modern CSS best practices. Use when styling React/Vue/Svelte components, building responsive layouts, implementing design systems, or optimizing CSS workflow.

giuseppe-trisciuoglio/developer-kit · 62 tokens

loom-accessibility

Web accessibility patterns, WCAG compliance, and inclusive design.

cosmix/loom · 16 tokens

aksel-builder

Expert builder for Aksel, the Nav / @navikt design system — React components, design tokens, layout primitives, theming (light/dark), icons, CSS, the Tailwind preset, version migrations, Figma-to-code. Triggers — Aksel, "using/with aksel", Nav/Navikt, "designsystemet", "design system", @navikt/ds- (e.g.…

navikt/copilot · 181 tokens