Help us improve
Share bugs, ideas, or general feedback.
A collection of plugins for Claude Code
npx claudepluginhub zlyv587/marketplaceAutomatically keeps CLAUDE.md synchronized with project state. Detects project type, analyzes current state, and proposes documentation updates.
Persistent memory for Claude Code using mem0 cloud API. Automatically captures and retrieves global user-level and project-level memories.
Development toolkit for GUI automation agents with /dev command (6-step workflow), 8 agents, and code review skill
Check for updates to installed Claude Code plugins from the developer-kits marketplace
Production-ready workflow orchestration with 80 focused plugins, 185 specialized agents, and 153 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
No description available.
Share bugs, ideas, or general feedback.
A collection of plugins for Claude Code.
| Plugin | Version | Description | Category |
|---|---|---|---|
| claude-md-sync | 1.0.0 | Automatically keeps CLAUDE.md synchronized with project state. Detects project type, analyzes current state, and proposes documentation updates. | Productivity |
| claude-mem0 | 1.6.1 | Persistent memory for Claude Code using mem0 cloud API. Automatically captures and retrieves global user-level and project-level memories. | Productivity |
| gui-agent-dev | 1.1.0 | Development toolkit for GUI automation agents with /dev command (6-step workflow), 8 agents (5 domain + 3 workflow), and code review skill. | Development |
| plugin-updater | 1.0.0 | Check for updates to installed Claude Code plugins from the developer-kits marketplace. Use /check-updates command. | Maintenance |
/plugin marketplace add marketplace
/plugin install claude-md-sync@developer-kits
/plugin install claude-mem0@developer-kits
/plugin install gui-agent-dev@developer-kits
/plugin install plugin-updater@developer-kits
Install the plugin-updater and use the /check-updates command:
# Install the plugin
/plugin install plugin-updater@developer-kits
# Check for updates anytime
/check-updates
This will automatically:
# Clone or download the repository
git clone marketplace
cd developer-kits
# Run the update checker
bash scripts/check-updates.sh
The script will:
Check the versions.json file for the latest version numbers, or visit the Releases page.
# Update a specific plugin
/plugin install <plugin-name>@developer-kits
# This will fetch and install the latest version
To update a plugin to the latest version:
/plugin install <plugin-name>@developer-kits
Example:
/plugin install claude-mem0@developer-kits
Each plugin maintains its own changelog:
The versions.json file is automatically generated from each plugin's plugin.json file. You don't need to manually maintain it.
To regenerate versions.json locally:
bash scripts/generate-versions.sh
When you push changes to any plugins/*/.claude-plugin/plugin.json file, GitHub Actions will automatically:
versions.jsonYou can also manually trigger the workflow from the GitHub Actions tab.
Update the version in your plugin's .claude-plugin/plugin.json:
{
"name": "your-plugin",
"version": "1.1.0",
...
}
Update the plugin's CHANGELOG.md with the new version details
Commit and push:
git add plugins/your-plugin/.claude-plugin/plugin.json
git add plugins/your-plugin/CHANGELOG.md
git commit -m "chore: bump your-plugin to v1.1.0"
git push
GitHub Actions will automatically update versions.json
(Optional) Create a GitHub Release with tag your-plugin-v1.1.0
MIT