A comprehensive DevOps assistant plugin for Claude providing CI/CD, monitoring, security scanning, and infrastructure management capabilities
Regulatory compliance and policy enforcement agent
Professional spec design document creation and refinement agent
Performance testing and optimization agent for applications and infrastructure
Automated repository initialization from boilerplate templates with custom specifications
Advanced security analysis agent for code reviews and vulnerability detection
Uses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
This repository demonstrates best practices for structuring and distributing Claude plugins. It includes a complete sample plugin (devops-assistant) located in the sample-plugin subdirectory.
swarm-claude-plugin/ # Repository root
├── .claude-plugin/
│ └── marketplace.json # Marketplace manifest for discovery
├── .claude-repository.json # Repository manifest for plugin discovery
├── sample-plugin/ # Plugin in subdirectory (recommended structure)
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin manifest
│ ├── commands/ # Plugin commands
│ ├── agents/ # AI agents
│ ├── skills/ # Reusable skills
│ ├── hooks/ # Lifecycle hooks
│ ├── scripts/ # Utility scripts
│ ├── README.md # Plugin documentation
│ ├── QUICK_START.md # Quick start guide
│ ├── install.sh # Installation script
│ └── ...
├── scripts/
│ └── list-plugins.sh # Helper script to list installed plugins
├── install.sh # Main installation script
├── USER_GUIDE.md # Comprehensive user guide for using the plugin
├── QUICK_REFERENCE.md # Quick reference card / cheat sheet
├── REMOTE_INSTALLATION_GUIDE.md # Guide for remote installation
├── GIT_DISCOVERY_GUIDE.md # Guide for Git-based discovery
├── examples/ # Usage examples (future)
├── docs/ # Additional documentation (future)
└── README.md # This file
# Install directly using our installation script
curl -sSL https://raw.githubusercontent.com/trilogy-group/swarm-claude-plugin/main/install.sh | bash
# Add the repository as a marketplace (for public repos)
claude plugin marketplace add trilogy-group/swarm-claude-plugin
# Install the plugin
claude plugin install devops-assistant
# Clone the repository
git clone https://github.com/trilogy-group/swarm-claude-plugin.git
cd swarm-claude-plugin
# Add as local marketplace
claude plugin marketplace add .
# Install the plugin
claude plugin install devops-assistant
# For private repositories, use SSH
git clone [email protected]:trilogy-group/swarm-claude-plugin.git
cd swarm-claude-plugin
# Add as local marketplace
claude plugin marketplace add .
# Install the plugin
claude plugin install devops-assistant
.claude-plugin/marketplace.json for marketplace discoveryOnce installed, you can use the plugin in multiple ways:
# Start Claude CLI
claude
# Use plugin commands
> @devops status
> @devops logs --service api-gateway
# Natural language requests
> Check the health of our infrastructure
> Review this code for security issues
# Direct execution
claude -p "@devops status --format json"
# Natural language
claude -p "Analyze our deployment logs for errors"
from claude import Claude, plugins
claude = Claude()
devops = plugins.load('devops-assistant')
# Execute commands
status = devops.command('status', {'environment': 'prod'})
# Use agents
security_review = devops.agent('security-reviewer').analyze('./src')
📚 Full Documentation: See USER_GUIDE.md for comprehensive usage instructions
# Install a plugin
claude plugin install devops-assistant
# Install from specific marketplace
claude plugin install devops-assistant@swarm-claude-plugin
# Enable a plugin (use full name with marketplace)
claude plugin enable devops-assistant@swarm-claude-plugin
# Disable a plugin (use full name with marketplace)
claude plugin disable devops-assistant@swarm-claude-plugin
# Uninstall a plugin
claude plugin uninstall devops-assistant
# Validate a plugin (checks manifest structure)
claude plugin validate /path/to/plugin
Note: The plugin name format for enable/disable commands may require the full plugin@marketplace format.
# Add a marketplace
claude plugin marketplace add trilogy-group/swarm-claude-plugin # GitHub format
claude plugin marketplace add /path/to/local/plugin # Local path
# List marketplaces
claude plugin marketplace list
# Remove a marketplace
claude plugin marketplace remove swarm-claude-plugin
npx claudepluginhub trilogy-group/swarm-claude-pluginInteractively discover patentable ideas in a codebase and generate high-quality patent disclosure documents
Deep research agent that decomposes questions into dependency graphs, researches in parallel, verifies findings, and produces cited reports.
Submit, list, monitor, and cancel Fireworks fine-tuning jobs (SFT + DPO) via the Trilogy team's fair-scheduler queue. Blocks direct firectl / Fireworks API use for fine-tuning.
Complete DevOps automation platform with CI/CD pipeline management, infrastructure as code, security scanning, and deployment automation. Includes hooks for config validation and MCP server for deployment tracking.
Comprehensive plugin development toolkit for creating Claude Code plugins with AI-powered guidance for skills, agents, commands, and hooks
Diagnose and fix Claude Code configuration issues including plugin registry, settings, hooks, and MCP servers
Complete developer toolkit for Claude Code
Use this agent when monitoring system health, optimizing performance, managing scaling, or ensuring infrastructure reliability. This agent excels at keeping studio applications running smoothly while preparing for growth and preventing disasters. Examples:\n\n<example>\nContext: App experiencing slow performance
Ultimate plugin management toolkit with 4 auto-invoked Skills for creating, validating, auditing, and versioning plugins in the claude-code-plugins marketplace