devops-automation-pack
Complete DevOps automation suite with 25 plugins covering Git workflows, CI/CD pipelines, Docker optimization, Kubernetes management, Terraform IaC, and deployment strategies
View on GitHubTable of content
Complete DevOps automation suite with 25 plugins covering Git workflows, CI/CD pipelines, Docker optimization, Kubernetes management, Terraform IaC, and deployment strategies
Installation
npx claude-plugins install @jeremylongshore/claude-code-plugins-plus/devops-automation-pack
Contents
Folders: docs, plugins, skills
Files: LICENSE, README.md
Documentation
Professional DevOps tools that save you 10+ hours per week
Version 1.0.0 | October 2025
What Is This?
The DevOps Automation Pack is a collection of 25 professional plugins for Claude Code that automate your DevOps workflow.
Instead of manually:
- Writing Git commit messages
- Creating CI/CD pipelines from scratch
- Optimizing Dockerfiles
- Troubleshooting Kubernetes pods
- Writing Terraform modules
You get:
- AI-generated conventional commits
- Production-ready pipelines in minutes
- Automatic Docker optimization
- Instant Kubernetes diagnostics
- Reusable infrastructure modules
All built-in to Claude Code.
What’s Included
25 Professional Plugins
Git Workflow (5 commands)
/commit-smart(gc) - Generate conventional commits with AI/pr-create(gpr) - Create pull requests with professional templates/branch-create(bc) - Create properly named feature branches/merge-safe(ms) - Safe merge with conflict detection/rebase-interactive(ri) - Interactive rebase workflow
CI/CD Automation (6 plugins: 1 agent + 5 commands)
- CI/CD Expert Agent - Pipeline design specialist
/github-actions-create(gha) - Generate GitHub Actions workflows/gitlab-ci-create(glci) - Generate GitLab CI pipelines/circleci-config(cci) - Generate CircleCI configuration/pipeline-optimize(po) - Analyze and speed up slow pipelines/deployment-strategy(ds) - Recommend deployment approach
Docker (4 plugins: 1 agent + 3 commands)
- Docker Specialist Agent - Container optimization expert
/dockerfile-generate(dg) - Create optimized Dockerfiles/docker-compose-create(dcc) - Generate docker-compose.yml/docker-optimize(do) - Reduce image size by 50-80%
Kubernetes (4 plugins: 1 agent + 3 commands)
- Kubernetes Expert Agent - K8s orchestration specialist
/k8s-manifest-generate(km) - Generate production-ready manifests/k8s-helm-chart(kh) - Create Helm charts with best practices/k8s-troubleshoot(kt) - Debug pod failures instantly
Terraform (4 plugins: 1 agent + 3 commands)
- Terraform Architect Agent - Infrastructure as code expert
/terraform-module-create(tm) - Generate reusable modules/terraform-plan-analyze(tpa) - Analyze plans for risks/cloudformation-generate(cfn) - Create CloudFormation templates
Deployment (2 plugins: 1 agent + 1 command)
- Deployment Specialist Agent - Release management expert
/monitoring-setup(ms) - Set up Prometheus + Grafana
Total: 19 commands + 6 AI agents = 25 powerful plugins
Quick Start
Installation takes 5 minutes:
- Download the pack from your purchase email
- Extract the ZIP file
- Install with
claude plugin install . - Try it with
/commit-smart
Your first workflow (5 minutes):
# Create a feature branch
/branch-create
# Make changes, then commit
/commit-smart
# Open a pull request
/pr-create
See docs/QUICK_START.md
for detailed walkthrough.
Who Is This For?
Perfect For:
- Junior developers learning DevOps practices
- Senior engineers who want to move faster
- DevOps teams standardizing workflows
- Startups adopting cloud infrastructure
- Enterprises enforcing best practices
You’ll Benefit If You:
- Write Git commits, PRs, or create branches
- Build or optimize CI/CD pipelines
- Work with Docker containers
- Deploy to Kubernetes
- Manage infrastructure with Terraform
- Set up monitoring and alerting
Required Knowledge:
- Basic Git understanding (commit, push, pull)
- Familiarity with your chosen tools (Docker, K8s, etc.)
- No expert-level knowledge needed - plugins guide you
Real Results
What users accomplish:
| Task | Manual Time | With Pack | Saved |
|---|---|---|---|
| First CI/CD pipeline | 2-3 days | 2 minutes | 20 hours |
| Docker migration | 1 week | 15 minutes | 39 hours |
| Kubernetes deployment | 2-3 weeks | 3 days | 2+ weeks |
| Pipeline optimization | - | 2 hours | 7.2 hr/day |
| Terraform adoption | 3 weeks | 2 days | 2.5 weeks |
Average time saved: 10-15 hours per week
See docs/USE_CASES.md
for 7 detailed real-world scenarios.
Documentation
Getting Started
- Installation Guide - Step-by-step setup instructions (5 minutes)
- Quick Start - Your first workflow in 5 minutes
- Use Cases - 7 real-world scenarios with before/after
Reference
- Troubleshooting - Solutions to 20 common problems
- Plugin Reference - Complete command documentation (see each plugin’s help)
Support
- Email: mandy@intentsolutions.io
- Response time: Within 24 hours
- Include: Error message, command, OS, Claude Code version
Requirements
Minimum Requirements
- Claude Code ver
…(truncated)
Included Skills
This plugin includes 1 skill definition:
generating-conventional-commits
|
View skill definition
Devops Automation Pack
This skill provides automated assistance for devops automation pack tasks.
Overview
This skill provides automated assistance for devops automation pack tasks. This skill helps you create well-formatted, informative commit messages that follow the conventional commits standard, improving collaboration and automation in your Git workflow. It saves you time and ensures consistency across your project.
How It Works
- Analyze Changes: The skill analyzes the staged changes in your Git repository.
- Generate Suggestion: It uses AI to generate a commit message based on the analyzed changes, adhering to the conventional commits format (e.g.,
feat: add new feature,fix: correct bug). - Present to User: The generated commit message is presented to you for review and acceptance.
When to Use This Skill
This skill activates when you need to:
- Create a commit message after making code changes.
- Ensure your commit messages follow the conventional commits standard.
- Save time writing commit messages manually.
Examples
Example 1: Adding a New Feature
User request: “Generate a commit message for these changes.”
The skill will:
- Analyze the staged changes related to a new feature.
- Generate a commit message like
feat: Implement user authentication.
Example 2: Fixing a Bug
User request: “Create a commit for the bug fix.”
The skill will:
- Analyze the staged changes related to a bug fix.
- Generate a commit m
…(truncated)