claude-plugins
Health Pass
- License — License: MIT
- Description — Repository has a description
- Active repo — Last push 0 days ago
- Community trust — 10 GitHub stars
Code Pass
- Code scan — Scanned 12 files during light audit, no dangerous patterns found
Permissions Pass
- Permissions — No dangerous permissions requested
This project is a curated collection of specialized plugins for Claude Code. It provides intelligent agents, skills, and commands to assist with DevOps infrastructure, software engineering, and Go development workflows.
Security Assessment
Overall Risk: Low. The automated code scan checked 12 files and found no dangerous patterns, hardcoded secrets, or requests for dangerous permissions. However, the plugins are designed to interact with your local environment and rely on external CLI tools (`gh`, `glab`). This means they will execute shell commands on your machine to interact with GitHub and GitLab APIs. Additionally, the optional MCP server integration requires routing web searches through a third-party API (Perplexity AI) using an API key stored in your environment variables.
Quality Assessment
The project appears to be in good health and actively maintained, with its last push occurring very recently. It uses the highly permissive and standard MIT license, making it safe for integration into most projects. Community trust is currently minimal but positive, as the repository has only garnered 10 GitHub stars.
Verdict
Safe to use, though you should be aware that running the DevOps and CI/CD agents will execute local shell commands and interact with your external Git platform accounts.
A curated collection of specialized Claude Code plugins designed to enhance your development workflow with intelligent agents, skills, and commands.
Claude Code Plugin Marketplace
A curated collection of specialized Claude Code plugins designed to enhance your development workflow with intelligent agents, skills, and commands.
Official claude code marketplace: https://github.com/anthropics/claude-code
Overview
This marketplace provides three comprehensive plugin collections:
- devops-infrastructure: Infrastructure as Code (IaC), CI/CD pipeline specialists, and database optimization experts for DevOps workflows
- software-engineering: Code review, debugging, documentation, license compliance, payment integration, and HTML-first frontend development tools
- go-specialist: Advanced Go 1.25+ development with modern patterns, concurrency optimization, and production-ready tooling (linting, GitHub workflows, GitLab CI, GoReleaser)
Each plugin includes proactive agents that automatically assist with their specialized domains, plus skills and commands to streamline common development tasks.
Adding this Marketplace
/plugin marketplace add sgaunet/claude-plugins
For local development, you can also link a local folder:
git clone [email protected]:sgaunet/claude-plugins.git
claude
within claude:
/plugin marketplace add ./claude-plugins
Listing
/plugin
Prerequisites
CLI Tools
These plugins use gh and glab CLIs for GitHub/GitLab operations:
Authenticate after installation:
gh auth login
glab auth login
MCP Server (Optional)
perplexity-ai — AI-Powered Research
Repository: sgaunet/pplx
Provides AI-powered web search and question-answering capabilities through Perplexity AI.
Installation:
# Install from source
git clone https://github.com/sgaunet/pplx.git
cd pplx
go install
# Or download pre-built binary from releases
Configuration:
# Add to Claude Code MCP configuration
claude mcp add perplexity-ai -- pplx mcp-stdio
# Set environment variable
export PPLX_API_KEY="your-perplexity-api-key"
Environment Variables:
PPLX_API_KEY- Your Perplexity AI API key (get from perplexity.ai)
Plugin Details
devops-infrastructure
Agents:
aws-specialist- AWS cloud architecture, Well-Architected Framework, cost optimizationcicd-specialist- GitHub Actions, GitLab CI, Forgejo Actions expertdatabase-specialist- PostgreSQL, MySQL optimization and schema designdevops-specialist- Terraform, Ansible, CloudFormation, cloud automationpostgresql-specialist- PostgreSQL 16+ advanced features, query optimization, replication
Commands:
/analyze-db-performance- PostgreSQL performance analysis with query and index insights
Skills: None yet
Use Cases:
- Infrastructure as Code (Terraform, Ansible)
- CI/CD pipeline creation and debugging
- Database performance optimization
software-engineering
Agents:
code-review-enforcer- Code quality, security, best practicesdebugger- Error analysis and root cause investigationdocs-architect- Long-form technical documentation (uses Opus model)html-first-frontend- HTMX, Alpine.js, Tailwind developmentlicense-specialist- Open source license compliance for SaaSpayment-integrator- Stripe, PayPal, subscription billingsecurity-auditor- Security vulnerability detection
Commands:
/analyze-and-create-issue- Analyze codebase issues and create GitHub/GitLab issues/analyze-pr- Comprehensive PR review for quality, security, and coverage/audit-codebase- Security and performance audit/check-claude-md-tokens- Monitor and optimize CLAUDE.md token count/commit- Generate conventional commit messages/create-issue- Create GitHub or GitLab issue/feature-flow- Complete git workflow orchestration (branch, issue, commit)/gen-claude- Generate or enhance CLAUDE.md with project guidance/upd-project-description- Update GitHub/GitLab project metadata
Use Cases:
- Automated code review and security scanning
- Technical documentation generation
- License compliance checking
- Payment integration implementation
go-specialist
Agents:
golang-pro- Go 1.25+ expert with generics, concurrency, performance optimization
Commands:
/gen-github-dir- Generate complete .github directory with workflows and configs/gen-gitlab-ci- Generate GitLab CI/CD pipeline for Go projects/gen-goreleaser- Generate GoReleaser configuration with multi-arch builds/gen-linter- Generate .golangci.yml with 90+ linters/gen-taskfiles- Generate Taskfile.yml and .pre-commit-config.yaml/verify-task- Verify Go task implementation quality with TDD validation
Skills:
linter- golangci-lint configurationgithub-workflows- GitHub Actions workflows for Gogitlab-ci- GitLab CI/CD pipelines for Gogoreleaser- GoReleaser configuration for releases
Use Cases:
- Go project scaffolding with best practices
- CI/CD pipeline generation (GitHub Actions or GitLab CI)
- Automated releases with GoReleaser
- Code quality enforcement with golangci-lint
Extras
The extras/ directory contains standalone utilities for Claude Code that are not plugins — they are helper scripts you install independently.
statusline
A lightweight bash statusline for Claude Code that displays the active model, context window usage with a color-coded progress bar, and total context size.
[Opus] ▓▓▓░░░░░░░ 30% | 200k ctx
Install: ./extras/statusline/configure-statusline.sh
Details: extras/statusline/install-statusline.md
no-leak
A PreToolUse hook that prevents Claude Code from reading or modifying sensitive files (.env, credentials, private keys, vault files). Unlike CLAUDE.md instructions, hooks are deterministic — the LLM cannot bypass them.
Install: ./extras/no-leak/configure-no-leak.sh
Details: extras/no-leak/install-no-leak.md
Development
Prerequisites
Local Development
# Clone repository
git clone https://github.com/sgaunet/claude-plugins.git
cd claude-plugins
# List available tasks
task
# Validate plugin structure
task check
# Or validate individually
cd plugins/devops-infrastructure && claude plugin validate .
cd plugins/software-engineering && claude plugin validate .
cd plugins/go-specialist && claude plugin validate .
Project Structure
.
├── .claude-plugin/
│ └── marketplace.json # Marketplace definition
├── extras/
│ ├── statusline/ # Custom statusline script
│ └── no-leak/ # Sensitive file protection hook
├── plugins/
│ ├── devops-infrastructure/
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json # Plugin metadata
│ │ ├── agents/ # Agent definitions (*.md)
│ │ ├── commands/ # Slash commands (*.md)
│ │ ├── hooks.json # Event hooks
│ │ └── .mcp.json # MCP server config
│ ├── software-engineering/
│ │ └── [same structure]
│ └── go-specialist/
│ └── [same structure]
└── README.md
Creating New Agents
- Choose appropriate plugin directory
- Create
plugins/<plugin>/agents/<name>.md - Add YAML frontmatter with
name,description,model,color - Define proactive triggers (file patterns, keywords)
- Document capabilities and deliverables
- Validate:
claude plugin validate .
Links
MCP Servers:
- sgaunet/pplx - Perplexity AI MCP server
Documentation:
Tools:
Reviews (0)
Sign in to leave a review.
Leave a reviewNo results found