Claude Code Skills

Marketplace Renamed (v3.4.0): The marketplace name changed from claude-skills to jezweb-skills.
If you had the old version installed, run:
/plugin marketplace remove claude-skills
/plugin marketplace add jezweb/claude-skills
97 production-ready skills for Claude Code CLI — Cloudflare, React, AI integrations, and more.
~60% token savings | 400+ errors prevented | Auto-discovered by Claude
Context Mate
New here? Run /context-mate in any project - it scans what you've got and tells you what tools might help:

"It's all about the context, maaate!"
The philosophy: Use what helps, ignore what doesn't. No 47-page methodology guides. No ceremonies. Just tools that help when you need them and stay out of the way when you don't. Homer Simpson could figure this out.
Full guide: skills/context-mate/SKILL.md
Where to Start
| You want to... | Run this |
|---|
| Analyze an existing project | /context-mate |
| Start a brand new project | /plan-project |
| Resume work from last session | /continue-session |
| Debug something stubborn | Use deep-debug skill |
| Just explore | /workflow (interactive guide) |
Terminology
Three types of things in this toolkit:
| Type | What it is | Example |
|---|
| Slash Commands | Typed invocations (/foo) | /context-mate, /plan-project |
| Skills | Knowledge bundles Claude loads | cloudflare-worker-base, tailwind-v4-shadcn |
| Agents | Sub-processes for specialized tasks | commit-helper, debugger, test-runner |
Note: Slash commands are now part of skills (bundled in skills/*/commands/). This is the official Claude Code pattern - a skill can expose both background knowledge and user-invocable commands.
Decision tree:
- "/context-mate" → Slash command (user types it)
- "context-mate" skill → Background knowledge (Claude loads it when relevant)
commit-helper agent → Sub-process (Claude spawns it for heavy tasks)
Quick Install
Marketplace (Recommended)
# Step 1: Add the marketplace (registers catalog)
/plugin marketplace add https://github.com/jezweb/claude-skills
# Step 2: Install what you need
/plugin install all@jezweb-skills # All skills (background knowledge)
# Step 3: Install skills with commands/agents you want to use
/plugin install skill-development@jezweb-skills # /scrape-api, /create-skill, etc.
/plugin install developer-toolbox@jezweb-skills # debugger, test-runner, commit-helper agents
/plugin install cloudflare-worker-base@jezweb-skills # cloudflare-deploy, d1-migration agents
# Step 4: Restart Claude Code to load plugins
Why two install steps? The all bundle gives you skill knowledge, but commands/agents inside individual skills need their own install. See PLUGIN_ARCHITECTURE.md for details.
Skills with Commands/Agents
These skills have bundled commands or agents - install individually to use them:
| Plugin | Commands | Agents |
|---|
skill-development | /scrape-api, /create-skill, /review-skill, /audit | api-doc-scraper |
developer-toolbox | /debug, /coverage | debugger, test-runner, commit-helper, code-reviewer, etc. |
cloudflare-worker-base | - | cloudflare-deploy, cloudflare-debug, d1-migration, worker-scaffold |
dependency-audit | /audit-deps | dep-auditor |
project-health | - | context-auditor, handoff-checker, workflow-validator |
Manual/Local Development
git clone https://github.com/jezweb/claude-skills.git ~/Documents/claude-skills
cd ~/Documents/claude-skills
/plugin install ./skills/cloudflare-worker-base # Install specific skill locally
Skills by Category