{
  "schemaVersion": "1.0",
  "item": {
    "slug": "camoufox",
    "name": "Camoufox",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/GoodGoodJM/camoufox",
    "canonicalUrl": "https://clawhub.ai/GoodGoodJM/camoufox",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/camoufox",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=camoufox",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/options.md",
      "scripts/browse.py",
      "scripts/login_session.py",
      "scripts/setup.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-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/camoufox"
    },
    "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/camoufox",
    "agentPageUrl": "https://openagent3.xyz/skills/camoufox/agent",
    "manifestUrl": "https://openagent3.xyz/skills/camoufox/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/camoufox/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": "Camoufox",
        "body": "Use instead of OpenClaw's built-in browser tool for bot-detection sites."
      },
      {
        "title": "Setup (one-time)",
        "body": "bash scripts/setup.sh"
      },
      {
        "title": "Usage",
        "body": "source ~/.openclaw/workspace/camoufox-env/bin/activate\nxvfb-run -a --server-args=\"-screen 0 1920x1080x24\" python3 your_script.py"
      },
      {
        "title": "Required Settings",
        "body": "from camoufox.sync_api import Camoufox\n\nwith Camoufox(\n    headless=False,      # MUST be False (True gets detected)\n    os='linux',          # MUST match server OS (stack traces leak real OS)\n    humanize=True,\n    persistent_context=True,\n    user_data_dir='~/.openclaw/camoufox-profile'\n) as browser:\n    page = browser.new_page()\n    # Use standard Playwright API from here"
      },
      {
        "title": "Paths",
        "body": "venv: ~/.openclaw/workspace/camoufox-env/\nprofile: ~/.openclaw/camoufox-profile/"
      },
      {
        "title": "CAPTCHA Handling",
        "body": "First visit to protected sites may need manual CAPTCHA:\n\nDISPLAY=:1 python3 scripts/login_session.py https://site.com/login\n\nSolve via VNC, session saves to profile for future automation."
      },
      {
        "title": "Scripts",
        "body": "scripts/setup.sh - Install dependencies\nscripts/browse.py <url> --screenshot out.png - Quick browse\nscripts/login_session.py <url> - VNC manual login"
      }
    ],
    "body": "Camoufox\n\nUse instead of OpenClaw's built-in browser tool for bot-detection sites.\n\nSetup (one-time)\nbash scripts/setup.sh\n\nUsage\nsource ~/.openclaw/workspace/camoufox-env/bin/activate\nxvfb-run -a --server-args=\"-screen 0 1920x1080x24\" python3 your_script.py\n\nRequired Settings\nfrom camoufox.sync_api import Camoufox\n\nwith Camoufox(\n    headless=False,      # MUST be False (True gets detected)\n    os='linux',          # MUST match server OS (stack traces leak real OS)\n    humanize=True,\n    persistent_context=True,\n    user_data_dir='~/.openclaw/camoufox-profile'\n) as browser:\n    page = browser.new_page()\n    # Use standard Playwright API from here\n\nPaths\nvenv: ~/.openclaw/workspace/camoufox-env/\nprofile: ~/.openclaw/camoufox-profile/\nCAPTCHA Handling\n\nFirst visit to protected sites may need manual CAPTCHA:\n\nDISPLAY=:1 python3 scripts/login_session.py https://site.com/login\n\n\nSolve via VNC, session saves to profile for future automation.\n\nScripts\nscripts/setup.sh - Install dependencies\nscripts/browse.py <url> --screenshot out.png - Quick browse\nscripts/login_session.py <url> - VNC manual login"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/GoodGoodJM/camoufox",
    "publisherUrl": "https://clawhub.ai/GoodGoodJM/camoufox",
    "owner": "GoodGoodJM",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/camoufox",
    "downloadUrl": "https://openagent3.xyz/downloads/camoufox",
    "agentUrl": "https://openagent3.xyz/skills/camoufox/agent",
    "manifestUrl": "https://openagent3.xyz/skills/camoufox/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/camoufox/agent.md"
  }
}