A collection of Claude Code plugins featuring specialized agents, commands, and development skills for automation, document processing, calendar management, and image editing.
git clone https://github.com/emdashcodes/claude-code-plugins.gitClaude Code plugins is a comprehensive marketplace of pre-built skills, subagents, and slash commands designed to extend Claude's capabilities. The collection includes tools for Google Workspace integration (Docs, Sheets, Slides, Gmail, Calendar), meeting transcript extraction from Quill, Mermaid diagram conversion, and AI-powered image creation and editing. Developers and teams use these plugins to automate workflows, manage documents and communications, build custom agents, and integrate external tools via MCP servers. Each plugin comes with complete setup instructions and is ready for immediate installation into Claude Code environments.
Install the marketplace with `/plugin marketplace add emdashcodes/claude-code-plugins` to access all plugins. Individual plugins like Google Calendar require interactive OAuth setup via their `/[plugin-name]:setup` command. Some plugins (Quill export, Google Docs reader) require specific system access or active browser sessions.
Building custom slash commands for repeated development workflows
Reading and analyzing Google Docs, Sheets, and Slides with AI
Extracting and summarizing Quill meeting transcripts and recordings
Creating and editing images with natural language using Gemini
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/emdashcodes/claude-code-pluginsCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
Act as a Claude Code plugin developer. Create a plugin for [COMPANY] in the [INDUSTRY] sector that automates [SPECIFIC TASK]. The plugin should include at least 3 specialized agents and 2 unique commands. Provide the plugin code in Python and a brief description of each component.
# Claude Code Plugin for Retail Inventory Management
## Plugin Description
This plugin automates inventory tracking and reordering for retail businesses. It includes specialized agents for real-time stock monitoring, supplier communication, and sales forecasting.
## Agents
- **StockMonitorAgent**: Tracks inventory levels across all store locations
- **SupplierCommunicatorAgent**: Handles reordering and communicates with suppliers
- **SalesForecasterAgent**: Predicts future inventory needs based on sales data
## Commands
- `/reorder [product_id]`: Initiates the reordering process for a specific product
- `/stock_report [location]`: Generates a detailed stock report for a specific store location
## Python Code
```python
from claude_code import Plugin, Agent, Command
class InventoryPlugin(Plugin):
def __init__(self):
self.stock_monitor = StockMonitorAgent()
self.supplier_communicator = SupplierCommunicatorAgent()
self.sales_forecaster = SalesForecasterAgent()
@Command
def reorder(self, product_id: str):
# Implementation for reorder command
pass
@Command
def stock_report(self, location: str):
# Implementation for stock report command
pass
class StockMonitorAgent(Agent):
def __init__(self):
# Implementation for stock monitor agent
pass
# Additional agent implementations...
```AI assistant built for thoughtful, nuanced conversation
Get more done every day with Microsoft Teams – powered by AI
Automate security compliance and monitor real-time security posture seamlessly.
Automate your spreadsheet tasks with AI power
Agentic AI Workflow platform
Connected workspace for docs, wikis, and projects
Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan