首页龙虾技能列表 › Kubernetes Skills — 技能工具

Kubernetes Skills — 技能工具

v1.0.0

[自动翻译] Browser automation for Kubernetes dashboards and web UIs. Use when interacting with Kubernetes Dashboard, Grafana, ArgoCD UI, or other web interfaces....

0· 2,500·4 当前·4 累计
by @rohitg00·MIT-0
下载技能包
License
MIT-0
最后更新
2026/4/9
安全扫描
VirusTotal
可疑
查看报告
OpenClaw
可疑
medium confidence
The skill's instructions match its stated purpose (browser automation for Kubernetes UIs) but the SKILL.md requires environment flags and optional external provider keys that are not declared in the registry metadata, and it enables collection (screenshots, page content) and use of credentials without clearly describing where data may be sent — this mismatch and the unknown origin increase risk.
评估建议
This skill’s behavior (opening arbitrary dashboard URLs, attaching auth headers, taking screenshots, and retrieving page content) is consistent with a browser automation tool, but the SKILL.md references environment variables and external provider API keys that are not declared in the registry metadata and the package has no known source/homepage. Before installing, verify the author/source and ask for: an explicit list of required env vars, where captured screenshots/page content are stored or ...
详细分析 ▾
用途与能力
The skill claims to be a browser automation helper for Kubernetes dashboards, which aligns with the instructions. However the description and SKILL.md say MCP_BROWSER_ENABLED must be set and reference optional provider credentials (MCP_BROWSER_PROVIDER, BROWSERBASE_API_KEY), but the registry metadata lists no required environment variables. That mismatch (declared 'none' vs. instructions requiring env flags/keys) is incoherent and unexplained. Also the skill has no source/homepage, reducing transparency.
指令范围
SKILL.md contains explicit runtime commands for opening arbitrary URLs, attaching Authorization headers, taking screenshots, and retrieving page content. Those are within the stated purpose, but they allow collection and export of potentially sensitive cluster/dashboard data and credentials (the examples even show filling login forms and using bearer tokens). The instructions do not constrain network destinations or explain whether captured screenshots/content remain local or are sent to an external provider, which is a scope and data-exfiltration risk.
安装机制
This is an instruction-only skill with no install spec and no code files — minimal disk footprint. That lowers risk compared to arbitrary downloads. However SKILL.md references external browser provider services (browserbase/browseruse) without an install or network-policy description, so it's unclear how those services are contacted or whether they will receive captured data.
凭证需求
The SKILL.md asks users to export MCP_BROWSER_ENABLED and optionally MCP_BROWSER_PROVIDER and BROWSERBASE_API_KEY, but the registry lists no required env vars or primary credential. The skill also shows usage of Authorization headers and credentials in examples without declaring or justifying where such secrets should come from or how they are protected. Requesting or using external provider API keys and arbitrary auth headers is disproportionate without clear justification or constraints.
持久化与权限
always is false and there is no install step that modifies agent/system configuration. The skill does not request elevated or permanent presence. Autonomous invocation is allowed (platform default) — combine this with the other concerns when deciding whether to enable auto-invoke.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/1/26

- Initial release of k8s-browser skill for automating Kubernetes dashboards and web UIs. - Provides 26 browser automation tools for navigating, interacting, and capturing screenshots of Kubernetes Dashboard, Grafana, ArgoCD UI, and similar interfaces. - Requires enabling browser features with MCP_BROWSER_ENABLED=true. - Includes example workflows for Kubernetes Dashboard, Grafana, and ArgoCD UI automation. - Supports session management, device emulation, and advanced selectors for clicks and form fills.

● 可疑

安装命令 点击复制

官方npx clawhub@latest install k8s-browser
镜像加速npx clawhub@latest install k8s-browser --registry https://cn.clawhub-mirror.com

技能文档

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

数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务