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
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 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.
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": "you@bellwethertech.com"
},
"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": "dev@bellwethertech.com"
},
"plugins": [
{
"name": "my-plugin",
"source": "./plugins/my-plugin",
"description": "What it does",
"version": "1.0.0"
}
]
}