A public collection of Claude Code plugins for developer workflows. Install any plugin directly into Claude Code to extend its capabilities.
| Plugin | Description | Version |
|---|---|---|
| pr-review-toolkit | Fetch active PR review comments, apply code fixes, and resolve threads automatically | 0.3.0 |
cc plugin install https://github.com/SvetlovA/cc-stuff/tree/master/<plugin-name>git clone https://github.com/SvetlovA/cc-stuff.git
cc --plugin-dir ./cc-stuff/<plugin-name>Addresses GitHub PR review comments end-to-end:
- Detects the current PR or lets you pick from a list
- Fetches all active inline threads and general comments (skips resolved and already-replied threads; outdated threads are included and labeled)
- Evaluates scope and recommends address on the fly (simple, few files) or create a plan first (complex, cross-file, architectural)
- On the fly: applies fixes and resolves threads in one pass, then prompts to commit
- Plan mode: delegates to
/planning:make(optional dependency) to produce a structured plan ending with thread resolution andgit push
Invoke with: /pr-review-toolkit:address-review-comments [pr-number]
Requires: gh CLI authenticated
Contributions welcome! To add a plugin:
- Fork this repo
- Create a new directory at the repo root:
my-plugin-name/ - Follow the plugin structure — at minimum a
.claude-plugin/plugin.jsonand at least one skill or component - Add a
README.mdfor your plugin - Update the table above
- Open a PR
See CLAUDE.md for conventions around skill writing, naming, and path portability.