Agent skill · AI & Agents

kubesphere-cluster-management

KubeSphere cluster query Skill (read-only). Use when user requests to view cluster list, cluster status, cluster details, or cluster version info. Do not perform any write operations (create, delete, update). Use KubeSphere Console for management operations.

kubespheregithub.com/kubesphereGitHub ↗
claude-codeNOASSERTION
Install
npx skills add kubesphere/kubesphere --skill kubesphere-cluster-management --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 1 KB
Bundled scripts: none
Path: skills/kubesphere-cluster-management/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 17,016
Language: Go
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# KubeSphere Cluster Query > **⚠️ Security**: Read-only only. **Never** use kubectl to create, update, or delete cluster resources. Use KubeSphere console instead. ## When to Use List or get KubeSphere cluster information: list clusters, get details, check status, identify host/member. ## Commands ```bash # List clusters kubectl get cluster # Get cluster details kubectl get cluster <name> -o yaml # Get cluster summary (name, connection type, version, status) kubectl get cluster -o go-template=' {{printf "%-12s %-12s %-12s %-15s %-13s %-12s\n" "NAME" "CONN_TYPE" "KS_VERSION" "K8S_VERSION" "ClusterReady" "KSCORE_READY"}} {{range .items}}{{printf "%-12s %-12s %-12s %-15s" .metadata.name .spec.connection.type .status.kubeSphereVersion .status.kubernetesVersion}}{{range .status.conditions}}{{if eq .type "Ready"}}{{printf "%-13s" .status}}{{end}}{{end}}{{range .status.conditions}}{{if eq .type "KSCoreReady"}}{{printf "%-12s" .status}}{{end}}{{end}}{{"\n"}}{{end}}' ``` ## Out of Scope Cluster installation/upgrade/remove, any write operations. Use KubeSphere console.

What's inside
Steps it walks through
  1. When to Use
  2. Commands
  3. Out of Scope
Ships with 1 file
  • evals/evals.json
Commands it runs
List clusters
kubectl get cluster
Get cluster details
kubectl get cluster <name> -o yaml
Get cluster summary (name, connection type, version, status)
kubectl get cluster -o go-template='
More from kubesphere
All skills →
About this skill
What does the kubesphere-cluster-management skill do?

KubeSphere cluster query Skill (read-only). Use when user requests to view cluster list, cluster status, cluster details, or cluster version info. Do not perform any write operations (create, delete, update). Use KubeSphere Console for management operations.

How do I install it?

Run `npx skills add kubesphere/kubesphere --skill kubesphere-cluster-management --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From kubesphere/kubesphere, a repository with 17,016 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going