npx claudepluginhub bellwether-ai/btc-claude-pluginsFlywheel work item management — orchestrate, plan, and execute tasks
Structured daily development workflow — standup, GitHub Projects roadmap, autonomous execution, docs, and session continuity
Claude Code plugin marketplace for Bellwether internal plugins.
This repo is a Claude Code plugin marketplace — a catalog of internally-developed plugins that extend Claude Code with custom skills, agents, hooks, and MCP server bundles.
In Claude Code, run:
/plugin install <plugin-name>@btc-claude-plugins
To browse available plugins, check the plugins/ directory or view .claude-plugin/marketplace.json.
plugins/ with your plugin name (kebab-case).claude-plugin/plugin.json manifest inside your plugin directory.claude-plugin/marketplace.jsonplugins/my-plugin/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest (required)
├── commands/ # Markdown skill files
├── agents/ # Subagent definitions
├── skills/ # Agent skills with SKILL.md
├── hooks/ # Event handlers (hooks.json)
├── .mcp.json # MCP server configurations
└── settings.json # Default plugin settings
plugin.json){
"name": "my-plugin",
"description": "What the plugin does",
"version": "1.0.0",
"author": {
"name": "Your Name",
"email": "[email protected]"
},
"keywords": ["relevant", "tags"]
}
The .claude-plugin/marketplace.json file catalogs all available plugins. Each entry references a plugin by its relative path in this repo:
{
"name": "btc-claude-plugins",
"owner": {
"name": "Bellwether Technology",
"email": "[email protected]"
},
"plugins": [
{
"name": "my-plugin",
"source": "./plugins/my-plugin",
"description": "What it does",
"version": "1.0.0"
}
]
}
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
No description available.