aggregate-logs
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Uninstall and reinstall all Claude Code plugins to refresh cache and resolve version mismatches.
> /plugin marketplace add athola/claude-night-marketHow it fires
How this command gets triggered: by you, by Claude, or both.
/reinstall-all-pluginsContext preview
What this command does when you run it.
Uninstall and reinstall all Claude Code plugins to refresh cache and resolve version mismatches.
name: reinstall-all-plugins description: Uninstall and reinstall all Claude Code plugins to refresh cache and resolve version mismatches. usage: /reinstall-all-plugins [--list-only] [--generate-script] [--dry-run]
Utility command that detects installed plugins and reinstalls them. Use when plugins have cache corruption, version mismatches, or stale hook paths.
The following plugins are **automatically excluded** from reinstallation to prevent breaking the reinstall process:
| Flag | Behavior | |------|----------| | (default) | Execute reinstall directly via Python script | | `--list-only` | Generate copy-paste commands for manual execution | | `--generate-script` | Generate `/tmp/reinstall-plugins.sh` for terminal execution | | `--dry-run` | Show what would be done without executing |
Run the reinstall script:
Bash("python3 /home/alext/claude-night-market/plugins/leyline/scripts/reinstall_all_plugins.py")For list-only mode:
Bash("python3 /home/alext/claude-night-market/plugins/leyline/scripts/reinstall_all_plugins.py --list-only")For script generation:
Bash("python3 /home/alext/claude-night-market/plugins/leyline/scripts/reinstall_all_plugins.py --generate-script")For dry-run:
Bash("python3 /home/alext/claude-night-market/plugins/leyline/scripts/reinstall_all_plugins.py --dry-run")The script will: 1. Read `~/.claude/plugins/installed_plugins.json` (or v2 format) 2. Categorize plugins (reinstallable vs excluded) 3. Uninstall each reinstallable plugin 4. Reinstall each plugin 5. Report success/failure summary
**Restart Claude Code** to apply the reinstalled plugins.
from marketplace
on large repos or slow networks, increase the git timeout via environment variable:
export CLAUDE_CODE_PLUGIN_GIT_TIMEOUT_MS=240000 # 4 minutes
The default is 120s (increased from 30s in 2.1.51).
After reinstall, if hooks still fail: 1. Check `~/.claude/plugins/cache/` for stale directories 2. Manually remove orphaned cache entries 3. Restart Claude Code
Plugins installed from npm sources now support custom registries and specific version pinning. If your organization uses a private npm registry, plugins can be installed from it directly.
A plugin marketplace for Claude Code. Install only the plugins you need to run git workflows, code review, spec-driven development, and autonomous agents from inside your Claude Code session.
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Analyze skill file complexity metrics and generate modularization recommendations for splitting or progressive loading.
Scaffold new Claude Code skills with brainstorming, TDD methodology, and proper frontmatter and module structure.