Claude Skill
addyosmani/agent-skills
为Claude Code、Cursor等AI编程代理精选的生产级工程技能集合。通过可复用的技能定义提升代理的可靠性与效率。
概览
仓库信息
安装这个 Skill
git clone https://github.com/addyosmani/agent-skills.gitRegistry 信息
项目简介
一个精选的生产级工程技能集合,旨在增强AI编程代理(包括Claude Code和Cursor)的能力。该仓库提供可重用的高质量技能定义,帮助代理更可靠、高效地执行复杂工程任务。
Production-grade engineering skills for AI coding agents.
要点
- 面向AI编程代理的生产级技能定义
- 兼容Claude Code、Cursor及其他基于代理的IDE
- 由Google Chrome工程负责人精选
- 开源且社区贡献的技能集合
- 聚焦实际工程可靠性
使用场景
- 为Claude Code添加专业工程技能
- 提升Cursor代理在复杂任务中的表现
- 跨开发团队标准化代理行为
- 加速代码审查与重构工作流
- 教导AI代理软件工程最佳实践
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 7 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 | | Simplify the code | `/code-simplify` | Clarity over cleverness | | Ship to production | `/ship` | Faster is safer | Skills also activate automatically based on what you're doing — designing an API triggers `api-and-interface-design`, building UI triggers `frontend-ui-engineering`, and so on. --- ## Quick Start <details> <summary><b>Claude Code (recommended)</b></summary> **Marketplace install:** ``` /plugin marketplace add addyosmani/agent-skills /plugin install agent-skills@addy-agent-skills ``` > **SSH errors?** The marketplace clones repos via SSH. If you don't have SSH keys set up on GitHub, either [add your SSH key](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account) or use the full HTTPS URL to force the HTTPS cloning: > ```bash > /plugin marketplace add https://github.com/addyosmani/agent-skills.git > /plugin install agent-skills@addy-ag