Guide for standardized project initialization following team conventions
You can install this plugin from any of these themed marketplaces. Choose one, add it as a marketplace, then install the plugin.
Choose your preferred installation method below
A marketplace is a collection of plugins. Every plugin gets an auto-generated marketplace JSON for individual installation, plus inclusion in category and themed collections. Add a marketplace once (step 1), then install any plugin from it (step 2).
One-time setup for access to all plugins
When to use: If you plan to install multiple plugins now or later
Step 1: Add the marketplace (one-time)
/plugin marketplace add https://claudepluginhub.com/marketplaces/all.json
Run this once to access all plugins
Step 2: Install this plugin
/plugin install project-setup-standards@all
Use this plugin's auto-generated marketplace JSON for individual installation
When to use: If you only want to try this specific plugin
Step 1: Add this plugin's marketplace
/plugin marketplace add https://claudepluginhub.com/marketplaces/plugins/project-setup-standards.json
Step 2: Install the plugin
/plugin install project-setup-standards@project-setup-standards
A curated collection of Claude Code plugins designed to standardize and streamline team workflows for code review and project setup.
/code-review
)A comprehensive code review assistant that ensures consistency across your team's review process.
Features:
Use Case: Run this command when reviewing pull requests to ensure all team standards are consistently applied.
/project-setup
)An interactive guide for initializing new projects following team conventions.
Features:
Use Case: Use this command when starting a new project to ensure it follows all team conventions from day one.
In Claude Code, run:
/plugin marketplace add natifridman/claude-plugins
Install individual plugins as needed:
/plugin install code-review-standards@team-standards-marketplace
/plugin install project-setup-standards@team-standards-marketplace
Or install both at once:
/plugin install code-review-standards project-setup-standards
When reviewing a pull request:
/code-review
Claude will provide a comprehensive review based on team standards, covering all critical aspects from code quality to security.
When starting a new project:
/project-setup
Claude will guide you through the complete setup process, ensuring all team conventions are followed.
You can customize these plugins to match your specific team standards:
plugins/*/commands/*.md
marketplace.json
to point to your forkTo contribute new plugins to this marketplace:
plugins/
plugins/your-plugin-name/
āāā .claude-plugin/
ā āāā plugin.json
āāā commands/
āāā your-command.md
.claude-plugin/marketplace.json
to include your pluginEach plugin follows this structure:
plugins/plugin-name/
āāā .claude-plugin/
ā āāā plugin.json # Plugin metadata
āāā commands/
āāā command-name.md # Command definition and prompts
{
"name": "plugin-name",
"version": "1.0.0",
"description": "Brief description of what the plugin does",
"author": {
"name": "Your Name"
}
}
Command files use YAML frontmatter for metadata:
---
description: Brief description of what this command does
---
# Command Name
Detailed instructions for Claude on how to execute this command...
The marketplace is defined in .claude-plugin/marketplace.json
:
{
"name": "marketplace-name",
"owner": {
"name": "owner-name",
"url": "https://github.com/owner-name"
},
"description": "Marketplace description",
"plugins": [
{
"name": "plugin-name",
"source": "./plugins/plugin-name",
"description": "Plugin description"
}
]
}
We welcome contributions from team members! To contribute:
git checkout -b feature/new-plugin
)git commit -m 'Add: new deployment plugin'
)git push origin feature/new-plugin
)MIT License - See LICENSE file for details
For questions or issues:
Made with ā¤ļø for streamlined team collaboration
1.0.0