Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SRE & Engineering Skills

Personal Claude skill pack for day-to-day SRE and engineering work, packaged as a Claude Code plugin. Each skill lives under skills/<name>/ with a SKILL.md and supporting references/ docs.

Skills

Skill Use for
sre-engineer SLIs/SLOs, error budgets, incident response, capacity planning
devops-engineer CI/CD, deployment strategies, platform engineering, IaC
cloud-architect AWS/GCP/Azure architecture, multi-cloud, cost design
kubernetes-specialist K8s workloads, networking, storage, GitOps, troubleshooting
terraform-engineer Terraform modules, state management, provider best practices
monitoring-expert Prometheus/OpenTelemetry, alerting, dashboards, capacity planning
chaos-engineer Chaos experiments, game days, resilience testing
database-optimizer Query tuning, indexing, Postgres/MySQL performance
security-reviewer SAST, secret scanning, infra security review
debugging-wizard Systematic debugging strategies and tooling
cli-developer CLI UX patterns and design across Python/Node/Go
code-reviewer PR review: bugs, security issues, code smells, maintainability
architecture-designer System design, ADRs, tech trade-offs, scalability planning
microservices-architect Service decomposition, boundaries, sagas, event sourcing, CQRS
api-designer REST/GraphQL API design, OpenAPI specs, versioning, pagination
test-master Unit/integration/E2E test strategy, coverage, flaky test triage
secure-code-guardian Secure implementation: auth, input validation, OWASP Top 10
spec-miner Reverse-engineering undocumented/legacy codebases
legacy-modernizer Incremental migration strategies, strangler fig, monolith decomposition

How to use

Option 1: Claude Code plugin marketplace

/plugin marketplace add /Users/faishal/work/personal/skills
/plugin install sre-eng-skills

Once this repo has a Git remote, use the remote URL instead of the local path so it can be added from any machine:

/plugin marketplace add <your-remote-url>

Option 2: npx skills CLI

npx skills add <owner>/<repo>@<skill-name>

e.g. npx skills add <owner>/<repo>@sre-engineer

Option 3: Manual symlink

Drop a symlink into ~/.claude/skills/ so Claude Code picks the skill up directly:

for d in skills/*/; do
  name="$(basename "$d")"
  ln -sf "$(pwd)/$d" "$HOME/.claude/skills/$name"
done

Or symlink a single skill:

ln -sf "$(pwd)/skills/sre-engineer" "$HOME/.claude/skills/sre-engineer"

Once installed, skills are model-invoked — Claude automatically pulls in the relevant skill when your request matches its triggers (e.g. mentioning SLOs, Kubernetes troubleshooting, Terraform modules, etc.). No manual invocation needed.

About

Personal Claude Code skill pack for day-to-day SRE and engineering work - SLOs, incident response, cloud/K8s/Terraform, monitoring, chaos engineering, security, code review, architecture, and testing. Installable as a Claude Code plugin.

Topics

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors