{
  "schemaVersion": "1.0",
  "item": {
    "slug": "k8s-browser",
    "name": "Kubernetes Skills",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/rohitg00/k8s-browser",
    "canonicalUrl": "https://clawhub.ai/rohitg00/k8s-browser",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/k8s-browser",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=k8s-browser",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/k8s-browser"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/k8s-browser",
    "agentPageUrl": "https://openagent3.xyz/skills/k8s-browser/agent",
    "manifestUrl": "https://openagent3.xyz/skills/k8s-browser/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/k8s-browser/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Browser Automation for Kubernetes",
        "body": "Automate Kubernetes web UIs using kubectl-mcp-server's browser tools (26 tools)."
      },
      {
        "title": "Enable Browser Tools",
        "body": "export MCP_BROWSER_ENABLED=true\n\n# Optional: Cloud provider\nexport MCP_BROWSER_PROVIDER=browserbase  # or browseruse\nexport BROWSERBASE_API_KEY=bb_..."
      },
      {
        "title": "Basic Navigation",
        "body": "# Open URL\nbrowser_open(url=\"http://localhost:8001/api/v1/namespaces/kubernetes-dashboard/services/https:kubernetes-dashboard:/proxy/\")\n\n# Open with auth headers\nbrowser_open_with_headers(\n    url=\"https://grafana.example.com\",\n    headers={\"Authorization\": \"Bearer token123\"}\n)\n\n# Navigate\nbrowser_navigate(url=\"https://argocd.example.com/applications\")\n\n# Go back/forward\nbrowser_back()\nbrowser_forward()\n\n# Refresh\nbrowser_refresh()"
      },
      {
        "title": "Screenshots and Content",
        "body": "# Take screenshot\nbrowser_screenshot(path=\"dashboard.png\")\n\n# Full page screenshot\nbrowser_screenshot(path=\"full-page.png\", full_page=True)\n\n# Get page content\nbrowser_content()\n\n# Get page title\nbrowser_title()\n\n# Get current URL\nbrowser_url()"
      },
      {
        "title": "Interactions",
        "body": "# Click element\nbrowser_click(selector=\"button.submit\")\nbrowser_click(selector=\"text=Deploy\")\nbrowser_click(selector=\"#sync-button\")\n\n# Type text\nbrowser_type(selector=\"input[name=search]\", text=\"my-deployment\")\nbrowser_type(selector=\".search-box\", text=\"nginx\")\n\n# Fill form\nbrowser_fill(selector=\"#namespace\", text=\"production\")\n\n# Select dropdown\nbrowser_select(selector=\"select#cluster\", value=\"prod-cluster\")\n\n# Press key\nbrowser_press(key=\"Enter\")\nbrowser_press(key=\"Escape\")"
      },
      {
        "title": "Waiting",
        "body": "# Wait for element\nbrowser_wait_for_selector(selector=\".loading\", state=\"hidden\")\nbrowser_wait_for_selector(selector=\".data-table\", state=\"visible\")\n\n# Wait for navigation\nbrowser_wait_for_navigation()\n\n# Wait for network idle\nbrowser_wait_for_load_state(state=\"networkidle\")"
      },
      {
        "title": "Session Management",
        "body": "# List sessions\nbrowser_session_list()\n\n# Switch session\nbrowser_session_switch(session_id=\"my-session\")\n\n# Close browser\nbrowser_close()"
      },
      {
        "title": "Viewport and Device",
        "body": "# Set viewport size\nbrowser_set_viewport(width=1920, height=1080)\n\n# Emulate device\nbrowser_set_viewport(device=\"iPhone 12\")"
      },
      {
        "title": "Kubernetes Dashboard Workflow",
        "body": "# 1. Start kubectl proxy\n# kubectl proxy &\n\n# 2. Open dashboard\nbrowser_open(url=\"http://localhost:8001/api/v1/namespaces/kubernetes-dashboard/services/https:kubernetes-dashboard:/proxy/\")\n\n# 3. Navigate to workloads\nbrowser_click(selector=\"text=Workloads\")\n\n# 4. Take screenshot\nbrowser_screenshot(path=\"workloads.png\")\n\n# 5. Search for deployment\nbrowser_type(selector=\"input[placeholder*=search]\", text=\"nginx\")\nbrowser_press(key=\"Enter\")"
      },
      {
        "title": "Grafana Dashboard Workflow",
        "body": "# 1. Open Grafana\nbrowser_open_with_headers(\n    url=\"https://grafana.example.com/d/k8s-cluster\",\n    headers={\"Authorization\": \"Bearer admin-token\"}\n)\n\n# 2. Set time range\nbrowser_click(selector=\"button[aria-label='Time picker']\")\nbrowser_click(selector=\"text=Last 1 hour\")\n\n# 3. Screenshot dashboard\nbrowser_screenshot(path=\"grafana-cluster.png\", full_page=True)"
      },
      {
        "title": "ArgoCD UI Workflow",
        "body": "# 1. Open ArgoCD\nbrowser_open(url=\"https://argocd.example.com\")\n\n# 2. Login\nbrowser_fill(selector=\"input[name=username]\", text=\"admin\")\nbrowser_fill(selector=\"input[name=password]\", text=\"password\")\nbrowser_click(selector=\"button[type=submit]\")\n\n# 3. Navigate to app\nbrowser_wait_for_selector(selector=\".applications-list\")\nbrowser_click(selector=\"text=my-application\")\n\n# 4. Sync application\nbrowser_click(selector=\"button.sync-button\")\nbrowser_click(selector=\"text=Synchronize\")"
      },
      {
        "title": "Related Skills",
        "body": "k8s-gitops - ArgoCD CLI tools\nk8s-diagnostics - Cluster analysis"
      }
    ],
    "body": "Browser Automation for Kubernetes\n\nAutomate Kubernetes web UIs using kubectl-mcp-server's browser tools (26 tools).\n\nEnable Browser Tools\nexport MCP_BROWSER_ENABLED=true\n\n# Optional: Cloud provider\nexport MCP_BROWSER_PROVIDER=browserbase  # or browseruse\nexport BROWSERBASE_API_KEY=bb_...\n\nBasic Navigation\n# Open URL\nbrowser_open(url=\"http://localhost:8001/api/v1/namespaces/kubernetes-dashboard/services/https:kubernetes-dashboard:/proxy/\")\n\n# Open with auth headers\nbrowser_open_with_headers(\n    url=\"https://grafana.example.com\",\n    headers={\"Authorization\": \"Bearer token123\"}\n)\n\n# Navigate\nbrowser_navigate(url=\"https://argocd.example.com/applications\")\n\n# Go back/forward\nbrowser_back()\nbrowser_forward()\n\n# Refresh\nbrowser_refresh()\n\nScreenshots and Content\n# Take screenshot\nbrowser_screenshot(path=\"dashboard.png\")\n\n# Full page screenshot\nbrowser_screenshot(path=\"full-page.png\", full_page=True)\n\n# Get page content\nbrowser_content()\n\n# Get page title\nbrowser_title()\n\n# Get current URL\nbrowser_url()\n\nInteractions\n# Click element\nbrowser_click(selector=\"button.submit\")\nbrowser_click(selector=\"text=Deploy\")\nbrowser_click(selector=\"#sync-button\")\n\n# Type text\nbrowser_type(selector=\"input[name=search]\", text=\"my-deployment\")\nbrowser_type(selector=\".search-box\", text=\"nginx\")\n\n# Fill form\nbrowser_fill(selector=\"#namespace\", text=\"production\")\n\n# Select dropdown\nbrowser_select(selector=\"select#cluster\", value=\"prod-cluster\")\n\n# Press key\nbrowser_press(key=\"Enter\")\nbrowser_press(key=\"Escape\")\n\nWaiting\n# Wait for element\nbrowser_wait_for_selector(selector=\".loading\", state=\"hidden\")\nbrowser_wait_for_selector(selector=\".data-table\", state=\"visible\")\n\n# Wait for navigation\nbrowser_wait_for_navigation()\n\n# Wait for network idle\nbrowser_wait_for_load_state(state=\"networkidle\")\n\nSession Management\n# List sessions\nbrowser_session_list()\n\n# Switch session\nbrowser_session_switch(session_id=\"my-session\")\n\n# Close browser\nbrowser_close()\n\nViewport and Device\n# Set viewport size\nbrowser_set_viewport(width=1920, height=1080)\n\n# Emulate device\nbrowser_set_viewport(device=\"iPhone 12\")\n\nKubernetes Dashboard Workflow\n# 1. Start kubectl proxy\n# kubectl proxy &\n\n# 2. Open dashboard\nbrowser_open(url=\"http://localhost:8001/api/v1/namespaces/kubernetes-dashboard/services/https:kubernetes-dashboard:/proxy/\")\n\n# 3. Navigate to workloads\nbrowser_click(selector=\"text=Workloads\")\n\n# 4. Take screenshot\nbrowser_screenshot(path=\"workloads.png\")\n\n# 5. Search for deployment\nbrowser_type(selector=\"input[placeholder*=search]\", text=\"nginx\")\nbrowser_press(key=\"Enter\")\n\nGrafana Dashboard Workflow\n# 1. Open Grafana\nbrowser_open_with_headers(\n    url=\"https://grafana.example.com/d/k8s-cluster\",\n    headers={\"Authorization\": \"Bearer admin-token\"}\n)\n\n# 2. Set time range\nbrowser_click(selector=\"button[aria-label='Time picker']\")\nbrowser_click(selector=\"text=Last 1 hour\")\n\n# 3. Screenshot dashboard\nbrowser_screenshot(path=\"grafana-cluster.png\", full_page=True)\n\nArgoCD UI Workflow\n# 1. Open ArgoCD\nbrowser_open(url=\"https://argocd.example.com\")\n\n# 2. Login\nbrowser_fill(selector=\"input[name=username]\", text=\"admin\")\nbrowser_fill(selector=\"input[name=password]\", text=\"password\")\nbrowser_click(selector=\"button[type=submit]\")\n\n# 3. Navigate to app\nbrowser_wait_for_selector(selector=\".applications-list\")\nbrowser_click(selector=\"text=my-application\")\n\n# 4. Sync application\nbrowser_click(selector=\"button.sync-button\")\nbrowser_click(selector=\"text=Synchronize\")\n\nRelated Skills\nk8s-gitops - ArgoCD CLI tools\nk8s-diagnostics - Cluster analysis"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/rohitg00/k8s-browser",
    "publisherUrl": "https://clawhub.ai/rohitg00/k8s-browser",
    "owner": "rohitg00",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/k8s-browser",
    "downloadUrl": "https://openagent3.xyz/downloads/k8s-browser",
    "agentUrl": "https://openagent3.xyz/skills/k8s-browser/agent",
    "manifestUrl": "https://openagent3.xyz/skills/k8s-browser/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/k8s-browser/agent.md"
  }
}