npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

claude-skills-devops

v1.3.5

Published

Interactive DevOps & Infrastructure skills for Claude Code

Downloads

94

Readme


Why?

Most DevOps tasks follow the same pattern: scan the project, make decisions, generate configs, validate. But you repeat this from scratch every time.

These skills encode senior DevOps knowledge into reusable workflows. Type a slash command, answer a few questions, get production-ready output.

You: /devops-docker-gen both

Claude: Analyzing project... Node.js + Express detected.
        PostgreSQL and Redis found in dependencies.
        Generating multi-stage Dockerfile, docker-compose.yml, .dockerignore...

        Generated Files
        ──────────────────────────────────
        Dockerfile          (multi-stage, 3 stages, ~150MB final)
        docker-compose.yml  (app + postgres + redis)
        .dockerignore       (24 rules)
        ──────────────────────────────────
        Next: docker compose up -d

How It Works

                    You type: /devops-deploy prod aws
                                    |
                    +---------------+---------------+
                    |                               |
              1. Read SKILL.md              2. Scan your project
              (deployment workflow)          (detect Node.js, Next.js)
                    |                               |
                    +---------------+---------------+
                                    |
                          3. Read references/aws.md
                          (AWS-specific commands)
                                    |
                          4. Execute workflow
                          (checks -> deploy -> verify)

Each skill lives in ~/.claude/skills/ with a SKILL.md and optional references/ directory.


11 Skills

Deploy & Ship

| | Skill | What it does | |:--|:------|:------------| | :rocket: | /devops-deploy | Deploy to Vercel, AWS, GCP, Fly.io, Railway with pre-checks & rollback | | :whale: | /devops-docker-gen | Generate Dockerfile + docker-compose for 9 languages. Multi-platform builds | | :arrows_counterclockwise: | /devops-ci-pipeline | CI/CD for GitHub Actions, GitLab CI, CircleCI, Bitbucket. With DB migration gates |

Secure & Audit

| | Skill | What it does | |:--|:------|:------------| | :shield: | /devops-infra-audit | 50+ security checks with before/after fix examples. Supply chain scanning | | :closed_lock_with_key: | /devops-secrets | Secret management with SOPS, Vault, AWS SM. Audit, rotate, migrate | | :gear: | /devops-env-sync | Compare, validate, analyze .env files across environments and 9 languages |

Provision & Orchestrate

| | Skill | What it does | |:--|:------|:------------| | :ship: | /devops-k8s | Generate manifests, debug pods, Helm charts, GitOps with ArgoCD | | :cloud: | /devops-terraform | Infrastructure as Code for AWS/GCP with reusable module patterns | | :bar_chart: | /devops-monitor | Prometheus, OTel, Datadog setup. SLO alerting + RED method dashboards |

Analyze & Migrate

| | Skill | What it does | |:--|:------|:------------| | :mag: | /devops-log-analyzer | Error patterns, timeline reconstruction, distributed trace correlation | | :floppy_disk: | /devops-db-migrate | Safe migrations for Prisma, Alembic, TypeORM + 7 more. Zero-downtime strategies |


/devops-deploy

/devops-deploy staging vercel    # deploy to staging on Vercel
/devops-deploy prod aws          # deploy to production on AWS
/devops-deploy                   # interactive mode
  • Detects project type (Node.js, Python, Go, Rust, Java, C#/.NET, Ruby, PHP, Elixir)
  • Pre-deploy checks: tests, lint, build, git status, secret scan
  • Per-provider rollback procedures with verification steps
  • Post-deploy health check

Providers: Vercel, AWS (ECS/Lambda/S3), GCP (Cloud Run/App Engine), Fly.io, Railway


/devops-docker-gen

/devops-docker-gen dockerfile    # only Dockerfile
/devops-docker-gen compose       # only docker-compose.yml
/devops-docker-gen both          # everything
  • Multi-stage Dockerfile (~150MB vs ~1GB)
  • docker-compose with health checks, resource limits, logging, init
  • Multi-platform builds (ARM64 + AMD64)
  • Kafka, MinIO, worker compose patterns

Languages: Node.js, Python, Go, Rust, Java, C#/.NET, PHP, Elixir, Ruby


/devops-ci-pipeline

/devops-ci-pipeline github-actions
/devops-ci-pipeline gitlab-ci
/devops-ci-pipeline bitbucket-pipelines
  • Dependency caching, matrix builds, parallel jobs
  • Security scanning, conditional deploy
  • Monorepo support (Turborepo, Nx, pnpm workspaces)
  • Database migration safety gates in CI

/devops-infra-audit

/devops-infra-audit all          # scan everything
/devops-infra-audit docker       # only Docker
/devops-infra-audit k8s          # only Kubernetes

50+ checks across: Docker, Compose, CI/CD, K8s, Env, Terraform, Supply Chain

Output: Scored report (A-F) with before/after fix code examples


/devops-secrets

/devops-secrets setup            # set up from scratch
/devops-secrets audit            # scan for secret hygiene issues
/devops-secrets rotate           # plan & execute rotation
/devops-secrets migrate          # migrate between providers

Supports: SOPS + age, AWS Secrets Manager, HashiCorp Vault, External Secrets Operator, Sealed Secrets, Doppler


/devops-k8s

/devops-k8s generate deployment  # create manifests
/devops-k8s debug                # diagnose failing pods
/devops-k8s helm my-app          # Helm chart scaffold
/devops-k8s gitops               # ArgoCD + Kustomize

Generates: Deployment, Service, Ingress, ConfigMap, HPA, PDB, NetworkPolicy


/devops-env-sync

/devops-env-sync compare         # matrix of all .env files
/devops-env-sync analyze         # find where each var is used
/devops-env-sync validate        # check missing/empty vars

Scans 9 languages for env var usage. Framework-aware (Next.js, Vite, Django, Rails).


/devops-monitor

/devops-monitor prometheus       # Prometheus + Grafana
/devops-monitor datadog          # Datadog APM
/devops-monitor                  # interactive

SLO/SLI framework, burn rate alerting, RED method dashboards, OTel auto-instrumentation.


/devops-terraform

/devops-terraform aws            # AWS resources
/devops-terraform gcp            # GCP resources

Generates: main.tf, variables.tf, outputs.tf, backend.tf with reusable module patterns.


/devops-log-analyzer

/devops-log-analyzer             # interactive
/devops-log-analyzer errors      # focus on errors

Error frequency, timeline reconstruction, distributed trace correlation across microservices.


/devops-db-migrate

/devops-db-migrate               # detects your tool
/devops-db-migrate status        # check pending

Supports: Prisma, Alembic, Knex, TypeORM, Drizzle, Django, Flyway, EF Core, Laravel, Ecto


Language Support

| Language | Docker | CI | Deploy | Monitor | Migrations | |:---------|:------:|:--:|:------:|:-------:|:----------:| | Node.js | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | | Python | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | | Go | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | | Rust | :white_check_mark: | :white_check_mark: | :white_check_mark: | - | - | | Java | :white_check_mark: | :white_check_mark: | :white_check_mark: | - | :white_check_mark: | | C#/.NET | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | | PHP | :white_check_mark: | :white_check_mark: | :white_check_mark: | - | :white_check_mark: | | Elixir | :white_check_mark: | :white_check_mark: | :white_check_mark: | - | :white_check_mark: | | Ruby | :white_check_mark: | :white_check_mark: | :white_check_mark: | - | - |

By the Numbers

| | | |:--|:--| | 11 | Interactive skills | | 52 | Files in package | | 50+ | Security checks (infra-audit) | | 9 | Languages supported | | 6 | Cloud providers | | 10 | Migration tools | | 7 | Secret managers |

CLI

claude-skills-devops list              # show installed skills
claude-skills-devops info k8s          # skill details, references, size
claude-skills-devops doctor            # health check with version & stats
claude-skills-devops update            # update to latest from npm
claude-skills-devops install           # reinstall skills
claude-skills-devops uninstall         # clean removal
[claude-skills-devops] Health check:

  Package version:   v1.3.1
  Manifest version:  v1.3.1
  Installed at:      2026-03-26T08:30:16.692Z

  ✓ /devops-ci-pipeline (29.7KB, 5 files, 4 refs)
  ✓ /devops-deploy (27.7KB, 6 files, 5 refs)
  ✓ /devops-docker-gen (25.2KB, 3 files, 2 refs)
  ✓ /devops-secrets (79.0KB, 5 files, 4 refs)
  ...

  ─────────────────────────────
  Skills:     11
  Files:      47
  References: 36
  Total size: 388.3KB
  Status:     ✓ Healthy

Changelog

v1.3.2

  • Supply chain security: GitHub Actions CI, npm provenance, SECURITY.md
  • SHA-pinned actions, matrix testing (Node 18/20/22)
  • Added .gitignore, package-lock.json

v1.3.1

  • Fix: no more .bak duplicate skills on reinstall
  • CLI: info <skill> command — show details, references, size
  • CLI: update command — one-command update from npm
  • CLI: doctor now shows version, per-skill stats, .bak detection

v1.3.0

  • New /devops-secrets skill (SOPS, Vault, AWS SM, External Secrets Operator)

v1.2.0

  • Audit: before/after remediation examples + supply chain security
  • Deploy: per-provider rollback procedures
  • Docker: multi-platform builds, Kafka/MinIO/worker patterns
  • K8s: NetworkPolicy + PDB + readiness probes
  • Monitor: SLO/SLI framework + burn rate alerting
  • CI: database migration safety gates
  • Terraform: reusable module patterns
  • Log Analyzer: distributed trace correlation
  • Env Sync: analyze mode (9 languages)

v1.1.0

  • OpenTelemetry + Datadog monitoring
  • PHP + Elixir language support
  • ArgoCD + Kustomize + Bitbucket Pipelines

v1.0.0

  • Initial release with 10 skills

Uninstall

npm uninstall -g claude-skills-devops

Requirements

Contributing

PRs welcome. Each skill lives in skills/<name>/SKILL.md with optional references/ dir.

License

MIT