TechEarl

Top 5 Claude Code Skills Every Developer Should Install in 2026

Five Claude Code skills that turn it from a chat tool into a development environment: impeccable for UI design, playwright-cli for browser automation, gsd for project planning, seo-content, and banana for image generation.

Ishan KarunaratneIshan Karunaratne⏱️ 10 min readUpdated
Macro photograph of vivid violet and electric-teal holographic film with iridescent rainbow reflections, abstract glossy pattern

Five Claude Code skills that turn the assistant from a chat tool into a development environment: impeccable for production-grade frontend design, playwright-cli for browser automation and visual QA, gsd for project planning with atomic commits, seo-content for E-E-A-T-aware content reviews, and banana for AI image generation through the Gemini Nano Banana model. I have been installing these on every new machine I set up for a year now, and they have changed what I expect a "code assistant" to do. Each one ships as a discoverable skill file in .claude/skills/ or ~/.claude/skills/ and gets invoked with a / slash command.

What makes a Claude Code skill worth installing in 2026: it does one job well, the slash command is memorable, it composes with other skills, and it has clear opinions baked in rather than asking you twenty questions before doing anything. The five below all meet that bar.

Jump to:

1. impeccable — production-grade frontend design

The skill that taught me to expect Claude to actually design interfaces, not just hand back vague Tailwind suggestions. /impeccable loads two project context files (PRODUCT.md and DESIGN.md) and applies shared design laws — OKLCH colors, no #000, line-length caps, rhythm-driven spacing, an "AI slop" reject list — before producing any code. It has sub-commands for every step of a real design workflow: shape plans the UX before writing code, craft builds end-to-end, polish runs a final quality pass, bolder amplifies bland output, quieter tones down loud output, live lets you click elements in the browser and generate variants.

The reason it stands out: most "design with AI" skills generate plausible-but-derivative output that screams "this is from a model". Impeccable explicitly tries to avoid that by listing the patterns it refuses (gradient text, glassmorphism cliches, the hero-metric template, identical card grids) and forcing the assistant to think through register, color strategy, and reflex-reject aesthetic lanes before committing.

Install it via the Claude plugin marketplace or by cloning the skill folder into ~/.claude/skills/impeccable/. Then /impeccable craft a settings page and watch it shape first, build second.

2. playwright-cli — browser automation and visual QA

The skill I reach for whenever I am building or reviewing a frontend. /playwright-cli wraps the Playwright CLI in a discoverable interface for the assistant: open a URL, take a snapshot of the page (which is an accessibility tree, not raw HTML — much cheaper than reading source), click elements by their reference IDs, fill forms, screenshot specific elements, capture console messages, capture network requests.

What you actually use it for, day to day:

  • Visual regression testing. Open the local dev URL, screenshot a component, edit the CSS, screenshot again, compare.
  • Reproducing user-reported bugs. Open the production URL, click through the flow, capture the failing console message verbatim.
  • End-to-end demos. Record a multi-step flow on the live site for a PR description without firing up the recording tool you keep meaning to learn.

Compared to giving the assistant raw HTML, the snapshot mode is dramatically cheaper in tokens and dramatically more reliable in identifying the actual interactive elements (button vs span-styled-as-button). It is the single skill I would refuse to work without.

3. gsd — project planning with atomic commits

/gsd (Get Stuff Done) is the project-management skill for engineers who want plans before execution but not Jira before either. It introduces a workflow file under .planning/ per project with phases, plans, and verification artifacts. Sub-commands cover the actual lifecycle: gsd-new-project initializes context, gsd-plan-phase plans a phase with goal-backward verification, gsd-execute-phase runs the plan with atomic commits, gsd-verify-work runs UAT after execution.

Where it earns its keep: anything where the assistant might otherwise drift mid-task — adding a feature that spans 5 files, refactoring something that touches a shared component, debugging a flaky test. Without a plan, the assistant tends to lose the thread halfway and produce a result that "looks complete" but skips two of the requirements. With /gsd-plan-phase first, every phase has a written acceptance bar and the execute step has to satisfy it.

The trade-off is overhead: for a one-line bug fix this is overkill. Use /gsd-fast or just regular tool calls for those. Save /gsd for work that has 3+ distinct steps and clear acceptance criteria.

4. seo-content — content quality and E-E-A-T review

The skill that pairs with everything you write for the web. /seo-content scores a page against the December 2025 Quality Rater Guidelines: Experience, Expertise, Authoritativeness, Trustworthiness. It also checks AI citation readiness — passage-level extractability, structural readability, multi-modal content, and authority signals — which matters more than traditional SEO now that AI Overviews and ChatGPT browsing surface a meaningful fraction of search traffic.

Concrete output: a numerical E-E-A-T score per dimension (out of 25 each), a citation-readiness score out of 100, and a prioritized list of fixes. The fixes are practical: "add a publication date here", "your byline should have a credentialed bio link", "this 800-word paragraph needs a 134-167 word self-contained answer block above the fold".

Use it on every article before publishing. Use it on competitor pages to see what you have to beat. Use it on landing pages after a redesign to verify nothing important got lost.

5. banana — AI image generation through Nano Banana

/banana is the Creative Director wrapper around Google's Nano Banana image-generation model (accessed via the Gemini CLI). It handles prompt construction with a 5-component formula, applies domain modes (brand vs product), produces variations efficiently, and integrates with batch workflows.

When you need: cover images for blog posts, hero illustrations for landing pages, OG card images, internal diagrams, mood-board explorations. The output is consistently more on-brief than running raw text-to-image because the skill applies the prompt engineering you would have written by hand anyway.

A practical pattern: generate the cover, run it through the watermark script for logo + URL + EXIF metadata, upload to your image CDN, reference in MDX. The whole pipeline is about 90 seconds end-to-end with no manual prompt tweaking.

Comparison table

SkillSlash commandBest forSkip when
impeccable/impeccableFrontend design, UI iteration, brand-aware UINon-UI work
playwright-cli/playwright-cliBrowser automation, visual QA, bug reproductionPure backend
gsd/gsdMulti-step work, planned features, atomic commitsOne-line fixes
seo-content/seo-contentContent review, E-E-A-T scoring, AI citation readinessInternal-only content
banana/bananaCover images, illustrations, OG cardsPhoto-realistic stock

Install order: which to set up first

If you are setting up Claude Code on a new machine, install in this order:

  1. gsd first. It changes how you plan. Every other skill composes better when there's a plan file in .planning/.
  2. playwright-cli second. You will reach for it within an hour of doing any frontend work. The snapshot model is dramatically cheaper than reading raw HTML.
  3. impeccable third. Pairs with playwright-cli — design → screenshot → critique → iterate.
  4. seo-content fourth. Only needed when you are about to publish.
  5. banana last. Generates assets you will use in the published content.

You do not need to install all five at once. Start with one or two, get comfortable with the slash commands, then add the others as natural use cases come up.

What to do next

For the surrounding tools that pair naturally with these skills:

  • Top 5 MCP Servers Every Developer Should Try in 2026 covers the Model Context Protocol servers that extend Claude Code with file access, GitHub, databases, and browser control — orthogonal to skills but compose with them.
  • The Regex Cheat Sheet is the syntax reference you will reach for whenever /seo-content or /playwright-cli need to extract patterns from page output.
  • The MySQL Cheat Sheet is the SQL reference for the database side of any AI workflow.

External references: the official Claude Code documentation is the canonical install and configuration guide. The Anthropic plugin marketplace lists every skill currently published.

FAQ

TagsClaude CodeAI ToolsDeveloper ToolsSkillsAnthropicWorkflow
Share
Ishan Karunaratne

Ishan Karunaratne

Tech Architect · Software Engineer · AI/DevOps

Tech architect and software engineer with 20+ years across software, Linux systems, DevOps, and infrastructure — and a more recent focus on AI. Currently Chief Technology Officer at a tech startup in the healthcare space.

Keep reading

Related posts

The five must-install MCP servers in 2026: filesystem, GitHub, Postgres, claude-in-chrome, and Sentry. Install commands, capabilities, security model, and FAQ.

Top 5 MCP Servers Every Developer Should Try in 2026

The five Model Context Protocol servers worth installing today: filesystem, GitHub, Postgres, claude-in-chrome (browser), and Sentry. With install commands, the tools they expose, and the security model.