# Send Kubernetes Skills to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "k8-multicluster",
    "name": "Kubernetes Skills",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/rohitg00/k8-multicluster",
    "canonicalUrl": "https://clawhub.ai/rohitg00/k8-multicluster",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/k8-multicluster",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=k8-multicluster",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CONTEXT-SWITCHING.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "k8-multicluster",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T19:38:32.047Z",
      "expiresAt": "2026-05-11T19:38:32.047Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=k8-multicluster",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=k8-multicluster",
        "contentDisposition": "attachment; filename=\"k8-multicluster-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "k8-multicluster"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/k8-multicluster"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/k8-multicluster",
    "downloadUrl": "https://openagent3.xyz/downloads/k8-multicluster",
    "agentUrl": "https://openagent3.xyz/skills/k8-multicluster/agent",
    "manifestUrl": "https://openagent3.xyz/skills/k8-multicluster/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/k8-multicluster/agent.md"
  }
}
```
## Documentation

### Multi-Cluster Kubernetes Management

Cross-cluster operations and context management using kubectl-mcp-server's multi-cluster support.

### List Available Contexts

list_contexts_tool()

### View Current Context

kubeconfig_view()  # Shows sanitized kubeconfig

### Switch Context

CLI: kubectl-mcp-server context <context-name>

### Cross-Cluster Operations

All kubectl-mcp-server tools support the context parameter:

# Get pods from production cluster
get_pods(namespace="default", context="production-cluster")

# Get pods from staging cluster
get_pods(namespace="default", context="staging-cluster")

### Compare Environments

# Compare deployment across clusters
compare_namespaces(
    namespace1="production",
    namespace2="staging",
    resource_type="deployment",
    context="production-cluster"
)

### Parallel Queries

Query multiple clusters simultaneously:

# Production cluster
get_pods(namespace="app", context="prod-us-east")
get_pods(namespace="app", context="prod-eu-west")

# Development cluster
get_pods(namespace="app", context="development")

### Cross-Cluster Health Check

# Check all clusters
for context in ["prod-1", "prod-2", "staging"]:
    get_nodes(context=context)
    get_pods(namespace="kube-system", context=context)

### Cluster API (CAPI) Management

For managing cluster lifecycle:

### List Managed Clusters

capi_clusters_list_tool(namespace="capi-system")

### Get Cluster Details

capi_cluster_get_tool(name="prod-cluster", namespace="capi-system")

### Get Workload Cluster Kubeconfig

capi_cluster_kubeconfig_tool(name="prod-cluster", namespace="capi-system")

### Machine Management

capi_machines_list_tool(namespace="capi-system")
capi_machinedeployments_list_tool(namespace="capi-system")

### Scale Cluster

capi_machinedeployment_scale_tool(
    name="prod-cluster-md-0",
    namespace="capi-system",
    replicas=5
)

See CONTEXT-SWITCHING.md for detailed patterns.

### Multi-Cluster Helm

Deploy charts to specific clusters:

install_helm_chart(
    name="nginx",
    chart="bitnami/nginx",
    namespace="web",
    context="production-cluster"
)

list_helm_releases(
    namespace="web",
    context="staging-cluster"
)

### Flux Across Clusters

flux_kustomizations_list_tool(
    namespace="flux-system",
    context="cluster-1"
)

flux_reconcile_tool(
    kind="kustomization",
    name="apps",
    namespace="flux-system",
    context="cluster-2"
)

### ArgoCD Across Clusters

argocd_apps_list_tool(namespace="argocd", context="management-cluster")

### Secret Synchronization

# Read from source cluster
get_secrets(namespace="app", context="source-cluster")

# Apply to target cluster (via manifest)
apply_manifest(secret_manifest, namespace="app", context="target-cluster")

### Cross-Cluster Service Discovery

With Cilium ClusterMesh or Istio multi-cluster:

cilium_nodes_list_tool(context="cluster-1")
istio_proxy_status_tool(context="cluster-2")

### Best Practices

Naming Convention: Use descriptive context names

prod-us-east-1, staging-eu-west-1



Access Control: Different kubeconfigs per environment

Prod: Read-only for most users
Dev: Full access for developers



Always Specify Context: Avoid accidental cross-cluster operations
# Explicit is better
get_pods(namespace="app", context="production")



Cluster Groups: Organize by purpose

Production: prod-*
Staging: staging-*
Development: dev-*

### Related Skills

k8s-troubleshoot - Debug across clusters
k8s-gitops - GitOps multi-cluster
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: rohitg00
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-04T19:38:32.047Z
- Expires at: 2026-05-11T19:38:32.047Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/k8-multicluster)
- [Send to Agent page](https://openagent3.xyz/skills/k8-multicluster/agent)
- [JSON manifest](https://openagent3.xyz/skills/k8-multicluster/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/k8-multicluster/agent.md)
- [Download page](https://openagent3.xyz/downloads/k8-multicluster)