By fumiya-kume
Automatically diagnose CI failures in GitHub PRs by analyzing checks and logs, then iteratively apply code or config fixes until all checks pass.
npx claudepluginhub fumiya-kume/claude-code --plugin fix-ciA 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.
Decompose complex tasks into detailed, actionable todos with rich descriptions. Each todo is specific, achievable, and small enough to execute independently.
Share bugs, ideas, or general feedback.
GitHub Actions の CI 失敗を自動検出・ログ取得・修正・再検証するスキル。gh コマンドで PR のチェック状況を監視し、失敗時はログを分析してコードを修正、push 後に再度 CI を確認するループを回す
Use when a user asks to debug or fix failing GitHub PR checks that run in GitHub Actions; use `gh` to inspect checks and logs, summarize failure context, draft a fix plan, and implement only after explicit approval. Treat external providers (for example Buildkite) as out of scope and report only the details URL. Originally from OpenAI's curated skills catalog.
Debug CI/CD pipeline failures and fix configurations
Commands, agents, skills, and context for AI-assisted development workflows
GitHub Actions CI/CD - workflows, authentication, inspection