vben
- Repo stars 23
- Author updated Live
- Author repo skills
- Domain
- Other
- Compatible agents
-
- Claude Code
- Cursor
- Cline
- Codex
- Windsurf
- Gemini CLI
- +20
- Trust score
- 88 / 100 · community maintained
- Author / version / license
- @vbenjs · no license declared
- Token usage
- Lean
- Setup complexity
- Guided setup
- External API key
- Not required
- Operating systems
- Docker
- Runtime requirements
- Docker
- Permissions
-
- Read-only
- Write / modify
- Env read
- Network behavior
- Local-only
- Install commands
- 26 variants
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
---
name: vben
description: 基于 Vben Admin 5.0 文档的专业开发指导技能,帮助快速开发中后台管理系统。 采用 Monorepo 架构,核心目录: ├── apps/ # 应用目录 │ ├── web-ant…
category: other
runtime: Docker
---
# vben output preview
## PART A: Task fit
- Use case: 基于 Vben Admin 5.0 文档的专业开发指导技能,帮助快速开发中后台管理系统。 采用 Monorepo 架构,核心目录: ├── apps/ # 应用目录 │ ├── web-antd/ # Ant Design Vue 应用 │ ├── web-ele/ # Element Plus 应用 runs entirely locally; runs on Docker. Works with Claude Code, Cursor, Cline and 23 more..
- Inputs: target material, constraints, expected output, and acceptance criteria.
- Evidence boundary: follow “项目结构 / 常用命令 / 核心开发指南” and do not present inference as author intent.
## PART B: Execution result
- **01** The card summarizes the use case; runtime output centers on “基于 Vben Admin 5.0 文档的专业开发指导技能,帮助快速开发中后台管理系统。 采用 Monorepo 架构,核心目录: ├── apps/ # 应用目录 │ ├── web-antd/ # Ant Design Vue 应用 │ ├── web-ele/ # Element Plus 应用 runs entirely locally; runs on Docker. Works with Claude Code, Cursor, Cline and 23 more.”.
- **02** When the source has headings, the agent prioritizes “项目结构 / 常用命令 / 核心开发指南” so the result follows the author’s structure.
- **03** Typical output includes task judgment, concrete steps, required commands or file edits, validation, and follow-up options.
- **04** Risk context follows the fingerprint: read files, write/modify files, read environment variables; mostly runs locally; usually needs no extra API key.
## Running Rules
- read files, write/modify files, read environment variables; mostly runs locally; usually needs no extra API key.
- Validate with a small sample before expanding scope.
- Return the result, validation criteria, and next iteration options. The source does not require a stable slash command. After installation, invoke the skill by name and describe the task.
Name target files or source material, expected output, forbidden changes, and whether network or shell access is allowed. Permission fingerprint: read files, write/modify files, read environment variables.
Start with a small task and check whether the result follows “项目结构 / 常用命令 / 核心开发指南”. Inspect diffs, logs, previews, or tests before expanding scope.
Confirm the final output includes a concrete result, evidence, and next action. If it stays generic, tighten inputs, boundaries, and acceptance criteria.
---
name: vben
description: 基于 Vben Admin 5.0 文档的专业开发指导技能,帮助快速开发中后台管理系统。 采用 Monorepo 架构,核心目录: ├── apps/ # 应用目录 │ ├── web-ant…
category: other
source: vbenjs/skills
---
# vben
## When to use
- 基于 Vben Admin 5.0 文档的专业开发指导技能,帮助快速开发中后台管理系统。 采用 Monorepo 架构,核心目录: ├── apps/ # 应用目录 │ ├── web-antd/ # Ant Design Vue 应用…
- Use it when the task has clear inputs, repeatable steps, and validation criteria.
## What to provide
- Target material, scope, expected result, and forbidden changes.
- Whether network, commands, file writes, or external services are allowed.
## Execution rules
- Organize steps around “项目结构 / 常用命令 / 核心开发指南” and keep inference separate from source facts.
- read files, write/modify files, read environment variables; mostly runs locally; usually needs no extra API key.
- Validate with a small sample before expanding the task.
## Output requirements
- Return the deliverable, key evidence, validation method, and next action.
- Mark missing information as unknown; do not invent commands, platforms, or dependencies. The author source anchors workflow facts; repository files anchor sources and commands; Fluxly only adds fit, limitations, and quality judgment.
skill "vben" {
input -> user goal + target files + boundaries + acceptance criteria
context -> 项目结构 / 常用命令 / 核心开发指南
rules -> SKILL.md triggers / order / output contract
runtime -> Docker | read files, write/modify files, read environment variables | mostly runs locally
guardrails -> usually needs no extra API key + small-sample validation + diff/log review
output -> copyable result + checklist + next iteration
} Vben Admin 开发技能
基于 Vben Admin 5.0 文档的专业开发指导技能,帮助快速开发中后台管理系统。
项目结构
采用 Monorepo 架构,核心目录:
├── apps/ # 应用目录
│ ├── web-antd/ # Ant Design Vue 应用
│ ├── web-ele/ # Element Plus 应用
│ ├── web-naive/ # Naive UI 应用
│ └── backend-mock/ # Mock 后端服务
├── packages/ # 共享包
│ ├── @core/ # 核心包(UI组件、布局等)
│ ├── effects/ # 副作用包(权限、请求、hooks等)
│ ├── stores/ # 状态管理
│ ├── locales/ # 国际化
│ └── utils/ # 工具函数
└── internal/ # 内部工具配置
常用命令
# 开发
pnpm dev:antd # 启动 Ant Design 应用
pnpm dev:ele # 启动 Element Plus 应用
pnpm dev:naive # 启动 Naive UI 应用
# 构建
pnpm build # 构建所有应用
pnpm build:antd # 构建指定应用
# 其他
pnpm lint # 代码检查
pnpm check:type # 类型检查
pnpm reinstall # 重新安装依赖
核心开发指南
路由与菜单
路由配置位于 src/router/routes/modules/ 目录:
import type { RouteRecordRaw } from 'vue-router';
const routes: RouteRecordRaw[] = [
{
meta: {
icon: 'mdi:home',
title: $t('page.home.title'),
authority: ['admin'], // 权限控制
order: 1000, // 菜单排序
keepAlive: true, // 开启缓存
hideInMenu: false, // 菜单中隐藏
hideInTab: false, // 标签页中隐藏
},
name: 'Home',
path: '/home',
component: () => import('#/views/home/index.vue'),
},
];
export default routes;
权限控制
三种模式在 preferences.ts 中配置:
import { defineOverridesPreferences } from '@vben/preferences';
export const overridesPreferences = defineOverridesPreferences({
app: {
accessMode: 'frontend', // 'frontend' | 'backend' | 'mixed'
},
});
按钮级权限:
<script setup>
import { AccessControl, useAccess } from '@vben/access';
const { hasAccessByCodes, hasAccessByRoles } = useAccess();
</script>
<template>
<!-- 权限码方式 -->
<AccessControl :codes="['AC_100100']" type="code">
<Button>有权限可见</Button>
</AccessControl>
<!-- 角色方式 -->
<Button v-if="hasAccessByRoles(['admin'])">管理员可见</Button>
<!-- 指令方式 -->
<Button v-access:code="'AC_100100'">有权限可见</Button>
</template>
偏好设置配置
在应用目录的 preferences.ts 中配置:
import { defineOverridesPreferences } from '@vben/preferences';
export const overridesPreferences = defineOverridesPreferences({
app: {
layout: 'sidebar-nav', // 布局方式
locale: 'zh-CN', // 语言
dynamicTitle: true, // 动态标题
watermark: false, // 水印
loginExpiredMode: 'page', // 登录过期模式
},
theme: {
mode: 'dark', // 主题模式
builtinType: 'default', // 内置主题
colorPrimary: 'hsl(212 100% 45%)', // 主题色
},
sidebar: {
collapsed: false, // 侧边栏折叠
width: 224, // 侧边栏宽度
},
tabbar: {
enable: true, // 标签页
keepAlive: true, // 缓存
},
});
API 请求
请求配置在 src/api/request.ts:
import { requestClient } from '#/api/request';
// GET 请求
export async function getUserInfoApi() {
return requestClient.get<UserInfo>('/user/info');
}
// POST 请求
export async function saveUserApi(user: UserInfo) {
return requestClient.post<UserInfo>('/user', user);
}
代理配置在 vite.config.mts:
export default defineConfig(async () => {
return {
vite: {
server: {
proxy: {
'/api': {
target: 'http://localhost:5320/api',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ''),
},
},
},
},
};
});
国际化
使用 $t() 函数:
import { $t } from '#/locales';
meta: {
title: $t('page.home.title'),
}
语言文件在 packages/locales/ 目录。
主题定制
CSS 变量覆盖:
:root {
--primary: 212 100% 45%;
--sidebar: 0 0% 100%;
--header: 0 0% 100%;
}
.dark {
--background: 222.34deg 10.43% 12.27%;
--sidebar: 222.34deg 10.43% 12.27%;
}
登录接口对接
需要的接口:
// src/api/core/auth.ts
export async function loginApi(data: LoginParams) {
return requestClient.post<LoginResult>('/auth/login', data);
}
// src/api/core/user.ts
export async function getUserInfoApi() {
return requestClient.get<UserInfo>('/user/info');
}
// src/api/core/auth.ts (可选)
export async function getAccessCodesApi() {
return requestClient.get<string[]>('/auth/codes');
}
环境变量
# .env.development
VITE_PORT=5555
VITE_GLOB_API_URL=/api
VITE_NITRO_MOCK=true
# .env.production
VITE_GLOB_API_URL=https://api.example.com
VITE_COMPRESS=gzip
VITE_ROUTER_HISTORY=hash
别名配置
使用 # 开头的路径别名:
// package.json
{
"imports": {
"#/*": "./src/*"
}
}
// 使用
import { useAuthStore } from '#/store';
详细参考文档
需要更多细节时,查阅以下参考文件:
核心功能 (references/core/)
- 路由菜单:
references/core/route.md- 路由配置、Meta属性、多级菜单 - 权限控制:
references/core/access.md- 三种权限模式、按钮级权限 - 偏好设置:
references/core/preferences.md- 完整配置项说明 - 主题定制:
references/core/theme.md- CSS变量、内置主题、自定义主题 - API请求:
references/core/api.md- 请求配置、拦截器、多接口地址 - 国际化:
references/core/locale.md- 语言配置、新增语言包 - 登录对接:
references/core/login.md- 登录接口、Token刷新 - 图标使用:
references/core/icons.md- Iconify图标、SVG图标
业务组件 (references/components/business/)
- Page页面:
references/components/business/page.md- 页面布局容器、标题区、内容区 - 表单组件:
references/components/business/form.md- Vben Form表单配置、校验、联动 - 表格组件:
references/components/business/table.md- Vben Vxe Table表格配置、搜索、远程加载 - 模态框:
references/components/business/modal.md- Vben Modal配置、拖拽、全屏 - 抽屉:
references/components/business/drawer.md- Vben Drawer配置、组件抽离 - 轻量提示框:
references/components/business/alert.md- alert、confirm、prompt调用 - API组件包装器:
references/components/business/api-component.md- 远程数据自动加载
通用组件 (references/components/common/)
- 数字动画:
references/components/common/count-to.md- CountToAnimator数字滚动动画 - 省略文本:
references/components/common/ellipsis-text.md- EllipsisText文本省略展开
功能配置 (references/features/)
- 常用功能:
references/features/features.md- 水印、缓存、动态标题等
构建部署 (references/deployment/)
- 构建部署:
references/deployment/deploy.md- 构建配置、Nginx、Docker - 常见问题:
references/deployment/faq.md- 依赖安装、打包部署、错误排查
Decide Fit First
Design Intent
How To Use It
Boundaries And Review