A curated marketplace of powerful plugins to enhance your Claude Code experience.
This is a plugin marketplace for Claude Code that provides centralized access to high-quality plugins. Marketplaces allow you to easily discover, install, and manage Claude Code extensions from a single source.
Version: 1.0.0 Author: Lorenzo Dessimoni
A comprehensive Software Engineer plugin for Claude Code that enhances development workflows with specialized tools and capabilities.
- Claude Code installed on your system
- Git (for cloning from GitHub)
Add this marketplace to your Claude Code installation using one of the following methods:
/plugin marketplace add funkyoz/funkyoz-plugins/plugin marketplace add https://github.com/funkyoz/funkyoz-plugins.gitIf you've cloned this repository locally:
/plugin marketplace add /path/to/funkyoz-pluginsOr directly reference the marketplace file:
/plugin marketplace add /path/to/funkyoz-plugins/.claude-plugin/marketplace.jsonList all your configured marketplaces:
/plugin marketplace listYou should see funkyoz-plugins in the list.
Once you've added the marketplace, you can install plugins in two ways:
Browse and install plugins interactively:
/pluginThis will show you all available plugins from all your marketplaces. Select the one you want to install.
Install a specific plugin by name:
/plugin install software-engineer@funkyoz-pluginsThe format is: /plugin install <plugin-name>@<marketplace-name>
Plugin marketplaces and their plugins receive regular updates that include:
- New features and capabilities
- Bug fixes and performance improvements
- Security patches
- New plugins added to the marketplace
It's recommended to periodically check for updates to ensure you have the latest versions.
When the marketplace adds new plugins or updates plugin information, refresh the marketplace catalog:
/plugin marketplace update funkyoz-pluginsThis command:
- Fetches the latest marketplace.json file from the repository
- Updates the list of available plugins
- Refreshes plugin versions and descriptions
- Does not automatically update installed plugins
After updating the marketplace metadata, you'll see if newer plugin versions are available. To update a specific plugin:
/plugin update software-engineerThis will:
- Check if a newer version is available in the marketplace
- Download and install the latest version
- Preserve your existing plugin configuration
To update all installed plugins from all marketplaces at once:
/plugin update --allTo see which plugins have updates available without installing them:
/plugin listThis will show all installed plugins with their current versions. Compare these with the marketplace listing to identify outdated plugins.
Follow this workflow to stay current:
-
Update marketplace metadata (monthly or when you know updates are available):
/plugin marketplace update funkyoz-plugins
-
Check what's new:
/plugin
Browse the marketplace to see new or updated plugins
-
Update installed plugins:
/plugin update software-engineer
Or update all at once:
/plugin update --all
The marketplace tracks plugin versions in the marketplace.json file. When you update:
- Marketplace updates pull the latest metadata from the git repository
- Plugin updates download the latest plugin code from their respective sources
- Updates are non-breaking - your configurations are preserved
If your team uses the marketplace configuration in .claude/settings.json, team members can stay synchronized:
{
"extraKnownMarketplaces": [
{
"source": "github",
"repo": "funkyoz/funkyoz-plugins"
}
]
}When users run /plugin marketplace update funkyoz-plugins, they'll get the same marketplace version as the rest of the team.
See all configured marketplaces:
/plugin marketplace listIf you need to remove this marketplace and all its installed plugins:
/plugin marketplace remove funkyoz-pluginsWarning: This will also uninstall any plugins installed from this marketplace.
If you're using this marketplace in a team setting, you can configure it to be automatically installed for all team members.
Add this to your project's .claude/settings.json:
{
"extraKnownMarketplaces": [
{
"source": "github",
"repo": "funkyoz/funkyoz-plugins"
}
]
}When team members trust the repository, Claude Code will automatically install this marketplace and any specified plugins.
If you get an error when adding the marketplace:
- Check your internet connection - Ensure you can access GitHub
- Verify the repository exists - Visit https://github.com/funkyoz/funkyoz-plugins
- Check for typos - Make sure you've entered the correct owner/repo name
-
Update the marketplace first:
/plugin marketplace update funkyoz-plugins
-
Check plugin availability:
/plugin
Browse to see if the plugin appears in the list
-
Check for permissions - If using a private repository, ensure you have access
If marketplace or plugin updates fail:
- Check git access - Ensure you can pull from the repository
- Verify network connectivity - Updates require internet access
- Check for local modifications - If you've modified plugins locally, updates may conflict
- Remove and reinstall - As a last resort:
/plugin marketplace remove funkyoz-plugins /plugin marketplace add funkyoz/funkyoz-plugins
If you're developing or modifying plugins locally, validate them before sharing:
claude plugin validate .For issues, questions, or contributions:
- Email: lorenzo.dessimoni@gmail.com
- Issues: Report problems via the repository's issue tracker
Want to contribute a plugin to this marketplace? Check out the Claude Code Plugin Documentation for detailed information on creating and submitting plugins.
Please refer to individual plugin licenses for usage terms and conditions.
Marketplace Maintainer: Lorenzo Dessimoni (lorenzo.dessimoni@gmail.com)