arjunprabhulal

61 mods across 9 repositories, 217 stars between them.

arjunprabhulal

01

arjunprabhulal/devops-skills

Plugin Claude Code

Agent Skills for DevOps: 88 SKILL.md field guides spanning CI/CD to FinOps. Works in Claude Code, Antigravity, and via npx skills.

2 7d ago A tokens not measured original MIT

devops-skills

02

arjunprabhulal/devops-skills

Plugin Claude Code

Agent Skills for DevOps: 88 SKILL.md field guides spanning CI/CD, containers, Kubernetes, infrastructure as code, cloud, GitOps, observability, reliability, security, networking, data, platform engineering, automation, FinOps, and performance.

2 7d ago A tokens not measured original MIT

arjunprabhulal/devops-skills

Instructions file CodexOpenCode

Instructions for arjunprabhulal/devops-skills, covering agents.md, what this repo is, the shape of every skill, rules and before committing.

2 7d ago A 2,168 tokens original MIT

arjunprabhulal/devops-skills

Instructions file

Instructions for arjunprabhulal/devops-skills: Repository conventions for agents live in AGENTS.md. Read it before editing anything here and follow it — it defines the required shape of a skill, the frontmatter keys, and the commit checks.

2 7d ago A 111 tokens original MIT

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Covers testing infrastructure and config before it ships — validate-and-plan checks, policy enforcement, unit and integration tests for IaC modules, ephemeral test environments, and a testing pyramid sized for infrastructure. Use this whenever the user adds tests for Terraform or Kubernetes manifests, asks why a plan…

2 7d ago A 111 tokens original MIT

scheduled-jobs

06

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Covers cron and scheduled work done right — idempotency, preventing overlapping runs, monitoring for missed and failed runs, alerting on silence, and getting time zones and DST transitions correct. Use this whenever the user is writing a cron job or Kubernetes CronJob, asks why a scheduled job ran twice or didn't run…

2 7d ago A 121 tokens original MIT

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Covers writing operational scripts that survive contact with production — idempotency, real error handling and exit codes, structured logging, a dry-run mode, and recognizing when a script has outgrown scripting. Use this whenever the user is writing a bash or Python script that touches production, asks why a script…

2 7d ago A 125 tokens original MIT

toil-reduction

08

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Covers finding and eliminating operational toil — measuring it honestly instead of by gut feel, automating the manual and repetitive, protecting a real automation budget against feature pressure, and telling toil apart from valuable work that just looks repetitive. Use this whenever the user asks what to automate…

2 7d ago A 111 tokens original MIT

workflow-automation

09

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Covers automating multi-step operational workflows — event-driven triggers, orchestrating steps across systems, making every step idempotent and safely retryable, and keeping a human in the loop where judgment or blast radius demands it. Use this whenever the user wires up automation that reacts to an event, chains…

2 7d ago A 116 tokens original MIT

artifact-management

10

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Versions, stores, and promotes build outputs — registries, immutability, build-once-promote-many, retention and garbage collection, and provenance metadata. Use this whenever the user sets up an artifact or container registry, asks how to promote a build between environments without rebuilding, needs a retention or…

2 7d ago A 98 tokens original MIT

build-optimization

11

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Makes builds fast and reproducible through incremental and hermetic builds, remote or shared caching, dependency caching, and parallelism, without trading correctness for speed. Use this whenever the user complains builds are slow, asks about build caching or cache keys, wants to cut cold-build time, is setting up a…

2 7d ago A 101 tokens original MIT

ci-pipelines

12

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Designs continuous integration pipelines that give a fast, honest merge signal — stage ordering, reproducibility, safe caching, and required checks that actually gate merges. Use this whenever the user is writing or debugging a CI workflow (GitHub Actions, GitLab CI, Jenkins), complaining that CI is slow or flaky…

2 7d ago A 117 tokens original MIT

continuous-delivery

13

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Builds the deployment pipeline that takes an artifact from a merged commit to production automatically and safely — promotion gates between environments, deploy-on-merge, and keeping main always releasable. Use this whenever the user is designing a deployment pipeline, asking how to ship changes faster, setting up…

2 7d ago A 104 tokens original MIT

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Chooses and implements the deployment technique — blue-green, canary, rolling, or shadow — that buys the most information before you're fully committed, plus the rollback plan that makes each one safe. Use this whenever the user asks how to deploy with zero downtime, wants a canary or blue-green setup, is worried…

2 7d ago A 111 tokens original MIT

feature-flags

15

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Decouples deploying code from releasing it to users through runtime feature flags — flag types, targeting rules, and the flag-debt cleanup discipline that keeps the flag system from becoming its own liability. Use this whenever the user wants to gate a feature behind a flag, is asking about kill switches, needs to…

2 7d ago A 119 tokens original MIT

pipeline-security

16

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Secures the CI/CD pipeline itself as an attack surface — least-privilege runners, protecting secrets, preventing poisoned-pipeline execution, pinning third-party actions by SHA, and preferring OIDC over long-lived keys. Use this whenever the user configures CI runner permissions, stores secrets for a pipeline, reviews…

2 7d ago A 106 tokens original MIT

release-management

17

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Coordinates what ships and when — semantic versioning, changelogs, release trains vs continuous release, and cutting a multi-service release safely. Use this whenever the user asks how to version a package, write release notes, cut a release, coordinate a release across services, or choose between shipping…

2 7d ago A 89 tokens original MIT

cloud-architecture

18

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Designs systems for the cloud's actual shape — regions and availability zones, managed vs self-run tradeoffs, statelessness, failure-domain isolation, and the cost and lock-in consequences of each choice. Use this whenever the user is choosing a region topology, deciding between a managed service and self-hosting…

2 7d ago A 122 tokens original MIT

cloud-migration

19

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Guides moving workloads to or between clouds using the 6 Rs, a phased cutover with a real rollback path, data sync, and avoiding a lift-and-shift that just relocates old problems. Use this whenever the user is planning a cloud migration, choosing between rehost/replatform/refactor, designing a cutover plan, migrating…

2 7d ago A 120 tokens original MIT

cloud-networking

20

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Covers the virtual network layer of a cloud deployment — VPCs, subnets, route tables, peering and transit, private endpoints, egress control, and hybrid or on-prem connectivity. Use this whenever the user is designing a VPC/VNet layout, planning subnet CIDR ranges, connecting two networks or a cloud to a data center…

2 7d ago A 114 tokens original MIT

multi-cloud

21

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Covers running across cloud providers on purpose — portability vs managed services, the real operational cost of a second provider, avoiding accidental multi-cloud, and where the abstraction is worth it. Use this whenever the user is considering a second provider, evaluating a portability layer like Kubernetes across…

2 7d ago A 100 tokens original MIT

serverless

22

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Covers functions and managed compute where the platform enforces statelessness and bills per request — cold starts, event-driven design, concurrency limits, and when serverless does not fit. Use this whenever the user is writing a Lambda/Cloud Function/Azure Function, designing an event-driven pipeline, debugging…

2 7d ago A 115 tokens original MIT

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Runs a structured audit against the standard pillars — reliability, security, cost, performance, operational excellence, sustainability — producing prioritized, actionable findings, not a checklist tick. Use this whenever the user asks for an architecture review, a well-architected assessment, a pre-launch readiness…

2 7d ago A 115 tokens original MIT

container-registry

24

arjunprabhulal/devops-skills

Skill Claude CodeCodex

Stores and distributes container images safely — tagging strategy, immutability, retention and garbage collection, access control, signing, and replication or pull-through caching. Use this whenever the user asks about registry setup, mutable versus immutable tags, cleaning up old images, who can push or pull, image…

2 7d ago A 96 tokens original MIT