A marketplace of plugins for AI-powered coding assistants
npx claudepluginhub dipcode-software/agents-marketplaceDipcode developer toolkit — git commit conventions, GitLab MR comment utilities, and dependency validation
A marketplace of plugins for AI-powered coding assistants — compatible with Cursor and Claude Code.
Each folder in this repository is a self-contained plugin that can be installed into your editor to extend its capabilities with custom skills, hooks, agents, and commands.
| Plugin | Description |
|---|---|
| devkit | Dipcode developer toolkit — git commit conventions and GitLab MR comment utilities |
Add and install from the marketplace:
# Add the marketplace
/plugin marketplace add [email protected]:dipcode-software/agents-marketplace.git
# Install a plugin
/plugin install devkit@dipcode-marketplace
To auto-suggest the marketplace for your team, add to .claude/settings.json:
{
"extraKnownMarketplaces": {
"dipcode-marketplace": {
"source": {
"source": "url",
"url": "[email protected]:dipcode-software/agents-marketplace.git"
}
}
}
}
To add this as a team marketplace:
Once imported, plugins can be installed directly from the marketplace panel, scoped to individual projects or system-wide.
The gitlab-mr-comments skill requires the following tools to be installed and available in your PATH:
python-gitlab — GitLab CLI (gitlab command):
pip install python-gitlab
Configure it via ~/.python-gitlab.cfg or environment variables. See the python-gitlab authentication docs for details.
jq — JSON processor used to normalize the API output:
# macOS
brew install jq
# Debian/Ubuntu
apt install jq
To add a new plugin, create a folder at the repository root containing:
.claude-plugin/plugin.json — Plugin manifest for Claude Code.cursor-plugin/plugin.json — Plugin manifest for Cursor (optional)skills/ — Skill definitions (markdown files with YAML frontmatter)hooks/ — Event-driven hooks (optional)agents/ — Autonomous agents (optional)commands/ — Slash commands (optional)Then register it in both marketplace files:
.claude-plugin/marketplace.json:
{
"name": "my-plugin",
"source": "./my-plugin",
"description": "What the plugin does"
}
.cursor-plugin/marketplace.json:
{
"name": "my-plugin",
"source": "my-plugin",
"description": "What the plugin does"
}
Note: Claude Code uses ./ prefixed relative paths, Cursor uses bare directory names.
Each plugin should be independent and self-contained. Plugins cannot reference files outside their own directory.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 84 marketplace plugins, 192 local specialized agents, and 156 local skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations