{
  "schemaVersion": "1.0",
  "item": {
    "slug": "steel-browser",
    "name": "Steel Browser",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/EYHN/steel-browser",
    "canonicalUrl": "https://clawhub.ai/EYHN/steel-browser",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/steel-browser",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=steel-browser",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/_connect.py",
      "scripts/click.sh",
      "scripts/click_coords.sh",
      "scripts/eval_js.sh",
      "scripts/get_content.sh"
    ],
    "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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/steel-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/steel-browser",
    "agentPageUrl": "https://openagent3.xyz/skills/steel-browser/agent",
    "manifestUrl": "https://openagent3.xyz/skills/steel-browser/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/steel-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": "Steel Browser Skill",
        "body": "Cloud browser-use via Steel.dev + Playwright Python SDK.\nIdeal for web automation, scraping, form filling, and AI agent browser loops."
      },
      {
        "title": "Prerequisites",
        "body": "pip install steel-sdk playwright\nexport STEEL_API_KEY=your_key_here\n\nGet your API key at https://app.steel.dev → Settings → API Keys (free: 100 browser hours).\n\nSteel API key should be set in OpenClaw config or environment:\n\nopenclaw config set env.STEEL_API_KEY \"your_key\""
      },
      {
        "title": "State Management",
        "body": "start_session.sh saves session ID to ~/.steel_state\nAll scripts auto-load it from there\nOverride anytime with export STEEL_SESSION_ID=<id>\nSessions persist until release_session.sh or timeout"
      },
      {
        "title": "Scripts",
        "body": "ScriptUsageDescriptionstart_session.sh[--proxy] [--captcha] [--timeout MS]Create session; prints SESSION_ID + VIEWER_URLrelease_session.sh[SESSION_ID]Release sessionlist_sessions.sh(none)List active sessionsnavigate.shURL [--wait-until networkidle]Go to URLscreenshot.sh[OUTPUT.png] [--full-page]Take screenshotclick.shSELECTORClick by CSS/text/aria selectorclick_coords.shX Y [--right] [--double]Click at pixel coords (fallback)type.shSELECTOR \"text\"Fill input fieldpress_key.shKEYPress key (e.g. Enter, Control+a)scroll.shAMOUNT|--to-bottom|--to-top|SELECTORScroll pagehover.shSELECTORHover over elementselect.shSELECTOR VALUESelect dropdown optionget_content.sh[--html] [SELECTOR]Extract page text or HTMLeval_js.sh\"js expression\"Execute JavaScript, print resultwait_for.shSELECTOR [TIMEOUT_MS]Wait for element to appearget_url.sh(none)Print current URL and page title"
      },
      {
        "title": "Selector Examples",
        "body": "Steel uses Playwright selectors — much more powerful than pixel coords:\n\n# By CSS\nclick.sh \"#submit-button\"\nclick.sh \".nav-link:first-child\"\n\n# By text content\nclick.sh \"text=Sign in\"\nclick.sh \"button:has-text('Continue')\"\n\n# By aria label\nclick.sh \"[aria-label='Search']\"\nclick.sh \"[placeholder='Email address']\"\n\n# XPath\nclick.sh \"xpath=//button[@type='submit']\""
      },
      {
        "title": "Browser-Use Agent Loop Pattern",
        "body": "SCRIPTS=\"skills/steel-browser/scripts\"\n\n# 1. Start session (add --proxy --captcha for tough sites)\nsource <($SCRIPTS/start_session.sh)\necho \"Session: $SESSION_ID\"\necho \"Watch at: $VIEWER_URL\"\n\n# 2. Navigate\n$SCRIPTS/navigate.sh \"https://example.com\"\n\n# 3. Agent loop\nwhile true; do\n  $SCRIPTS/screenshot.sh /tmp/screen.png\n  \n  # Get page text for LLM context\n  CONTENT=$($SCRIPTS/get_content.sh)\n  \n  # LLM decides action...\n  ACTION=$(echo \"$CONTENT\" | llm_decide /tmp/screen.png)\n  \n  case \"$ACTION_TYPE\" in\n    click)    $SCRIPTS/click.sh \"$SELECTOR\" ;;\n    type)     $SCRIPTS/type.sh \"$SELECTOR\" \"$TEXT\" ;;\n    navigate) $SCRIPTS/navigate.sh \"$URL\" ;;\n    done)     break ;;\n  esac\ndone\n\n# 4. Release\n$SCRIPTS/release_session.sh"
      },
      {
        "title": "vs E2B Desktop",
        "body": "FeatureSteel BrowserE2B DesktopSelectorsPlaywright CSS/text/aria ✅Pixel coords onlyProxy support✅ Residential proxies❌CAPTCHA solving✅ Built-in❌Non-browser tasks❌✅ Desktop apps, terminalSession viewer✅ Live URL✅ VNC stream\n\nUse Steel for web automation. Use E2B Desktop for desktop apps / full OS control."
      }
    ],
    "body": "Steel Browser Skill\n\nCloud browser-use via Steel.dev + Playwright Python SDK. Ideal for web automation, scraping, form filling, and AI agent browser loops.\n\nPrerequisites\npip install steel-sdk playwright\nexport STEEL_API_KEY=your_key_here\n\n\nGet your API key at https://app.steel.dev → Settings → API Keys (free: 100 browser hours).\n\nSteel API key should be set in OpenClaw config or environment:\n\nopenclaw config set env.STEEL_API_KEY \"your_key\"\n\nState Management\nstart_session.sh saves session ID to ~/.steel_state\nAll scripts auto-load it from there\nOverride anytime with export STEEL_SESSION_ID=<id>\nSessions persist until release_session.sh or timeout\nScripts\nScript\tUsage\tDescription\nstart_session.sh\t[--proxy] [--captcha] [--timeout MS]\tCreate session; prints SESSION_ID + VIEWER_URL\nrelease_session.sh\t[SESSION_ID]\tRelease session\nlist_sessions.sh\t(none)\tList active sessions\nnavigate.sh\tURL [--wait-until networkidle]\tGo to URL\nscreenshot.sh\t[OUTPUT.png] [--full-page]\tTake screenshot\nclick.sh\tSELECTOR\tClick by CSS/text/aria selector\nclick_coords.sh\tX Y [--right] [--double]\tClick at pixel coords (fallback)\ntype.sh\tSELECTOR \"text\"\tFill input field\npress_key.sh\tKEY\tPress key (e.g. Enter, Control+a)\nscroll.sh\tAMOUNT|--to-bottom|--to-top|SELECTOR\tScroll page\nhover.sh\tSELECTOR\tHover over element\nselect.sh\tSELECTOR VALUE\tSelect dropdown option\nget_content.sh\t[--html] [SELECTOR]\tExtract page text or HTML\neval_js.sh\t\"js expression\"\tExecute JavaScript, print result\nwait_for.sh\tSELECTOR [TIMEOUT_MS]\tWait for element to appear\nget_url.sh\t(none)\tPrint current URL and page title\nSelector Examples\n\nSteel uses Playwright selectors — much more powerful than pixel coords:\n\n# By CSS\nclick.sh \"#submit-button\"\nclick.sh \".nav-link:first-child\"\n\n# By text content\nclick.sh \"text=Sign in\"\nclick.sh \"button:has-text('Continue')\"\n\n# By aria label\nclick.sh \"[aria-label='Search']\"\nclick.sh \"[placeholder='Email address']\"\n\n# XPath\nclick.sh \"xpath=//button[@type='submit']\"\n\nBrowser-Use Agent Loop Pattern\nSCRIPTS=\"skills/steel-browser/scripts\"\n\n# 1. Start session (add --proxy --captcha for tough sites)\nsource <($SCRIPTS/start_session.sh)\necho \"Session: $SESSION_ID\"\necho \"Watch at: $VIEWER_URL\"\n\n# 2. Navigate\n$SCRIPTS/navigate.sh \"https://example.com\"\n\n# 3. Agent loop\nwhile true; do\n  $SCRIPTS/screenshot.sh /tmp/screen.png\n  \n  # Get page text for LLM context\n  CONTENT=$($SCRIPTS/get_content.sh)\n  \n  # LLM decides action...\n  ACTION=$(echo \"$CONTENT\" | llm_decide /tmp/screen.png)\n  \n  case \"$ACTION_TYPE\" in\n    click)    $SCRIPTS/click.sh \"$SELECTOR\" ;;\n    type)     $SCRIPTS/type.sh \"$SELECTOR\" \"$TEXT\" ;;\n    navigate) $SCRIPTS/navigate.sh \"$URL\" ;;\n    done)     break ;;\n  esac\ndone\n\n# 4. Release\n$SCRIPTS/release_session.sh\n\nvs E2B Desktop\nFeature\tSteel Browser\tE2B Desktop\nSelectors\tPlaywright CSS/text/aria ✅\tPixel coords only\nProxy support\t✅ Residential proxies\t❌\nCAPTCHA solving\t✅ Built-in\t❌\nNon-browser tasks\t❌\t✅ Desktop apps, terminal\nSession viewer\t✅ Live URL\t✅ VNC stream\n\nUse Steel for web automation. Use E2B Desktop for desktop apps / full OS control."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/EYHN/steel-browser",
    "publisherUrl": "https://clawhub.ai/EYHN/steel-browser",
    "owner": "EYHN",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/steel-browser",
    "downloadUrl": "https://openagent3.xyz/downloads/steel-browser",
    "agentUrl": "https://openagent3.xyz/skills/steel-browser/agent",
    "manifestUrl": "https://openagent3.xyz/skills/steel-browser/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/steel-browser/agent.md"
  }
}