用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/diegosouzapw/awesome-omni-skill --skill vue命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Token-efficient tracking for AI orchestration. CLI-first for status updates (~50 tokens), agent fallback for complex ops (~1KB). Use when: updating task status, querying blockers, creating progress files, validating phases.
AshAi extension guidelines for integrating AI capabilities with Ash Framework. Use when implementing vectorization/embeddings, exposing Ash actions as LLM tools, creating prompt-backed actions, or setting up MCP servers. Covers semantic search, LangChain integration, and structured outputs.
This skill should be used when solving hard questions, complex architectural problems, or debugging issues that benefit from GPT-5 Pro or GPT-5.1 thinking models with large file context. Use when standard Claude analysis needs deeper reasoning or extended context windows.
基于 SOC 职业分类
正在显示 SKILL.md
| name | vue |
| description | Vue 组件开发与代码审查技能 - 开发模式:描述需求时生成高质量 Vue 组件/Composable - 审查模式:/vue <path> 审查该路径下所有 Vue 文件 |
| argument-hint | 描述需求 或 /vue <path> |
| user-invocable | true |
| paths | ["**/*.vue"] |
当用户描述需求时,生成高质量的 Vue 代码:
创建一个用户列表组件
封装 Element Plus 的 Table 组件
写一个 useTable composable
这个组件太大了,帮我拆分
触发条件:用户描述包含"创建"、"生成"、"封装"、"编写"、"拆分"等关键词
当用户使用 /vue <path> 命令时,审查指定路径下的 Vue 文件:
/vue src/components
/vue src/views/Dashboard.vue
/vue # 审查当前目录
执行流程:
执行流程:
文件扫描 — 使用 Glob 查找指定路径下的所有 .vue 和 composables 文件
展示检查清单 — 展示可检查项,等待用户确认:
以下是可执行的检查项,请确认需要检查哪些(默认全选,回复排除项的编号即可):
1. [x] 组件结构
2. [x] TypeScript 类型
3. [x] 组件封装
4. [x] Composable
5. [x] 性能
6. [x] 现代语法
7. [x] 代码规范
8. [x] 可访问性 (a11y)
9. [ ] 测试(默认不选,需明确指定)
逐项检查 — 按照清单扫描代码,记录问题
输出诊断报告 — 按统一格式输出结果(见下方)
用户请求 → 判断类型
是纯逻辑复用吗?
→ YES: Composable (useXxx)
→ NO: 继续
是封装组件库组件吗?
→ YES: 二次封装(保证类型透传)
→ NO: 继续
业务逻辑复杂 或 >1300 行?
→ YES: 拆分为子组件 + Composable
→ NO: 单文件组件
## 📋 [文件名] 审查结果
### ✅ 通过项
- [x] 组件结构合理
- [x] TypeScript 类型完整
- [x] ...
### ❌ 问题项
- [ ] **[问题标题]**
- 位置:[文件:行号]
- 问题:[描述]
- 建议:[改进方案]
### 📊 总评:X/10
详细规则位于 references/ 目录:
references/component-types.md — 组件分类、大组件拆分规则references/wrapper-pattern.md — 二次封装完整指南references/composable-rules.md — Composable 编写规则references/modern-features.md — Vue 3.3+ / 3.5+ 新特性references/review-checklist.md — 详细的审查清单references/project-setup.md — Vue Web 项目配置(unplugin-vue-components 等)