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.
| 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 |
/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>
npx skills add <owner>/<repo>@<skill-name>e.g. npx skills add <owner>/<repo>@sre-engineer
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"
doneOr 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.