CLAUDE_CODE_PLUGIN.md
This repository includes a Claude Code plugin marketplace in .claude-plugin/marketplace.json.
Once this repository is pushed to GitHub, users can install with:
# Add the marketplace
/plugin marketplace add eyaltoledano/claude-task-master
# Install the plugin
/plugin install taskmaster@taskmaster
# From the project root directory
cd /path/to/claude-task-master
# Build the plugin first
cd packages/claude-code-plugin
npm run build
cd ../..
# In Claude Code
/plugin marketplace add .
/plugin install taskmaster@taskmaster
claude-task-master/
├── .claude-plugin/
│ └── marketplace.json # Marketplace manifest (at repo root)
│
├── packages/claude-code-plugin/
│ ├── src/build.ts # Build tooling
│ └── [generated plugin files]
│
└── assets/claude/ # Plugin source files
├── commands/
└── agents/
AI-powered task management system for ambitious development workflows.
Features:
Quick Start:
/tm:init
/tm:parse-prd
/tm:next
To add more plugins to this marketplace:
Update marketplace.json:
{
"plugins": [
{
"name": "new-plugin",
"source": "./path/to/plugin",
"description": "Plugin description",
"version": "1.0.0"
}
]
}
Commit and push the changes
Users update with: /plugin marketplace update taskmaster
The marketplace version is tracked in .claude-plugin/marketplace.json:
{
"metadata": {
"version": "1.0.0"
}
}
Increment the version when adding or updating plugins.
Organizations can auto-install this marketplace for all team members by adding to .claude/settings.json:
{
"extraKnownMarketplaces": {
"task-master": {
"source": {
"source": "github",
"repo": "eyaltoledano/claude-task-master"
}
}
},
"enabledPlugins": {
"taskmaster": {
"marketplace": "taskmaster"
}
}
}
Team members who trust the repository folder will automatically get the marketplace and plugins installed.