Help us improve
Share bugs, ideas, or general feedback.
Claude Code plugins for AT Protocol and Bluesky
npx claudepluginhub johnwhiteside/claude-at-proto-pluginsAT Protocol exploration and interaction via at-explore MCP
AT Protocol lexicon exploration and authenticated XRPC calls via Lexicon Garden MCP
Search AT Protocol documentation via @immber's mcp-atproto-docs MCP server
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.
Share bugs, ideas, or general feedback.
A marketplace of Claude Code plugins for interacting with AT Protocol networks (Bluesky, etc.).
Add the marketplace to Claude Code:
claude /marketplace add johnwhiteside/claude-at-proto-plugins
Install plugins:
claude /install at-explore@claude-at-proto-plugins
| Plugin | Description |
|---|---|
| at-explore | Explore and interact with AT Protocol networks via at-explore MCP |
| atproto-docs | Search AT Protocol documentation via @immber's mcp-atproto-docs |
| lexicon-garden | AT Protocol lexicon exploration and authenticated XRPC calls via Lexicon Garden MCP |
To add a new plugin to this marketplace:
plugins/your-plugin-name/
├── .claude-plugin/
│ └── plugin.json
├── .mcp.json
└── commands/ # optional
└── your-command.md
plugin.json{
"name": "your-plugin-name",
"description": "A short description of what your plugin does",
"version": "1.0.0"
}
.mcp.jsonFor an npm package MCP server:
{
"mcpServers": {
"your-plugin-name": {
"type": "stdio",
"command": "npx",
"args": ["-y", "your-mcp-package"]
}
}
}
For a remote HTTP MCP server:
{
"mcpServers": {
"your-plugin-name": {
"type": "http",
"url": "https://your-server.com/mcp"
}
}
}
Create markdown files in a commands/ directory. Claude Code will automatically discover them.
marketplace.jsonAdd your plugin to .claude-plugin/marketplace.json:
{
"name": "your-plugin-name",
"source": "./plugins/your-plugin-name",
"description": "A short description of what your plugin does",
"version": "1.0.0",
"tags": ["relevant", "tags"]
}
MIT