kubectl-mcp-server 1.16.0 → 1.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +47 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -63,6 +63,7 @@ pip install kubectl-mcp-server[ui]
|
|
|
63
63
|
- [In-Cluster Deployment](#in-cluster-deployment)
|
|
64
64
|
- [Multi-Cluster Support](#multi-cluster-support)
|
|
65
65
|
- [Architecture](#architecture)
|
|
66
|
+
- [Agent Skills](#agent-skills-24-skills-for-ai-coding-agents)
|
|
66
67
|
- [Development & Testing](#development--testing)
|
|
67
68
|
- [Contributing](#contributing)
|
|
68
69
|
- [Support & Community](#support--community)
|
|
@@ -817,6 +818,52 @@ kubectl_mcp_tool/
|
|
|
817
818
|
└── cli/ # CLI interface
|
|
818
819
|
```
|
|
819
820
|
|
|
821
|
+
## Agent Skills (24 Skills for AI Coding Agents)
|
|
822
|
+
|
|
823
|
+
Extend your AI coding agent with Kubernetes expertise using our [Agent Skills](https://agentskills.io) library. Skills provide specialized knowledge and workflows that agents can load on demand.
|
|
824
|
+
|
|
825
|
+
### Quick Install
|
|
826
|
+
|
|
827
|
+
```bash
|
|
828
|
+
# Copy all skills to Claude
|
|
829
|
+
cp -r kubernetes-skills/claude/* ~/.claude/skills/
|
|
830
|
+
|
|
831
|
+
# Or install specific skills
|
|
832
|
+
cp -r kubernetes-skills/claude/k8s-helm ~/.claude/skills/
|
|
833
|
+
```
|
|
834
|
+
|
|
835
|
+
### Available Skills (24)
|
|
836
|
+
|
|
837
|
+
| Category | Skills |
|
|
838
|
+
|----------|--------|
|
|
839
|
+
| **Core Resources** | k8s-core, k8s-networking, k8s-storage |
|
|
840
|
+
| **Workloads** | k8s-deploy, k8s-operations, k8s-helm |
|
|
841
|
+
| **Observability** | k8s-diagnostics, k8s-troubleshoot, k8s-incident |
|
|
842
|
+
| **Security** | k8s-security, k8s-policy, k8s-certs |
|
|
843
|
+
| **GitOps** | k8s-gitops, k8s-rollouts |
|
|
844
|
+
| **Scaling** | k8s-autoscaling, k8s-cost, k8s-backup |
|
|
845
|
+
| **Multi-Cluster** | k8s-multicluster, k8s-capi, k8s-kubevirt |
|
|
846
|
+
| **Networking** | k8s-service-mesh, k8s-cilium |
|
|
847
|
+
| **Tools** | k8s-browser, k8s-cli |
|
|
848
|
+
|
|
849
|
+
### Convert to Other Agents
|
|
850
|
+
|
|
851
|
+
Use [SkillKit](https://github.com/rohitg00/skillkit) to convert skills to your preferred AI agent format:
|
|
852
|
+
|
|
853
|
+
```bash
|
|
854
|
+
npm install -g skillkit
|
|
855
|
+
|
|
856
|
+
# Convert to Cursor format
|
|
857
|
+
skillkit translate kubernetes-skills/claude --to cursor --output .cursor/rules/
|
|
858
|
+
|
|
859
|
+
# Convert to Codex format
|
|
860
|
+
skillkit translate kubernetes-skills/claude --to codex --output ./
|
|
861
|
+
```
|
|
862
|
+
|
|
863
|
+
**Supported agents:** Claude, Cursor, Codex, Gemini CLI, GitHub Copilot, Goose, Windsurf, Roo, Amp, and more.
|
|
864
|
+
|
|
865
|
+
See [kubernetes-skills/README.md](kubernetes-skills/README.md) for full documentation.
|
|
866
|
+
|
|
820
867
|
## Multi-Cluster Support
|
|
821
868
|
|
|
822
869
|
Seamlessly manage multiple Kubernetes clusters through natural language. **Every tool** supports an optional `context` parameter to target any cluster without switching contexts.
|
package/package.json
CHANGED