项目地址
https://github.com/addyosmani/agent-skills
AI 摘要
Agent Skills 是一套面向 AI 编程代理的生产级工程技能包,内置资深工程师的工作流程、质量关卡和最佳实践,覆盖从需求定义到上线交付的全流程。它提供 8 个斜杠命令(如 /spec、/plan、/build、/test 等)对应开发各阶段,并支持 /build auto 自动执行任务。项目包含 24 个技能,可通过 CLI 一键安装到 70+ 主流 AI 代理工具,也适配 Claude Code、Cursor 等原生集成,帮助代理在开发中自动触发合适的技能。
README 原文
Agent Skills
Production-grade engineering skills for AI coding agents.
Skills encode the workflows, quality gates, and best practices that senior engineers use when building software. These ones are packaged so AI agents follow them consistently across every phase of development.


DEFINE PLAN BUILD VERIFY REVIEW SHIP
┌──────┐ ┌──────┐ ┌──────┐ ┌──────┐ ┌──────┐ ┌──────┐
│ Idea │ ───▶ │ Spec │ ───▶ │ Code │ ───▶ │ Test │ ───▶ │ QA │ ───▶ │ Go │
│Refine│ │ PRD │ │ Impl │ │Debug │ │ Gate │ │ Live │
└──────┘ └──────┘ └──────┘ └──────┘ └──────┘ └──────┘
/spec /plan /build /test /review /ship
Commands
8 slash commands that map to the development lifecycle. Each one activates the right skills automatically.
| What you're doing |
Command |
Key principle |
| Define what to build |
/spec |
Spec before code |
| Plan how to build it |
/plan |
Small, atomic tasks |
| Build incrementally |
/build |
One slice at a time |
| Prove it works |
/test |
Tests are proof |
| Review before merge |
/review |
Improve code health |
| Audit web performance |
/webperf |
Measure before you optimize |
| Simplify the code |
/code-simplify |
Clarity over cleverness |
| Ship to production |
/ship |
Faster is safer |
Want fewer manual steps once the spec exists? /build auto generates the plan and implements every task in a single approved pass — you approve the plan once, then it runs autonomously. It removes the hu...
项目地址
https://github.com/addyosmani/agent-skills
AI 摘要
Agent Skills 是一套面向 AI 编程代理的生产级工程技能包,内置资深工程师的工作流程、质量关卡和最佳实践,覆盖从需求定义到上线交付的全流程。它提供 8 个斜杠命令(如 /spec、/plan、/build、/test 等)对应开发各阶段,并支持
/build auto自动执行任务。项目包含 24 个技能,可通过 CLI 一键安装到 70+ 主流 AI 代理工具,也适配 Claude Code、Cursor 等原生集成,帮助代理在开发中自动触发合适的技能。README 原文
Agent Skills
Production-grade engineering skills for AI coding agents.
Skills encode the workflows, quality gates, and best practices that senior engineers use when building software. These ones are packaged so AI agents follow them consistently across every phase of development.
Commands
8 slash commands that map to the development lifecycle. Each one activates the right skills automatically.
/spec/plan/build/test/review/webperf/code-simplify/shipWant fewer manual steps once the spec exists?
/build autogenerates the plan and implements every task in a single approved pass — you approve the plan once, then it runs autonomously. It removes the hu...