chezmoi-commit
Commit and push changed dotfiles to remote repository. Use when: "commit dotfiles", "push dotfiles", "save dotfile changes", "dotfilesコミット", "dotfiles反映".
SKILL.md
| Name | chezmoi-commit |
| Description | Commit and push changed dotfiles to remote repository. Use when: "commit dotfiles", "push dotfiles", "save dotfile changes", "dotfilesコミット", "dotfiles反映". |
claude-tools
Claude Code plugins by Signal compose
Overview
This repository serves as a marketplace for Claude Code plugins developed by Signal compose. Plugins are managed as Git subtrees or directly within the repository.
Official Documentation: See Claude Code Plugins Documentation for details on the plugin system.
Available Plugins
| Plugin | Description | Category | Status |
|---|---|---|---|
| CVI | Claude Voice Integration - Voice notifications for Claude Code on macOS | productivity | Available |
| YPM | Your Project Manager - Project management for Claude Code | productivity | Available |
| chezmoi | Dotfiles management integration using chezmoi | productivity | Available |
| code | Code quality tools and autonomous dev lifecycle (sprint, audit, ship, retro) | developer-tools | Available |
| utils | Utility commands for plugin management (cache clearing, etc.) | developer-tools | Available |
| codex | OpenAI Codex CLI integration for research and code review | developer-tools | Available |
| gemini | Google Gemini CLI integration for web search | productivity | Available |
| kiro | AWS Kiro CLI integration for AWS expert assistance | developer-tools | Available |
| x-article | X (Twitter) Articles publishing workflow automation | productivity | Available |
Quick Start
# 1. Add the marketplace
/plugin marketplace add signalcompose/claude-tools
# 2. Browse plugins interactively
/plugin # Opens the Discover tab
# 3. Install a plugin
/plugin install cvi@claude-tools
# 4. Use plugin commands
/cvi:status
Installation
Add Marketplace
/plugin marketplace add signalcompose/claude-tools
Install Plugins
You can browse and install plugins using the interactive /plugin command, or use CLI commands directly:
# Install specific plugin (format: plugin-name@marketplace-name)
/plugin install cvi@claude-tools
/plugin install ypm@claude-tools
/plugin install chezmoi@claude-tools
/plugin install code@claude-tools
/plugin install utils@claude-tools
/plugin install codex@claude-tools
/plugin install gemini@claude-tools
/plugin install kiro@claude-tools
Install with Scope (Optional)
# Install to project scope (shared with team via .claude/settings.json)
/plugin install cvi@claude-tools --scope project
# Install to user scope (default, personal settings)
/plugin install cvi@claude-tools --scope user
# Install to local scope (local settings only)
/plugin install cvi@claude-tools --scope local
Plugin Management
Update Marketplace
/plugin marketplace update claude-tools
Clear Plugin Cache (Important!)
Due to a known Claude Code bug (#14061, #15642), running /plugin marketplace update updates the marketplace repository but does not invalidate the plugin cache. This means updated plugins may not work correctly.
To apply updates properly:
-
Update the marketplace:
/plugin marketplace update claude-tools -
Clear the cache for updated plugins:
# Clear specific plugin cache /utils:clear-plugin-cache cvi /utils:clear-plugin-cache utils # Or clear all plugin caches for this marketplace /utils:clear-plugin-cache --all --marketplace claude-tools -
Restart Claude Code
Dry run (see what would be deleted):
/utils:clear-plugin-cache cvi --dry-run
Other Commands
# List all marketplaces
/plugin marketplace list
# Remove marketplace
/plugin marketplace remove claude-tools
# Uninstall plugin
/plugin uninstall cvi@claude-tools
# Disable plugin (without uninstalling)
/plugin disable cvi@claude-tools
# Enable plugin
/plugin enable cvi@claude-tools
# Validate marketplace
/plugin validate .
Documentation
- docs/INDEX.md - Documentation index
- docs/dev-cycle-guide.md - Dev Cycle usage guide and permissions philosophy
- docs/specifications.md - Marketplace and plugin specifications
- docs/architecture.md - Architecture overview
- docs/development-guide.md - Plugin development guide
- docs/onboarding.md - Onboarding guide for contributors
Official Claude Code Documentation
- Create plugins - Plugin creation guide
- Plugins reference - Technical reference
- Plugin marketplaces - Marketplace creation
- Discover plugins - Plugin installation
Contributing
- Fork this repository
- Create a feature branch (
git checkout -b feature/your-feature) - Commit your changes
- Push to your branch
- Create a Pull Request
See docs/development-guide.md for detailed instructions.
License
MIT License