Kuu's personal Claude Code plugin marketplace
npx claudepluginhub fumiya-kume/claude-codeRemoves AI-generated code slop from code changes in the current branch
Deep exploratory interview to discover unknowns and strengthen plans
Automatically diagnose and fix CI failures using sub-agent exploration
Decompose complex tasks into detailed, actionable todos with rich descriptions. Each todo is specific, achievable, and small enough to execute independently.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
A collection of personal Claude Code utilities and custom slash commands.
This repository contains a Claude Code plugin marketplace that provides custom commands to enhance your Claude Code workflow. The plugins are designed to help maintain code quality and consistency when working with AI-assisted development.
You can install plugins directly from Claude Code using the plugin management system:
Add this repository as a marketplace:
/plugin marketplace add fumiya-kume/claude-code
Install the plugins:
/plugin install deslop@fumiya-kume/claude-code
/plugin install dig@fumiya-kume/claude-code
/plugin install fix-ci@fumiya-kume/claude-code
Restart Claude Code to activate the plugins.
Alternatively, you can clone this repository and use it as a local marketplace:
git clone https://github.com/fumiya-kume/claude-code.git
Then in Claude Code:
/plugin marketplace add ./claude-code
| Plugin | Description |
|---|---|
| deslop | Remove AI-generated "slop" from code changes |
| dig | Clarify ambiguities in plans with structured questions |
| fix-ci | Automatically diagnose and fix CI failures |
| decomposition | Decompose complex tasks into detailed, actionable todos |
/dig - Plan Dig ModeClarify ambiguities in plans with structured questions using the AskUserQuestion tool.
Purpose: Analyze the current plan or discussion, identify unclear points, and ask structured questions to clarify requirements before implementation.
Features:
Usage:
/dig
/deslop - Remove AI Code SlopRemoves AI-generated "slop" from code changes in the current branch.
Purpose: This command helps maintain code quality by identifying and removing unnecessary additions that AI assistants sometimes introduce, ensuring code remains consistent with the project's existing style and practices.
What it removes:
Usage:
/deslop
/fix-ci - Fix CI FailuresAutomatically diagnose and fix CI failures using sub-agent exploration.
Purpose:
This command helps quickly identify and resolve CI pipeline failures by analyzing logs, identifying root causes, and applying fixes.
It checks gh authentication up front (and may ask you to log in), then iterates by pushing fixes and waiting for CI to rerun until checks are green or human intervention is required.
For the detailed workflow, see fix-ci/commands/fix-ci.md.
Usage:
/fix-ci
/decomposition - Task DecompositionDecompose complex tasks into detailed, actionable todos with rich descriptions.
Purpose: This command helps break down complex tasks into specific, achievable, and small todos. Each todo has a rich description that contains all the information needed to execute the task independently.
Features:
Usage:
/decomposition
This repository is organized as a plugin marketplace containing multiple plugins:
.claude-plugin/
└── marketplace.json # Marketplace metadata
deslop/ # deslop plugin
├── .claude-plugin/
│ └── plugin.json
├── commands/
│ └── deslop.md
└── README.md
dig/ # dig plugin
├── .claude-plugin/
│ └── plugin.json
├── commands/
│ └── dig.md
└── README.md
fix-ci/ # fix-ci plugin
├── .claude-plugin/
│ └── plugin.json
├── commands/
│ └── fix-ci.md
└── README.md
decomposition/ # decomposition plugin
├── .claude-plugin/
│ └── plugin.json
├── commands/
│ └── decomposition.md
└── README.md
Feel free to fork this repository and add your own custom commands, agents, or skills.
The /deslop command was inspired by this tweet.
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.