An open API service indexing awesome lists of open source software.

https://github.com/jezweb/claude-skills

Skills for Claude Code CLI such as full stack dev Cloudflare, React, Tailwind v4, and AI integrations.
https://github.com/jezweb/claude-skills

ai anthropic automation claude-code claude-skills cloudflare devtools productivity react skills tailwind vite

Last synced: 4 months ago
JSON representation

Skills for Claude Code CLI such as full stack dev Cloudflare, React, Tailwind v4, and AI integrations.

Awesome Lists containing this project

README

          

# Claude Code Skills

[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)

Workflow skills for [Claude Code](https://claude.com/claude-code) that produce tangible output. Each skill guides Claude through a recipe β€” scaffold a project, generate assets, deploy to production.

## Skills

| Skill | What it produces |
|-------|-----------------|
| **[skill-creator](skills/skill-creator)** | New skill directories from template |
| **[cloudflare-worker-builder](skills/cloudflare-worker-builder)** | Deployable Cloudflare Worker projects with Hono + Vite |
| **[vite-flare-starter](skills/vite-flare-starter)** | Full-stack Cloudflare app (React 19, Hono, D1, better-auth, shadcn/ui) |
| **[tailwind-theme-builder](skills/tailwind-theme-builder)** | Themed Tailwind v4 + shadcn/ui setup with dark mode |
| **[color-palette](skills/color-palette)** | Complete colour palettes from a single brand hex |
| **[favicon-gen](skills/favicon-gen)** | Full favicon packages (SVG, ICO, PNG, manifest) |
| **[icon-set-generator](skills/icon-set-generator)** | Custom SVG icon sets with consistent style |
| **[web-design-methodology](skills/web-design-methodology)** | Production HTML/CSS with BEM, responsive, accessibility |
| **[web-design-patterns](skills/web-design-patterns)** | Heroes, cards, CTAs, trust signals, testimonials |
| **[seo-local-business](skills/seo-local-business)** | SEO setup for local businesses (JSON-LD, meta, sitemap) |
| **[google-chat-messages](skills/google-chat-messages)** | Google Chat webhooks (text, rich cards, threads) |
| **[google-apps-script](skills/google-apps-script)** | Google Sheets Apps Script automation (menus, triggers, dialogs) |
| **[elevenlabs-agents](skills/elevenlabs-agents)** | Configured ElevenLabs voice agents |
| **[mcp-builder](skills/mcp-builder)** | MCP servers with FastMCP |
| **[memory-manager](skills/memory-manager)** | Optimised CLAUDE.md memory hierarchy |
| **[claude-capabilities](skills/claude-capabilities)** | Current Claude AI & Code capabilities reference |
| **[aussie-business-english](skills/aussie-business-english)** | Australian business English writing style |
| **[d1-drizzle-schema](skills/d1-drizzle-schema)** | Drizzle ORM schemas for Cloudflare D1 |
| **[hono-api-scaffolder](skills/hono-api-scaffolder)** | Hono API routes, middleware, endpoint documentation |
| **[shadcn-ui](skills/shadcn-ui)** | shadcn/ui components with installation, customisation, recipes |
| **[github-release](skills/github-release)** | Sanitized, tagged GitHub releases with safety checks |
| **[gemini-peer-review](skills/gemini-peer-review)** | Second opinion from Gemini on code, architecture, security |
| **[dev-session](skills/dev-session)** | SESSION.md progress tracking, checkpoints, multi-session handoff |
| **[ux-audit](skills/ux-audit)** | UX walkthroughs and QA sweeps on live apps via browser automation |

## Install

```bash
# Add the marketplace
/plugin marketplace add jezweb/claude-skills

# Install all skills
/plugin install all@jezweb-skills

# Or install by category
/plugin install design@jezweb-skills # palettes, favicons, icons, web design
/plugin install cloudflare@jezweb-skills # Workers + vite-flare-starter
/plugin install frontend@jezweb-skills # Tailwind + shadcn/ui
/plugin install web@jezweb-skills # web design + SEO
/plugin install integrations@jezweb-skills # Google Chat, Apps Script
/plugin install ai@jezweb-skills # ElevenLabs agents
/plugin install mcp@jezweb-skills # MCP servers
/plugin install writing@jezweb-skills # Australian business English
/plugin install testing@jezweb-skills # UX walkthroughs, QA sweeps
/plugin install development@jezweb-skills # skill-creator, memory-manager, sessions, releases, Gemini review
```

## Create Your Own

```bash
python3 skills/skill-creator/scripts/init_skill.py my-skill --path skills/
```

Follows the [Agent Skills spec](https://agentskills.io/specification).

## Philosophy

**Every skill must produce something.** No knowledge dumps β€” only workflow recipes that create files, projects, or configurations. Claude's training data handles the rest.

See [CLAUDE.md](CLAUDE.md) for development details.

## History

This repo started as a collection of 105 skills β€” many were informational reference guides (CSS patterns, API docs, framework cheatsheets). With Claude Opus 4.6's expanded training data and built-in capabilities, those reference skills became redundant. Claude already knows the material.

**v2** keeps only skills that produce tangible output: files, projects, configurations, deployments. The count dropped from 105 to 24, but each one earns its place.

The full v1 collection is preserved and usable:

```bash
# Browse the v1 skills
git log v1-final -- skills/

# Use a specific v1 skill locally
git checkout v1-final -- skills/css-grid/
claude --plugin-dir ./skills/css-grid

# Or check out the whole v1 collection
git checkout v1-final -- skills/
```

- **Tag `v1-final`** β€” all 105 skills at the point of transition
- **Branch `archive/low-priority-skills`** β€” 13 previously archived skills

## License

MIT