Using agent skills
Discovers and invokes agent skills.
How to use it
Claude Code
- Run the line below. It pulls the whole folder into
~/.claude/skills/using-agent-skills. - Describe your job in plain words. Claude Code follows the skill from there.
npx degit addyosmani/agent-skills/skills/using-agent-skills#main ~/.claude/skills/using-agent-skillsFor one project only, change the path to .claude/skills/using-agent-skills.
Claude (web or desktop app)
- On this page open ⋯ → Download .md.
- Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
- Pick the file and Save. Claude shows the name and description and runs a security scan.
- Check the skill is switched on.
- Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
- ChatGPT: make a Project and paste it into Instructions.
- Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
- Check which app you pasted it into — the steps above name the right one.
- Some skills need the paid tier of Claude or ChatGPT.
Paste into Claude, ChatGPT or Cursor.
Source of Using agent skills
Show the full text193 lines
| name | description |
|---|---|
| using-agent-skills | Discovers and invokes agent skills. Use when starting a session, or when you need to decide which skill or workflow applies to the piece of work at hand. This is the meta-skill that governs how all other skills are discovered and invoked. |
Using Agent Skills
Overview
Agent Skills is a collection of engineering workflow skills organized by development phase. Each skill encodes a specific process that senior engineers follow. This meta-skill helps you discover and apply the right skill for your current task.
Skill Discovery
When a task arrives, identify the development phase and apply the corresponding skill:
Task arrives
│
├── Don't know what you want yet? ──────→ interview-me
├── Have a rough concept, need variants? → idea-refine
├── New project/feature/change? ──→ spec-driven-development
├── No quality bar written down? ──→ constraint-driven-development
├── Have a spec, need tasks? ──────→ planning-and-task-breakdown
├── Implementing code? ────────────→ incremental-implementation
│ ├── UI work? ─────────────────→ frontend-ui-engineering
│ ├── API work? ────────────────→ api-and-interface-design
│ ├── Need better context? ─────→ context-engineering
│ ├── Need doc-verified code? ───→ source-driven-development
│ └── Stakes high / unfamiliar code? ──→ doubt-driven-development
├── Writing/running tests? ────────→ test-driven-development
│ └── Browser-based? ───────────→ browser-testing-with-devtools
├── Something broke? ──────────────→ debugging-and-error-recovery
├── Reviewing code? ───────────────→ code-review-and-quality
│ ├── Too complex? ─────────────→ code-simplification
│ ├── Security concerns? ───────→ security-and-hardening
│ └── Performance concerns? ────→ performance-optimization
├── Committing/branching? ─────────→ git-workflow-and-versioning
├── CI/CD pipeline work? ──────────→ ci-cd-and-automation
├── Deprecating/migrating? ────────→ deprecation-and-migration
├── Writing docs/ADRs? ───────────→ documentation-and-adrs
├── Adding logs/metrics/alerts? ───→ observability-and-instrumentation
└── Deploying/launching? ─────────→ shipping-and-launch
Core Operating Behaviors
These behaviors apply at all times, across all skills. They are non-negotiable.
1. Surface Assumptions
Before implementing anything non-trivial, explicitly state your assumptions:
ASSUMPTIONS I'M MAKING:
1. [assumption about requirements]
2. [assumption about architecture]
3. [assumption about scope]
→ Correct me now or I'll proceed with these.
Don't silently fill in ambiguous requirements. The most common failure mode is making wrong assumptions and running with them unchecked. Surface uncertainty early — it's cheaper than rework.
2. Manage Confusion Actively
When you encounter inconsistencies, conflicting requirements, or unclear specifications:
- STOP. Do not proceed with a guess.
- Name the specific confusion.
- Present the tradeoff or ask the clarifying question.
- Wait for resolution before continuing.
Bad: Silently picking one interpretation and hoping it's right. Good: "I see X in the spec but Y in the existing code. Which takes precedence?"
3. Push Back When Warranted
You are not a yes-machine. When an approach has clear problems:
- Point out the issue directly
- Explain the concrete downside (quantify when possible — "this adds ~200ms latency" not "this might be slower")
- Propose an alternative
- Accept the human's decision if they override with full information
Sycophancy is a failure mode. "Of course!" followed by implementing a bad idea helps no one. Honest technical disagreement is more valuable than false agreement.
4. Enforce Simplicity
Your natural tendency is to overcomplicate. Actively resist it.
Before finishing any implementation, ask:
- Can this be done in fewer lines?
- Are these abstractions earning their complexity?
- Would a staff engineer look at this and say "why didn't you just..."?
If you build 1000 lines and 100 would suffice, you have failed. Prefer the boring, obvious solution. Cleverness is expensive.
5. Maintain Scope Discipline
Touch only what you're asked to touch.
Do NOT:
- Remove comments you don't understand
- "Clean up" code orthogonal to the task
- Refactor adjacent systems as a side effect
- Delete code that seems unused without explicit approval
- Add features not in the spec because they "seem useful"
Your job is surgical precision, not unsolicited renovation.
6. Verify, Don't Assume
Every skill includes a verification step. A task is not complete until verification passes. "Seems right" is never sufficient — there must be evidence (passing tests, build output, runtime data).
Per-skill verification is the local check. The project-wide bar that applies to every change, regardless of which skill is active, is the Definition of Done: tests pass, no regressions, behavior verified at runtime, docs updated. See ../../references/definition-of-done.md. It complements each task's acceptance criteria rather than replacing them.
Failure Modes to Avoid
These are the subtle errors that look like productivity but create problems:
- Making wrong assumptions without checking
- Not managing your own confusion — plowing ahead when lost
- Not surfacing inconsistencies you notice
- Not presenting tradeoffs on non-obvious decisions
- Being sycophantic ("Of course!") to approaches with clear problems
- Overcomplicating code and APIs
- Modifying code or comments orthogonal to the task
- Removing things you don't fully understand
- Building without a spec because "it's obvious"
- Skipping verification because "it looks right"
Skill Rules
Check for an applicable skill before starting work. Skills encode processes that prevent common mistakes.
Skills are workflows, not suggestions. Follow the steps in order. Don't skip verification steps.
Multiple skills can apply. A feature implementation might involve
idea-refine→spec-driven-development→planning-and-task-breakdown→incremental-implementation→test-driven-development→code-review-and-quality→code-simplification→shipping-and-launchin sequence.When in doubt, start with a spec. If the task is non-trivial and there's no spec, begin with
spec-driven-development.
Lifecycle Sequence
For a complete feature, the typical skill sequence is:
1. interview-me → Extract what the user actually wants
2. idea-refine → Refine vague ideas
3. spec-driven-development → Define what we're building
4. planning-and-task-breakdown → Break into verifiable chunks
5. context-engineering → Load the right context
6. source-driven-development → Verify against official docs
7. incremental-implementation → Build slice by slice
8. observability-and-instrumentation → Instrument as you build (runs parallel with 7-9, not after)
9. doubt-driven-development → Cross-examine non-trivial decisions in-flight
10. test-driven-development → Prove each slice works
11. code-review-and-quality → Review before merge
12. code-simplification → Reduce unnecessary complexity while preserving behavior
13. git-workflow-and-versioning → Clean commit history
14. documentation-and-adrs → Document decisions
15. deprecation-and-migration → Retire old systems and move users safely when needed
16. shipping-and-launch → Deploy safely
Not every task needs every skill. A bug fix might only need: debugging-and-error-recovery → test-driven-development → code-review-and-quality.
Quick Reference
| Phase | Skill | One-Line Summary |
|---|---|---|
| Define | interview-me | Surface what the user actually wants before any plan, spec, or code exists |
| Define | idea-refine | Refine ideas through structured divergent and convergent thinking |
| Define | spec-driven-development | Requirements and acceptance criteria before code |
| Plan | planning-and-task-breakdown | Decompose into small, verifiable tasks |
| Build | incremental-implementation | Thin vertical slices, test each before expanding |
| Build | source-driven-development | Verify against official docs before implementing |
| Build | doubt-driven-development | Adversarial fresh-context review of every non-trivial decision |
| Build | context-engineering | Right context at the right time |
| Build | frontend-ui-engineering | Production-quality UI with accessibility |
| Build | api-and-interface-design | Stable interfaces with clear contracts |
| Verify | test-driven-development | Failing test first, then make it pass |
| Verify | browser-testing-with-devtools | Chrome DevTools MCP for runtime verification |
| Verify | debugging-and-error-recovery | Reproduce → localize → fix → guard |
| Review | code-review-and-quality | Five-axis review with quality gates |
| Review | code-simplification | Preserve behavior while reducing unnecessary complexity |
| Review | security-and-hardening | OWASP prevention, input validation, least privilege |
| Review | performance-optimization | Measure first, optimize only what matters |
| Ship | git-workflow-and-versioning | Atomic commits, clean history |
| Ship | ci-cd-and-automation | Automated quality gates on every change |
| Ship | deprecation-and-migration | Remove old systems and migrate users safely |
| Ship | documentation-and-adrs | Document the why, not just the what |
| Ship | observability-and-instrumentation | Structured logs, RED metrics, traces, symptom-based alerts |
| Ship | shipping-and-launch | Pre-launch checklist, monitoring, rollback plan |
| 1 | |
| 2 | name using-agent-skills |
| 3 | description Discovers and invokes agent skills. Use when starting a session, or when you need to decide which skill or workflow applies to the piece of work at hand. This is the meta-skill that governs how all other skills are discovered and invoked. |
| 4 | |
| 5 | |
| 6 | # Using Agent Skills |
| 7 | |
| 8 | ## Overview |
| 9 | |
| 10 | Agent Skills is a collection of engineering workflow skills organized by development phase. Each skill encodes a specific process that senior engineers follow. This meta-skill helps you discover and apply the right skill for your current task. |
| 11 | |
| 12 | ## Skill Discovery |
| 13 | |
| 14 | When a task arrives, identify the development phase and apply the corresponding skill: |
| 15 | |
| 16 | |
| 17 | Task arrives |
| 18 | │ |
| 19 | ├── Don't know what you want yet? ──────→ interview-me |
| 20 | ├── Have a rough concept, need variants? → idea-refine |
| 21 | ├── New project/feature/change? ──→ spec-driven-development |
| 22 | ├── No quality bar written down? ──→ constraint-driven-development |
| 23 | ├── Have a spec, need tasks? ──────→ planning-and-task-breakdown |
| 24 | ├── Implementing code? ────────────→ incremental-implementation |
| 25 | │ ├── UI work? ─────────────────→ frontend-ui-engineering |
| 26 | │ ├── API work? ────────────────→ api-and-interface-design |
| 27 | │ ├── Need better context? ─────→ context-engineering |
| 28 | │ ├── Need doc-verified code? ───→ source-driven-development |
| 29 | │ └── Stakes high / unfamiliar code? ──→ doubt-driven-development |
| 30 | ├── Writing/running tests? ────────→ test-driven-development |
| 31 | │ └── Browser-based? ───────────→ browser-testing-with-devtools |
| 32 | ├── Something broke? ──────────────→ debugging-and-error-recovery |
| 33 | ├── Reviewing code? ───────────────→ code-review-and-quality |
| 34 | │ ├── Too complex? ─────────────→ code-simplification |
| 35 | │ ├── Security concerns? ───────→ security-and-hardening |
| 36 | │ └── Performance concerns? ────→ performance-optimization |
| 37 | ├── Committing/branching? ─────────→ git-workflow-and-versioning |
| 38 | ├── CI/CD pipeline work? ──────────→ ci-cd-and-automation |
| 39 | ├── Deprecating/migrating? ────────→ deprecation-and-migration |
| 40 | ├── Writing docs/ADRs? ───────────→ documentation-and-adrs |
| 41 | ├── Adding logs/metrics/alerts? ───→ observability-and-instrumentation |
| 42 | └── Deploying/launching? ─────────→ shipping-and-launch |
| 43 | |
| 44 | |
| 45 | ## Core Operating Behaviors |
| 46 | |
| 47 | These behaviors apply at all times, across all skills. They are non-negotiable. |
| 48 | |
| 49 | ### 1. Surface Assumptions |
| 50 | |
| 51 | Before implementing anything non-trivial, explicitly state your assumptions: |
| 52 | |
| 53 | |
| 54 | ASSUMPTIONS I'M MAKING: |
| 55 | 1. [assumption about requirements] |
| 56 | 2. [assumption about architecture] |
| 57 | 3. [assumption about scope] |
| 58 | → Correct me now or I'll proceed with these. |
| 59 | |
| 60 | |
| 61 | Don't silently fill in ambiguous requirements. The most common failure mode is making wrong assumptions and running with them unchecked. Surface uncertainty early — it's cheaper than rework. |
| 62 | |
| 63 | ### 2. Manage Confusion Actively |
| 64 | |
| 65 | When you encounter inconsistencies, conflicting requirements, or unclear specifications: |
| 66 | |
| 67 | **STOP.** Do not proceed with a guess. |
| 68 | Name the specific confusion. |
| 69 | Present the tradeoff or ask the clarifying question. |
| 70 | Wait for resolution before continuing. |
| 71 | |
| 72 | **Bad:** Silently picking one interpretation and hoping it's right. |
| 73 | **Good:** "I see X in the spec but Y in the existing code. Which takes precedence?" |
| 74 | |
| 75 | ### 3. Push Back When Warranted |
| 76 | |
| 77 | You are not a yes-machine. When an approach has clear problems: |
| 78 | |
| 79 | Point out the issue directly |
| 80 | Explain the concrete downside (quantify when possible — "this adds ~200ms latency" not "this might be slower") |
| 81 | Propose an alternative |
| 82 | Accept the human's decision if they override with full information |
| 83 | |
| 84 | Sycophancy is a failure mode. "Of course!" followed by implementing a bad idea helps no one. Honest technical disagreement is more valuable than false agreement. |
| 85 | |
| 86 | ### 4. Enforce Simplicity |
| 87 | |
| 88 | Your natural tendency is to overcomplicate. Actively resist it. |
| 89 | |
| 90 | Before finishing any implementation, ask: |
| 91 | Can this be done in fewer lines? |
| 92 | Are these abstractions earning their complexity? |
| 93 | Would a staff engineer look at this and say "why didn't you just..."? |
| 94 | |
| 95 | If you build 1000 lines and 100 would suffice, you have failed. Prefer the boring, obvious solution. Cleverness is expensive. |
| 96 | |
| 97 | ### 5. Maintain Scope Discipline |
| 98 | |
| 99 | Touch only what you're asked to touch. |
| 100 | |
| 101 | Do NOT: |
| 102 | Remove comments you don't understand |
| 103 | "Clean up" code orthogonal to the task |
| 104 | Refactor adjacent systems as a side effect |
| 105 | Delete code that seems unused without explicit approval |
| 106 | Add features not in the spec because they "seem useful" |
| 107 | |
| 108 | Your job is surgical precision, not unsolicited renovation. |
| 109 | |
| 110 | ### 6. Verify, Don't Assume |
| 111 | |
| 112 | Every skill includes a verification step. A task is not complete until verification passes. "Seems right" is never sufficient — there must be evidence (passing tests, build output, runtime data). |
| 113 | |
| 114 | Per-skill verification is the local check. The project-wide bar that applies to *every* change, regardless of which skill is active, is the Definition of Done: tests pass, no regressions, behavior verified at runtime, docs updated. See `../../references/definition-of-done.md`. It complements each task's acceptance criteria rather than replacing them. |
| 115 | |
| 116 | ## Failure Modes to Avoid |
| 117 | |
| 118 | These are the subtle errors that look like productivity but create problems: |
| 119 | |
| 120 | Making wrong assumptions without checking |
| 121 | Not managing your own confusion — plowing ahead when lost |
| 122 | Not surfacing inconsistencies you notice |
| 123 | Not presenting tradeoffs on non-obvious decisions |
| 124 | Being sycophantic ("Of course!") to approaches with clear problems |
| 125 | Overcomplicating code and APIs |
| 126 | Modifying code or comments orthogonal to the task |
| 127 | Removing things you don't fully understand |
| 128 | Building without a spec because "it's obvious" |
| 129 | Skipping verification because "it looks right" |
| 130 | |
| 131 | ## Skill Rules |
| 132 | |
| 133 | **Check for an applicable skill before starting work.** Skills encode processes that prevent common mistakes. |
| 134 | |
| 135 | **Skills are workflows, not suggestions.** Follow the steps in order. Don't skip verification steps. |
| 136 | |
| 137 | **Multiple skills can apply.** A feature implementation might involve `idea-refine` → `spec-driven-development` → `planning-and-task-breakdown` → `incremental-implementation` → `test-driven-development` → `code-review-and-quality` → `code-simplification` → `shipping-and-launch` in sequence. |
| 138 | |
| 139 | **When in doubt, start with a spec.** If the task is non-trivial and there's no spec, begin with `spec-driven-development`. |
| 140 | |
| 141 | ## Lifecycle Sequence |
| 142 | |
| 143 | For a complete feature, the typical skill sequence is: |
| 144 | |
| 145 | |
| 146 | 1. interview-me → Extract what the user actually wants |
| 147 | 2. idea-refine → Refine vague ideas |
| 148 | 3. spec-driven-development → Define what we're building |
| 149 | 4. planning-and-task-breakdown → Break into verifiable chunks |
| 150 | 5. context-engineering → Load the right context |
| 151 | 6. source-driven-development → Verify against official docs |
| 152 | 7. incremental-implementation → Build slice by slice |
| 153 | 8. observability-and-instrumentation → Instrument as you build (runs parallel with 7-9, not after) |
| 154 | 9. doubt-driven-development → Cross-examine non-trivial decisions in-flight |
| 155 | 10. test-driven-development → Prove each slice works |
| 156 | 11. code-review-and-quality → Review before merge |
| 157 | 12. code-simplification → Reduce unnecessary complexity while preserving behavior |
| 158 | 13. git-workflow-and-versioning → Clean commit history |
| 159 | 14. documentation-and-adrs → Document decisions |
| 160 | 15. deprecation-and-migration → Retire old systems and move users safely when needed |
| 161 | 16. shipping-and-launch → Deploy safely |
| 162 | |
| 163 | |
| 164 | Not every task needs every skill. A bug fix might only need: `debugging-and-error-recovery` → `test-driven-development` → `code-review-and-quality`. |
| 165 | |
| 166 | ## Quick Reference |
| 167 | |
| 168 | | Phase | Skill | One-Line Summary | |
| 169 | |-------|-------|-----------------| |
| 170 | | Define | interview-me | Surface what the user actually wants before any plan, spec, or code exists | |
| 171 | | Define | idea-refine | Refine ideas through structured divergent and convergent thinking | |
| 172 | | Define | spec-driven-development | Requirements and acceptance criteria before code | |
| 173 | | Plan | planning-and-task-breakdown | Decompose into small, verifiable tasks | |
| 174 | | Build | incremental-implementation | Thin vertical slices, test each before expanding | |
| 175 | | Build | source-driven-development | Verify against official docs before implementing | |
| 176 | | Build | doubt-driven-development | Adversarial fresh-context review of every non-trivial decision | |
| 177 | | Build | context-engineering | Right context at the right time | |
| 178 | | Build | frontend-ui-engineering | Production-quality UI with accessibility | |
| 179 | | Build | api-and-interface-design | Stable interfaces with clear contracts | |
| 180 | | Verify | test-driven-development | Failing test first, then make it pass | |
| 181 | | Verify | browser-testing-with-devtools | Chrome DevTools MCP for runtime verification | |
| 182 | | Verify | debugging-and-error-recovery | Reproduce → localize → fix → guard | |
| 183 | | Review | code-review-and-quality | Five-axis review with quality gates | |
| 184 | | Review | code-simplification | Preserve behavior while reducing unnecessary complexity | |
| 185 | | Review | security-and-hardening | OWASP prevention, input validation, least privilege | |
| 186 | | Review | performance-optimization | Measure first, optimize only what matters | |
| 187 | | Ship | git-workflow-and-versioning | Atomic commits, clean history | |
| 188 | | Ship | ci-cd-and-automation | Automated quality gates on every change | |
| 189 | | Ship | deprecation-and-migration | Remove old systems and migrate users safely | |
| 190 | | Ship | documentation-and-adrs | Document the why, not just the what | |
| 191 | | Ship | observability-and-instrumentation | Structured logs, RED metrics, traces, symptom-based alerts | |
| 192 | | Ship | shipping-and-launch | Pre-launch checklist, monitoring, rollback plan | |
| 193 |
Discussion
Browse more free Claude skills.