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.
npx skills add arco-design/arco-design-skill --skill arco-design-vuegit clone --depth 1 https://github.com/arco-design/arco-design-skillWrote 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/skills/arco-design/arco-design-skill/arco-design-vue)<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.
<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>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.00181 | $0.03175 |
| Opus 5 | $0.00090 | $0.01588 |
| Sonnet 5 | $0.00036 | $0.00635 |
| Haiku 4.5 | $0.00018 | $0.00317 |
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.
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-type、show-jumper、row-selection。 - 事件使用 Vue 语法:
@click、@change、@page-change、@submit-success。 - 双向绑定使用
v-model或命名形式:v-model:visible、v-model:selected-keys、v-model:current。 - 插槽使用
#slot-name;作用域插槽参数以组件文档为准。 - 表单使用
:model、field和校验规则;子输入控件用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 | 标题、段落、文本、省略、复制、编辑 |
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.
- references/components/data-display/avatar.md 3.8 KB
- references/components/data-display/badge.md 2.8 KB
- references/components/data-display/calendar.md 2.0 KB
- references/components/data-display/card.md 3.1 KB
- references/components/data-display/carousel.md 3.6 KB
- references/components/data-display/collapse.md 3.7 KB
- references/components/data-display/comment.md 3.4 KB
- references/components/data-display/descriptions.md 3.9 KB
- references/components/data-display/empty.md 1.3 KB
- references/components/data-display/image.md 6.0 KB
- references/components/data-display/list.md 4.9 KB
- references/components/data-display/overflow-list.md 2.2 KB
- references/components/data-display/popover.md 2.4 KB
- references/components/data-display/statistic.md 3.0 KB
- references/components/data-display/table.md 14 KB
- references/components/data-display/tabs.md 3.8 KB
- references/components/data-display/tag.md 3.1 KB
- references/components/data-display/timeline.md 3.8 KB
- references/components/data-display/tooltip.md 2.6 KB
- references/components/data-display/tree.md 8.7 KB
- references/components/data-entry/auto-complete.md 3.1 KB
- references/components/data-entry/cascader.md 7.3 KB
- references/components/data-entry/checkbox.md 3.4 KB
- references/components/data-entry/color-picker.md 2.8 KB
- references/components/data-entry/date-picker.md 10 KB
- references/components/data-entry/form.md 8.0 KB
- references/components/data-entry/input-number.md 4.1 KB
- references/components/data-entry/input-tag.md 3.3 KB
- references/components/data-entry/input.md 4.5 KB
- references/components/data-entry/mention.md 3.0 KB
- references/components/data-entry/radio.md 3.5 KB
- references/components/data-entry/rate.md 2.2 KB
- references/components/data-entry/select.md 8.0 KB
- references/components/data-entry/slider.md 2.5 KB
- references/components/data-entry/switch.md 3.3 KB
- references/components/data-entry/textarea.md 2.7 KB
- references/components/data-entry/time-picker.md 4.1 KB
- references/components/data-entry/transfer.md 4.1 KB
- references/components/data-entry/tree-select.md 4.7 KB
- references/components/data-entry/upload.md 6.1 KB
- references/components/data-entry/verification-code.md 2.7 KB
- references/components/feedback/alert.md 2.3 KB
- references/components/feedback/drawer.md 5.0 KB
- references/components/feedback/message.md 3.5 KB
- references/components/feedback/modal.md 5.8 KB
- references/components/feedback/notification.md 4.2 KB
- references/components/feedback/popconfirm.md 2.5 KB
- references/components/feedback/progress.md 2.3 KB
- references/components/feedback/result.md 1.9 KB
- references/components/feedback/skeleton.md 2.1 KB
- references/components/feedback/spin.md 1.7 KB
- references/components/general/button.md 4.0 KB
- references/components/general/config-provider.md 3.8 KB
- references/components/general/icon.md 1.5 KB
- references/components/general/link.md 1.9 KB
- references/components/general/typography.md 5.9 KB
- references/components/layout/divider.md 3.6 KB
- references/components/layout/grid.md 7.4 KB
- references/components/layout/layout.md 5.0 KB
- references/components/layout/space.md 2.2 KB
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.
- 12d ago First seen · 172 lines · 181 tokens per session scan A e453e37fe88c
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.
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.
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…
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.
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.
loom-accessibility
Web accessibility patterns, WCAG compliance, and inclusive design.
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.…