Use when troubleshooting, implementing, reviewing, or auditing platform infrastructure as a system — where Kubernetes, GitOps, CI/CD, and security concerns intersect. Provides structured diagnosis with blast radius, validation steps, and rollback plan for: Kubernetes, Flux CD, Argo CD, Terraform, GitHub Actions (composite actions, OIDC, SHA pinning), AWS, Azure, GKE, Linkerd, KEDA, Karpenter, supply chain security (Cosign, SBOM, SLSA), Falco, Chaos Engineering, DORA metrics, Datadog/Dynatrace/LLM observability, SOC 2, and PR review.
$npx -y skills add nitinjain999/platform-skills --skill platform-skillsInstalls into the current project.
Run `npx skills use "https://github.com/nitinjain999/platform-skills" --skill "nitinjain999/platform-skills"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.
Use the skills in "https://github.com/nitinjain999/platform-skills" that are relevant to the current task. Run `npx skills add "https://github.com/nitinjain999/platform-skills"` and select the relevant skills, then follow their instructions.
| 1 | # Platform Skills |
| 2 | |
| 3 | > A production-grade field handbook for platform, DevOps, SRE, and cloud engineers covering Kubernetes, Flux CD, Terraform, GitHub Actions, AWS, OPA/Rego, KEDA, Karpenter, supply chain security, Falco, observability, and more. Use it on GitHub, as a local reference, or with Claude, Codex, Cursor, and Copilot for interactive guidance with blast radius, validation steps, and rollback plans built in. |
| 4 | |
| 5 | [](LICENSE) |
| 6 | [](CHANGELOG.md) |
| 7 | [](references/) |
| 8 | [](commands/) |
| 9 | [](examples/) |
| 10 | [](EDITOR_INTEGRATIONS.md) |
| 11 | [](https://github.com/nitinjain999/platform-skills/stargazers) |
| 12 | [](https://tessl.io/registry/nitinjain999/platform-skills) |
| 13 | [](tests/validate-skill.sh) |
| 14 | |
| 15 | ## Works With |
| 16 | |
| 17 | | Tool | What you get | |
| 18 | |---|---| |
| 19 | | **Claude Code** | 40 slash commands (`/platform-skills:preflight`, `/platform-skills:kubernetes`, `/platform-skills:secrets`, and more), interactive guidance, automatic activation on relevant files | |
| 20 | | **Codex** | Skill invocation with `$platform-skills`, loaded on demand in any Codex session | |
| 21 | | **Cursor** | Project rules for Chat and Agent — platform review and generation in every file context | |
| 22 | | **GitHub Copilot plugin** | Interactive slash commands in Copilot Chat — install once per user via `copilot plugin install` | |
| 23 | | **GitHub Copilot (team)** | Chat instructions committed to your repo — available to your whole team without individual installs | |
| 24 | | **GitHub (no AI tool)** | Browse `references/` and `examples/` directly — a standalone field handbook | |
| 25 | |
| 26 | --- |
| 27 | |
| 28 | If this handbook saves you time, [give it a star](https://github.com/nitinjain999/platform-skills/stargazers) — it helps others find it. |
| 29 | Found a gap or a better pattern? [Contributions are welcome](CONTRIBUTING.md) — open an issue, improve a reference guide, or add an example. |
| 30 | |
| 31 | --- |
| 32 | |
| 33 | ## Why Platform Skills |
| 34 | |
| 35 | Platform teams keep rediscovering the same hard lessons: unclear ownership, unsafe IAM, weak Kubernetes defaults, drifting GitOps overlays, CI checks that run too late, and rollback plans that only appear after an incident. Platform Skills turns those lessons into reusable guidance for the tools engineers already use. |
| 36 | |
| 37 | Use it when you need a second brain for production platform work: |
| 38 | |
| 39 | - Review a Terraform, Helm, Kubernetes, Flux, GitHub Actions, or AWS change before it merges |
| 40 | - Generate platform assets with security, observability, validation, and rollback already considered |
| 41 | - Debug incidents with evidence-first troubleshooting instead of guesswork |
| 42 | - Give every developer the same platform engineering baseline in Claude, Codex, Cursor, and Copilot |
| 43 | |
| 44 | ## Install In 60 Seconds |
| 45 | |
| 46 | Clone once, then install the integration your team uses: |
| 47 | |
| 48 | ```bash |
| 49 | git clone https://github.com/nitinjain999/platform-skills.git |
| 50 | cd platform-skills |
| 51 | ``` |
| 52 | |
| 53 | | Tool | Best for | Quick install | |
| 54 | |---|---|---| |
| 55 | | Claude Code | Interactive plugin workflows and slash commands | `claude plugin marketplace add https://github.com/nitinjain999/platform-skills && claude plugin install platform-skills` | |
| 56 | | GitHub Copilot plugin | Copilot Chat — interactive slash commands | `copilot plugin marketplace add nitinjain999/platform-skills && copilot plugin install platform-skills@platform-skills` | |
| 57 | | Codex | Local skill invocation with `$platform-skills` | `./install.sh --codex` | |
| 58 | | Cursor | Project rules for Chat and Agent | `./install.sh --cursor --target ../your-project` | |
| 59 | | GitHub Copilot (team) | Team-wide chat instructions committed to the repo | `./install.sh --copilot --target ../your-project` | |
| 60 | | Everything | Local all-agent setup | `./install.sh --all --target ../your-project` | |
| 61 | |
| 62 | Need manual setup, global editor rules, or troubleshooting? See [INSTALLATION.md](INSTALLATION.md). |
| 63 | |
| 64 | ## Try It On Your Repo |
| 65 | |
| 66 | See [BEFORE_AFTER.md](BEFORE_AFTER.md) for side-by-side before/after examples across Kubernetes, Terraform, Flux CD, GitHub Actions, OPA/Rego, and PR triage. More copy-paste workflows in [PROMPTS.md](PROMPTS.md). |
| 67 | |
| 68 | ```text |
| 69 | Use $platform-skills to review this Terraform change for IAM scope, replacement risk, validation, and rollback. |
| 70 | ``` |
| 71 | |
| 72 | ```text |
| 73 | Review this Kubernetes Deployment for production readiness: securityContext, resources, probes, HPA, PDB, and NetworkPolicy. |
| 74 | ``` |
| 75 | |
| 76 | ```text |
| 77 | My Flux Kustomization is stuck NotReady. Walk me from evidence to fix to rollback. |
| 78 | ``` |
| 79 | |
| 80 | ```text |
| 81 | Generate a production-ready GitHub |