Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By kkhys
Personal development workflow utilities for efficient knowledge management and automation
npx claudepluginhub kkhys/claude-code-marketplaceCreate a timestamped memo with ULID in ~/projects/private-content/memo/
Complete git workflow - create branch, split commits, and create PR
Summarize recent Claude Code release notes in chronological order
Create a git branch with an appropriate name derived from current changes. Use when the user asks to create a branch, name a branch, make a branch for current work, or wants to move changes to a new branch. Also use when changes exist on main/master that should be moved to a feature branch before committing.
Generate CodePen 2.0 demos with copy-paste ready code. Use when the user wants to create interactive demos, playground examples, UI component showcases, browser API demonstrations, CSS animations, or any front-end experiment for CodePen. Also trigger when the user mentions "CodePen", "pen", "playground demo", or wants to share a working code snippet that runs in the browser.
Create GitHub pull requests following required project conventions. Always consult this skill when creating a PR, opening a pull request, or submitting changes for review — including "PR作って", "プルリクエスト作成", "create a PR", "make a pull request", "submit for review", "gh pr create", or any request to prepare changes for review on GitHub. Contains mandatory title format [base-branch] type: description, required --draft flag, and --assignee kkhys that differ from defaults and cannot be inferred without this skill.
Creates a personal activity summary across all GitHub repositories for reflection. Use when the user wants to create weekly reports, work reviews, task summaries, activity retrospectives, or review their recent contributions. Also trigger when asked "what did I do this week", "summarize my work", "create a work log", "振り返り", or any variation of reviewing personal GitHub activity over a time period.
Addresses unresolved review comments on the current branch by orchestrating the full fix cycle: reading feedback, implementing changes, verifying, committing, and replying to reviewers. Use this skill whenever the user wants to fix PR review feedback, address reviewer comments, handle review points, or respond to code review. Also trigger on phrases like "レビューコメント直して", "fix the review comments", "address the feedback", "review 対応して", "レビュー指摘を修正", or any request to implement changes requested by PR reviewers. This is the primary skill for closing the PR review feedback loop.
External network access
Connects to servers outside your machine
Requires secrets
Needs API keys or credentials to function
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
A comprehensive toolkit for creating, validating, and distributing Claude Code plugins
Comprehensive toolkit for developing Claude Code plugins. Includes 10 expert skills covering hooks, MCP integration, LSP servers, commands, agents, marketplaces, and best practices, plus a guide skill for navigation. AI-assisted plugin creation and validation.
Harness-native ECC plugin for engineering teams - 64 agents, 262 skills, 84 legacy command shims, reusable hooks, rules, MCP conventions, and operator workflows for Claude Code plus adjacent agent harnesses
Access thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
Upstash Context7 MCP server for up-to-date documentation lookup. Pull version-specific documentation and code examples directly from source repositories into your LLM context.
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Specialized writing agents for reviewing, editing, and enhancing blog posts, articles, and essays
No model invocation
Executes directly as bash, bypassing the AI model
No model invocation
Executes directly as bash, bypassing the AI model
Share bugs, ideas, or general feedback.
A personal Claude Code plugin marketplace for custom development workflows and tooling
This repository serves as a personal Claude Code plugin marketplace designed to enhance development efficiency. It provides custom toolsets for knowledge management, automation, and streamlined development workflows.
Claude Code plugin marketplaces support centralized plugin discovery, version tracking, automatic updates, and multiple source types (Git repositories, local paths, etc.).
Run the following command in Claude Code:
/plugin marketplace add kkhys/claude-code-marketplace
/plugin install base@my-marketplace
/plugin list
# List all marketplaces
/plugin marketplace list
# Update a marketplace
/plugin marketplace update my-marketplace
# Remove a marketplace
/plugin marketplace remove my-marketplace
# List installed plugins
/plugin list
# Enable/disable plugins
/plugin enable base@my-marketplace
/plugin disable base@my-marketplace
# Uninstall a plugin
/plugin uninstall base@my-marketplace
To test the marketplace locally:
# Add the marketplace
/plugin marketplace add ./path/to/claude-code-marketplace
# Install a plugin
/plugin install base@my-marketplace
# Test the plugin
/memo "Test memo" # Run a command from the base plugin
Validate JSON syntax and marketplace structure:
claude plugin validate .
Or from within Claude Code:
/plugin validate .
Create plugin directory:
mkdir -p plugins/your-plugin/.claude-plugin
mkdir -p plugins/your-plugin/commands
Create plugin manifest (plugins/your-plugin/.claude-plugin/plugin.json):
{
"name": "your-plugin",
"description": "Description of your plugin",
"version": "1.0.0",
"author": {
"name": "Your Name",
"email": "your.email@example.com"
}
}
Add to marketplace (.claude-plugin/marketplace.json):
{
"plugins": [
{
"name": "your-plugin",
"source": "./plugins/your-plugin",
"description": "Brief description of your plugin"
}
]
}
Validate and test:
/plugin validate .
/plugin marketplace update my-marketplace
/plugin install your-plugin@my-marketplace
To make this marketplace automatically available for your team, add it to your project's .claude/settings.json:
{
"extraKnownMarketplaces": {
"my-marketplace": {
"source": {
"source": "github",
"repo": "kkhys/claude-code-marketplace"
}
}
},
"enabledPlugins": {
"base@my-marketplace": true
}
}
For features available in claude-plugins-official (e.g. MCP servers), prefer the official plugins. Currently installed official plugins:
slack@claude-plugins-officialralph-loop@claude-plugins-officialcode-review@claude-plugins-officialcode-simplifier@claude-plugins-officialsecurity-guidance@claude-plugins-officialpr-review-toolkit@claude-plugins-officialfrontend-design@claude-plugins-officialclaude-md-management@claude-plugins-officialSee settings.json for the full list of installed plugins.
This marketplace and its included plugins are intended for personal use.