A collection of Claude Code plugins by polmuz.
| Plugin | Command | Description |
|---|---|---|
| analyze-claude-sessions | /analyze-claude-sessions:analyze |
Analyze session transcripts to find error patterns and improve CLAUDE.md |
Add the marketplace and install the plugin:
/plugin marketplace add polmuz/claude-stuff
/plugin install analyze-claude-sessions@claude-stuff
Clone into your project directory:
git clone https://github.com/polmuz/claude-stuff.gitThen run Claude Code from your project - plugins are discovered automatically.
Clone to your home directory:
git clone https://github.com/polmuz/claude-stuff.git ~/claude-stuffOr install to Claude's plugins directory:
mkdir -p ~/.claude/plugins
git clone https://github.com/polmuz/claude-stuff.git ~/.claude/plugins/claude-stuffAdd to your ~/.claude/settings.json:
{
"plugins": ["~/claude-stuff/analyze-claude-sessions"]
}Or for all plugins:
{
"pluginDirs": ["~/claude-stuff"]
}claude-stuff/
├── analyze-claude-sessions/ # Session analyzer plugin
│ ├── .claude-plugin/
│ │ └── plugin.json
│ ├── commands/
│ │ └── analyze-claude-sessions.md
│ ├── lib/
│ │ └── analyze_sessions.py
│ └── README.md
├── LICENSE
└── README.md # This file
Feel free to open issues or PRs for:
- Bug fixes
- New plugins
- Improvements to existing plugins
MIT