This repository is configured as a personal CodeBuddy Code plugin marketplace.
.codebuddy-plugin/marketplace.json: The main configuration file defining the marketplace and listed plugins.plugins/: A directory where you can host local plugins directly in this repository (optional).
- Edit Configuration: Update
.codebuddy-plugin/marketplace.jsonwith your marketplace details and add your plugins. - Add Plugins:
- Remote Plugins: Add entries in the
pluginsarray pointing to external repositories (e.g., GitHub). - Local Plugins: Place plugin code in the
plugins/directory and reference them using relative paths inmarketplace.json.
- Remote Plugins: Add entries in the
- Register Marketplace: Use the CodeBuddy command to add this marketplace:
/plugin marketplace add <your-repo-url>
{
"name": "my-tool",
"description": "A very useful tool",
"version": "1.0.0",
"source": {
"source": "github",
"repo": "username/my-tool-repo"
}
}