plugins/claude-ecosystem/skills/clear-plugin-cache/SKILL.md
Clear cached plugin copies (requires reinstall after)
npx skillsauth add melodic-software/claude-code-plugins clear-plugin-cacheInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Clear cached plugin copies from the plugin system cache. This is a more aggressive operation that removes the entire plugin installation, requiring reinstall afterward.
For complete plugin reset (including registry and settings): Use /user-config:reset-plugins instead. This command only clears the cache while preserving the registry.
Cleared:
~/.claude/plugins/cache/ - All cached plugin copiesPreserved (NOT cleared):
~/.claude/plugins/installed_plugins.json - Plugin registry (knows what to reinstall)~/.claude/plugins/known_marketplaces.json - Marketplace sourcesclaude-ecosystem)Examples:
/clear-plugin-cache # Clear all plugins
/clear-plugin-cache claude-ecosystem # Clear only claude-ecosystem
/clear-plugin-cache --force # Clear all without confirmation
/clear-plugin-cache claude-ecosystem --force # Clear one without confirmation
plugin_filter = None # or specific plugin name
force_mode = "--force" in arguments (case-insensitive)
# Parse: anything that's not --force is treated as plugin name
for arg in arguments:
if arg.lower() == "--force":
force_mode = True
elif not arg.startswith("--"):
plugin_filter = arg
The plugin cache is at: ~/.claude/plugins/cache/
Structure:
~/.claude/plugins/
cache/
{marketplace}/
{plugin-name}/
{version}/
... (full plugin copy)
List what will be cleared:
# List all marketplace directories
ls -la ~/.claude/plugins/cache/
# For each marketplace, list plugins
ls -la ~/.claude/plugins/cache/{marketplace}/
# Get total size
du -sh ~/.claude/plugins/cache/
If plugin_filter is set, only inventory that specific plugin.
If NOT force_mode, present the cache clear plan:
## Plugin Cache Clear Plan
**Target:** ALL cached plugin copies
| Marketplace | Plugins | Size |
| --- | --- | --- |
| claude-code-plugins | 10 | 120 MB |
**Total:** 120 MB across 10 plugins
> **WARNING:** This will remove all installed plugins.
> You will need to reinstall them using `/plugin install {name}@{marketplace}`.
> The plugin registry (installed_plugins.json) is preserved, so Claude Code
> knows what to reinstall.
**Proceed?** Reply "yes" to continue, or use `--force` to skip this confirmation.
## Plugin Cache Clear Plan
**Target:** claude-ecosystem plugin cache only
| Plugin | Version | Size |
| --- | --- | --- |
| claude-ecosystem | 3.0.0 | 106 MB |
> **Note:** After clearing, reinstall with:
> `/plugin install claude-ecosystem@claude-code-plugins`
**Proceed?** Reply "yes" to continue, or use `--force` to skip this confirmation.
rm -rf ~/.claude/plugins/cache/*
# Find and remove specific plugin across all marketplaces
rm -rf ~/.claude/plugins/cache/*/{plugin-name}
## Plugin Cache Cleared
Successfully cleared plugin cache.
**Cleared:**
- X plugins (Y MB total)
**Preserved:**
- installed_plugins.json (plugin registry)
- known_marketplaces.json (marketplace sources)
**Next steps:**
Reinstall plugins using:
`/plugin install {plugin-name}@{marketplace}`
Or browse and reinstall interactively:
`/plugin`
The original source (your local repo or git remote) is NEVER modified.
~ resolves to %USERPROFILE%rm -rf works in Git Bash on Windows/user-config:reset-plugins - Complete plugin reset (cache + registry + settings)/user-config:prune - General Claude Code cache cleanup (excludes plugins)/plugin uninstall {name} - Remove a specific plugin properlydevelopment
Search Milan Jovanovic's .NET blog for Clean Architecture, DDD, CQRS, EF Core, and ASP.NET Core patterns. Use for finding applicable patterns, code examples, and architecture guidance. Invoke when working with .NET projects that could benefit from proven architectural patterns.
tools
Install and configure Data API Builder (DAB) for production SQL Server MCP access with RBAC
tools
Manage MssqlMcp servers - status, rebuild, and upstream updates
tools
Developer environment setup guides for Windows, macOS, Linux, and WSL. Use when setting up development machines, installing tools, configuring environments, or following platform-specific setup guides. Covers package management, shell/terminal, code editors, AI tooling, containerization, databases, and more.