SkillAgentSearch skills...

kubesphere-cluster-management

KubeSphere cluster query Skill (read-only)

Install / Use

npx skills add kubesphere/kubesphere --skill kubesphere-cluster-management

Installs into whichever agent you are using.

About this skill
📄

SKILL.md

Installable skill definition

Quality Score

82/100

Category

Security

Supported Platforms

Universal

Our assessment of kubesphere-cluster-management

kubesphere-cluster-management scores 82/100 on our quality scale, 509th of 658 Security skills we index.

Its SKILL.md is 1.4 KB long, split into 7 sections with 1 code example: moderately detailed.

With 17,059 GitHub stars, it is one of the more widely adopted skills in the catalogue.

Substance
20/30
Structure
15/20
Description
8/15
Adoption
18/20
Freshness
15/15

Maintenance, license and trust

  • The repository was last updated about 2 months ago, so kubesphere-cluster-management is actively maintained.
  • No license is declared. By default that means all rights are reserved: you can read it, but reusing or redistributing it is not clearly permitted. Ask the author before building on it commercially.
  • Its trust signals score 88/100, with 1 caution from licensing, adoption, age or documentation. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.

kubesphere-cluster-management compared with similar skills

All 4 of these similar skills score higher than kubesphere-cluster-management; compare them before choosing.

SkillScoreStarsUpdatedFormat
kubesphere-cluster-management (this skill)by kubesphere8217.1k2mo agoSKILL.md
algorithmic-artby anthropics100177.9k4d agoSKILL.md
pptxby anthropics100177.9k4d agoSKILL.md
designby nextlevelbuilder100130.2k5d agoSKILL.md
ui-ux-pro-maxby nextlevelbuilder100130.2k5d agoSKILL.md

Frequently asked questions

How do I install kubesphere-cluster-management?
Run npx skills add kubesphere/kubesphere --skill kubesphere-cluster-management. The install tabs above show the steps for each supported agent.
Which AI agents does kubesphere-cluster-management work with?
It is written for Universal, as a SKILL.md file. Other agents that read the same format can often use it too.
Is kubesphere-cluster-management safe to use?
It declares no license and scores 88/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
Is kubesphere-cluster-management still maintained?
The repository was last updated about 2 months ago, so kubesphere-cluster-management is actively maintained.

name: kubesphere-cluster-management description: 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.

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

# 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.

Related Skills

View on GitHub
GitHub Stars17.1k
CategorySecurity
Updated2mo ago
Forks2.8k

Languages

Go

Trust signals

88/100

From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.

1 medium