npx claudepluginhub jaredpalmer/claude-pluginsA collection of Claude Code plugins
A collection of Claude Code plugins for modern web development.
# Add the marketplace
/plugin marketplace add jaredpalmer/claude-plugins
# Install the plugins
/plugin install jp@jp
Search GitHub code across millions of repositories using grep.app. Find implementations, patterns, and examples from public codebases.
Usage:
bun run skills/github-code-search/scripts/search.ts "query" [--lang=TypeScript] [--repo=owner/repo] [--limit=10] [--regexp]
Examples:
# Find "use cache" implementations
bun run skills/github-code-search/scripts/search.ts "use cache" --lang=TypeScript --limit=5
# Search a specific repo
bun run skills/github-code-search/scripts/search.ts "cacheLife" --repo=vercel/next.js
When to use:
Automatically reviews Next.js App Router code for optimal Partial Prerendering (PPR), caching strategy, Suspense boundaries, and React Query integration.
Triggers automatically when:
What it checks:
'use cache' and 'use cache: private' directive usagecacheLife() and cacheTag() configurationRequires: Next.js 16+ with cacheComponents: true
A command that helps write polished X/Twitter changelog posts following best practices for developer marketing.
Usage:
/jp:x-changelog <description of your update>
What it does:
Example:
/jp:x-changelog We just shipped instant rollbacks for all deployments
Test plugins locally before publishing:
# Add your local directory as a marketplace
/plugin marketplace add /Users/you/path/to/claude-plugins
# Install and test
/plugin install jp@jp
Create skills/<skill-name>/SKILL.md:
---
name: my-skill
description: When Claude should invoke this skill
---
# Skill Title
Instructions for the skill...
/command)Create commands/my-command.md:
---
description: Brief description of what the command does
argument-hint: <expected arguments>
---
Instructions for what the command does.
Usage: /jp:my-command
Create agents/my-agent.md:
---
description: When to use this agent
tools: Glob, Grep, Read, Edit
---
Instructions for the agent...
For more information on creating Claude Code plugins, see the official plugin documentation.
MIT