🔧 通用工程流(几乎必装)
1. Superpowers(obra/superpowers)
结构化软件工程工作流框架,不是单一 Skill,而是一整套 Agent 方法论:brainstorming → writing plans → TDD → debugging → code review → verification,复杂任务还能拆给子代理并行推进 。
bash
# Claude Code
/plugin marketplace add obra/superpowers-marketplace
/plugin install superpowers@superpowers-marketplace
# 通用(Cursor/Claude Code 都支持)
npx skills add https://github.com/obra/superpowers -g -a cursor -a claude-code -y
💡 Claude Code 用户首推这个;Cursor 用户也可以装,但同源的
systematic-debugging、test-driven-development不必重复装。
2. spec-driven(tlc-spec-driven)
项目级四阶段:Specify(模糊需求→结构化规格)→ Design(数据模型/API/认证)→ Tasks(原子任务拆解)→ Implement(逐个实现 + 验证),中间断开也能从上次位置续上 。
bash
npx @tech-leads-club/agent-skills install -s tlc-spec-driven -a claude-code
3. 内置/经典 slash 级(Claude Code 自带或可单独装)
/commit--- 按 staged changes 生成 conventional commit/create-pr--- 读 diff 写 PR description 并推送/review--- 代码审查(bug / 安全 / 风格)/security-audit--- 深度安全审计(OWASP Top 10 向)/test--- 按实现生成单测/architect--- 给定需求做系统设计再动笔/refactor--- 带目标的重构
这些属于"每天都能用"的,建议先把内置的玩熟,再考虑覆盖自定义版本。
🎨 前端 / 设计向
4. frontend-design(Anthropic 官方)
专治 AI 生成页面"千篇一律"的毛病------强制 bold 排版 + 非常规布局,避免 generic UI 。
5. taste-skill(Leonxlnx/taste-skill)
13 合集,前端向最有用的是 design-taste-frontend(强制设计规范)+ minimalist-skill+ output-skill(强制完整可运行代码,无占位)。还有 imagegen-frontend-web/mobile、brandkit、moodboard做视觉素材 。
bash
npx skills add https://github.com/Leonxlnx/taste-skill
# 或只装核心
npx skills add https://github.com/Leonxlnx/taste-skill --skill design-taste-frontend
6. ui-ux-pro-max(nextlevelbuilder)
输入"做个 SPA 落地页",它会推理行业→配色→字体→反模式提示,交付前还出检查清单(emoji 不能当图标、hover 状态要完整这类细节)。
🛡️ 安全向
7. Anthropic Cybersecurity Skills(mukul975/Anthropic-Cybersecurity-Skills)
817 个安全技能,覆盖威胁情报 / 漏洞管理 / 渗透测试 / 事件响应 / 合规审计 / 云安全 / AI 安全,每个技能映射到 MITRE ATT&CK、NIST CSF 2.0、D3FEND、NIST AI RMF、MITRE F3、MITRE ATLAS 六大框架 。
csharp
npx skills add mukul975/Anthropic-Cybersecurity-Skills
装完后直接对 Agent 说:"按 MITRE ATT&CK 检测过去 7 天横向移动(T1021.001, T1570)",它会自动加载对应 SKILL.md 按步骤干。
8. Trail of Bits(真实安全公司出品)
CodeQL + Semgrep + 审计工作流,Verified 级 。
🔬 科研向
9. Scientific Agent Skills(K-Dense-AI/scientific-agent-skills)
138 个科研技能,17 个领域(基因组学 / 药物发现 / 临床变异 / 单细胞 RNA-seq 等),直连 100+ 数据库(PubChem、ChEMBL、UniProt...),集成 70+ Python 包(RD-py、Scanpy、BioPython、OpenMM)。
bash
npx skills add K-Dense-AI/scientific-agent-skills
🔌 垂直工具向(Cursor Marketplace 为主)
这类不是 SKILL.md标准包,而是 Cursor 的 Plugin / MCP 形态,但效果类似------让 Agent 懂某个垂直工具:
- Composio --- 1000+ SaaS 集成(OAuth + 结构化 action),一站打通
- Shopify --- 搜文档 + 生成校验 GraphQL / Liquid / UI 扩展
- RevenueCat / Chargebee / Airwallex --- 支付计费向
- ParadeDB --- Postgres 里做 Elastic 级搜索(BM25 / 向量)
- Dagster --- 数据编排
- Asana / Monday.com / Merge --- 企业协作(Jira / Salesforce / Slack 等几百种)
📦 安装方式速记
| 载体 | 路径 / 命令 |
|---|---|
| Claude Code 内置 slash | .claude/commands/*.md,文件名即 /command |
| Claude Code npx 装第三方 | npx skills add <repo>或 /plugin marketplace add |
| Cursor | .cursor/skills/*.md或 Cursor Marketplace 一键装 |
| 通用(跨 Agent) | 遵循 SKILL.md标准,写一次 Cursor/Claude Code/Codex/Gemini CLI 都能吃 |
🎯 新手推荐组合
如果你是第一次装,建议这个"起步包"就够用:
- superpowers(工程流骨架)
- spec-driven(项目级需求→实现)
- frontend-design 或 taste-skill(做前端时)
- /security-audit 或 Cybersecurity Skills(安全向)