plugin-security-reviews
NewSecurity review for Claude Code plugins with auto-detection of new/changed plugins
Summary
This skill automatically detects new or changed plugins in your Claude Code plugin marketplace and performs security reviews on them, helping you catch vulnerabilities and enforce best practices before they affect your development workflow.
Overview
A Claude Code plugin marketplace with tools for better coding habits.
Plugins
quick-review
The main plugin - enforces good development practices and automates code review.
Uncommitted changes block - Don't let Claude ask the user questions if there are uncommitted changes.
Auto-review commits - Claude's code gets reviewed automatically after each commit.
Review comment prioritization - Framework for deciding which automated review comments to fix vs skip. (skill)
Manual review command - /quick-review to trigger a code review on demand.
Plan review - Review agent for plans, automatically executed after every plan file edit. (agent)
Plan checklist - Remind Claude to mention in the plan: small commits, a comprehensive TODO list, etc. (skill)
Comment quality check - Reminds Claude that redundant comments are bad.
Package management - Blocks editing package.json/pyproject.toml directly. Enforces npm install / uv add.
WebFetch tip - Remind Claude it can download the file instead.
Brainstorm mode - Multiple perspectives on a problem before deciding. (skill)
Stack recommendations - Tips for starting new projects (Vite+React, uv for Python, etc.) (skill)
Install guidance - Ensures proper installation methods (CLI over manual edits, official docs over memorized instructions). (skill)
plugin-security-reviews
Security review for Claude Code plugins with auto-detection of new/changed plugins.
google-workspace-connector
Access Google Workspace APIs (Gmail, Drive, Sheets, Docs) via oauth2l + curl. (skill)
Requirements
- •jq - Required for most hooks. Install with
brew install jq(macOS) orapt install jq(Linux). If missing, you'll see a warning at session start and hooks will be disabled.
Installation
Option 1: Via slash commands
/plugin marketplace add hibukki/yonatans-cc-marketplace
/plugin install quick-review@yonatans-cc-marketplaceOption 2: Manual (in settings.json)
Add to your .claude/settings.json:
{
"enabledPlugins": {
"quick-review@yonatans-cc-marketplace": true
},
"extraKnownMarketplaces": {
"yonatans-cc-marketplace": {
"source": {
"source": "github",
"repo": "hibukki/yonatans-cc-marketplace"
}
}
}
}Setup (for contributors)
git config core.hooksPath .githooksThis enables the pre-commit hook that auto-bumps the plugin version.
Other plugins that seem promising
Search
Getting docs
As markdown, with optimizations for LLMs
Interacting with a browser
Seems more promising than the playwright MCP and the claude chrome plugin.
Install & Usage
/plugin marketplace add <org/repo>Add the configuration to /plugin install plugin-security-reviews@<marketplace>
/pluginUse Cases
Usage Examples
/plugin-security-reviews review plugin-name
Run a security review on all changed plugins since last commit
Check plugin 'quick-review' for security issues
Security Audits
Frequently Asked Questions
What is plugin-security-reviews?
This skill automatically detects new or changed plugins in your Claude Code plugin marketplace and performs security reviews on them, helping you catch vulnerabilities and enforce best practices before they affect your development workflow.
How to install plugin-security-reviews?
To install plugin-security-reviews: add a marketplace (/plugin marketplace add <org/repo>), then add the config to /plugin install plugin-security-reviews@<marketplace>. Finally, /plugin in Claude Code.
What is plugin-security-reviews best for?
plugin-security-reviews is a plugin categorized under General. It is designed for: security, code-review, plugin. Created by Yonatan.
What can I use plugin-security-reviews for?
plugin-security-reviews is useful for: Automatically review a newly added plugin for security vulnerabilities before it goes live.; Detect changes to an existing plugin and trigger a focused security review on the modified code.; Enforce security best practices across all plugins in your marketplace during continuous integration.; Generate a security report for all plugins in the marketplace to identify potential risks.; Review a plugin's dependencies and permissions to ensure they follow least-privilege principles.; Block deployment of a plugin that fails security review checks until issues are resolved..