โ† All skills
Tencent SkillHub ยท Developer Tools

Kubernetes Skills

Browser automation for Kubernetes dashboards and web UIs. Use when interacting with Kubernetes Dashboard, Grafana, ArgoCD UI, or other web interfaces. Requires MCP_BROWSER_ENABLED=true.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Browser automation for Kubernetes dashboards and web UIs. Use when interacting with Kubernetes Dashboard, Grafana, ArgoCD UI, or other web interfaces. Requires MCP_BROWSER_ENABLED=true.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

Browser Automation for Kubernetes

Automate Kubernetes web UIs using kubectl-mcp-server's browser tools (26 tools).

Enable Browser Tools

export MCP_BROWSER_ENABLED=true # Optional: Cloud provider export MCP_BROWSER_PROVIDER=browserbase # or browseruse export BROWSERBASE_API_KEY=bb_...

Basic Navigation

# Open URL browser_open(url="http://localhost:8001/api/v1/namespaces/kubernetes-dashboard/services/https:kubernetes-dashboard:/proxy/") # Open with auth headers browser_open_with_headers( url="https://grafana.example.com", headers={"Authorization": "Bearer token123"} ) # Navigate browser_navigate(url="https://argocd.example.com/applications") # Go back/forward browser_back() browser_forward() # Refresh browser_refresh()

Screenshots and Content

# Take screenshot browser_screenshot(path="dashboard.png") # Full page screenshot browser_screenshot(path="full-page.png", full_page=True) # Get page content browser_content() # Get page title browser_title() # Get current URL browser_url()

Interactions

# Click element browser_click(selector="button.submit") browser_click(selector="text=Deploy") browser_click(selector="#sync-button") # Type text browser_type(selector="input[name=search]", text="my-deployment") browser_type(selector=".search-box", text="nginx") # Fill form browser_fill(selector="#namespace", text="production") # Select dropdown browser_select(selector="select#cluster", value="prod-cluster") # Press key browser_press(key="Enter") browser_press(key="Escape")

Waiting

# Wait for element browser_wait_for_selector(selector=".loading", state="hidden") browser_wait_for_selector(selector=".data-table", state="visible") # Wait for navigation browser_wait_for_navigation() # Wait for network idle browser_wait_for_load_state(state="networkidle")

Session Management

# List sessions browser_session_list() # Switch session browser_session_switch(session_id="my-session") # Close browser browser_close()

Viewport and Device

# Set viewport size browser_set_viewport(width=1920, height=1080) # Emulate device browser_set_viewport(device="iPhone 12")

Kubernetes Dashboard Workflow

# 1. Start kubectl proxy # kubectl proxy & # 2. Open dashboard browser_open(url="http://localhost:8001/api/v1/namespaces/kubernetes-dashboard/services/https:kubernetes-dashboard:/proxy/") # 3. Navigate to workloads browser_click(selector="text=Workloads") # 4. Take screenshot browser_screenshot(path="workloads.png") # 5. Search for deployment browser_type(selector="input[placeholder*=search]", text="nginx") browser_press(key="Enter")

Grafana Dashboard Workflow

# 1. Open Grafana browser_open_with_headers( url="https://grafana.example.com/d/k8s-cluster", headers={"Authorization": "Bearer admin-token"} ) # 2. Set time range browser_click(selector="button[aria-label='Time picker']") browser_click(selector="text=Last 1 hour") # 3. Screenshot dashboard browser_screenshot(path="grafana-cluster.png", full_page=True)

ArgoCD UI Workflow

# 1. Open ArgoCD browser_open(url="https://argocd.example.com") # 2. Login browser_fill(selector="input[name=username]", text="admin") browser_fill(selector="input[name=password]", text="password") browser_click(selector="button[type=submit]") # 3. Navigate to app browser_wait_for_selector(selector=".applications-list") browser_click(selector="text=my-application") # 4. Sync application browser_click(selector="button.sync-button") browser_click(selector="text=Synchronize")

Related Skills

k8s-gitops - ArgoCD CLI tools k8s-diagnostics - Cluster analysis

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc