Token导航 LogoToken导航TokenDH.com
运维操作浏览器clawhub未标认证来源可访问clear审计提醒

multiloginxmultiloginx 自动化

Agent Skill

multiloginx 用于处理浏览器自动化、网页检查和页面信息提取,适合在 OpenClaw 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

20,952

周安装

873

GitHub Stars

公开资料未说明

下载量

6,984
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:multiloginx(multiloginx 自动化)
来源仓库:https://github.com/multilogincom/multiloginx
安装命令:
openclaw skills install multiloginx
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install multiloginx

简介

管理 Multilogin X 浏览器配置文件实现自动化操作。

  • 可用于账号隔离、反检测等需要多身份并行的任务。multiloginx 属于运维类 Skill,可作为该场景下的辅助能力补充。
  • 支持启动临时配置、列出活跃实例及状态检查功能。
  • 依赖本地安装的 Multilogin 客户端,需保持进程运行。
  • 频繁创建销毁实例可能被目标网站风控识别,慎用高频操作。

SKILL.md

name
multilogin
description
Use when you need to manage Multilogin X browser profiles — launch quick disposable profiles, list/start/stop saved profiles, or check launcher status using the xcli CLI tool.
metadata
{ "openclaw": { "emoji": "🌐", "requires": { "bins": ["xcli", "mlx-launcher"] } } }

Multilogin X

Manage anti-detect browser profiles via the xcli CLI.

CRITICAL: Launcher must run FIRST

The mlx-launcher process MUST be running before ANY xcli command (except login) will work. If you skip this, you WILL get "connection refused" or "launcher not active" errors.


Installation

Version resolution

Both binaries have a /latest endpoint that returns the current version string:

https://ml000x-dev-dists.s3.eu-north-1.amazonaws.com/cli-mlx/latest       → e.g. "0.0.72"
https://ml000x-dev-dists.s3.eu-north-1.amazonaws.com/launcher-mlx/latest   → e.g. "1.75.0"

Download URLs follow the pattern:

https://ml000x-dev-dists.s3.eu-north-1.amazonaws.com/cli-mlx/{VERSION}/xcli_{PLATFORM}
https://ml000x-dev-dists.s3.eu-north-1.amazonaws.com/launcher-mlx/{VERSION}/launcher-{PLATFORM}

Platform suffixes:

Platformxclimlx-launcher
Linux x64xcli_linux_amd64launcher-linux_amd64.bin
macOS x64xcli_darwin_amd64launcher-darwin_amd64.bin
macOS ARMxcli_darwin_arm64launcher-darwin_arm64.bin
Windowsxcli_windows_amd64.exelauncher-windows_amd64.exe

Install on Linux (VPS / Docker)

# Resolve latest versions
CLI_VER=$(curl -sL "https://ml000x-dev-dists.s3.eu-north-1.amazonaws.com/cli-mlx/latest")
LAUNCHER_VER=$(curl -sL "https://ml000x-dev-dists.s3.eu-north-1.amazonaws.com/launcher-mlx/latest")
echo "Installing xcli $CLI_VER, launcher $LAUNCHER_VER"

# Download binaries
curl -L -o /usr/local/bin/xcli "https://ml000x-dev-dists.s3.eu-north-1.amazonaws.com/cli-mlx/${CLI_VER}/xcli_linux_amd64"
curl -L -o /usr/local/bin/mlx-launcher "https://ml000x-dev-dists.s3.eu-north-1.amazonaws.com/launcher-mlx/${LAUNCHER_VER}/launcher-linux_amd64.bin"

# Make executable
chmod +x /usr/local/bin/xcli /usr/local/bin/mlx-launcher

# Verify
xcli --help
mlx-launcher --help

Install on macOS

# Detect architecture
ARCH=$(uname -m)
if [ "$ARCH" = "arm64" ]; then
  SUFFIX="darwin_arm64"
else
  SUFFIX="darwin_amd64"
fi

# Resolve latest versions
CLI_VER=$(curl -sL "https://ml000x-dev-dists.s3.eu-north-1.amazonaws.com/cli-mlx/latest")
LAUNCHER_VER=$(curl -sL "https://ml000x-dev-dists.s3.eu-north-1.amazonaws.com/launcher-mlx/latest")
echo "Installing xcli $CLI_VER, launcher $LAUNCHER_VER"

# Download binaries
curl -L -o /usr/local/bin/xcli "https://ml000x-dev-dists.s3.eu-north-1.amazonaws.com/cli-mlx/${CLI_VER}/xcli_${SUFFIX}"
curl -L -o /usr/local/bin/mlx-launcher "https://ml000x-dev-dists.s3.eu-north-1.amazonaws.com/launcher-mlx/${LAUNCHER_VER}/launcher-${SUFFIX}.bin"

# Make executable
chmod +x /usr/local/bin/xcli /usr/local/bin/mlx-launcher

# macOS may quarantine downloaded binaries — remove the flag
xattr -d com.apple.quarantine /usr/local/bin/xcli 2>/dev/null
xattr -d com.apple.quarantine /usr/local/bin/mlx-launcher 2>/dev/null

# Verify
xcli --help
mlx-launcher --help

Install on Windows

# Resolve latest versions
$CLI_VER = (Invoke-WebRequest -Uri "https://ml000x-dev-dists.s3.eu-north-1.amazonaws.com/cli-mlx/latest").Content.Trim()
$LAUNCHER_VER = (Invoke-WebRequest -Uri "https://ml000x-dev-dists.s3.eu-north-1.amazonaws.com/launcher-mlx/latest").Content.Trim()
Write-Host "Installing xcli $CLI_VER, launcher $LAUNCHER_VER"

# Download binaries
Invoke-WebRequest -Uri "https://ml000x-dev-dists.s3.eu-north-1.amazonaws.com/cli-mlx/${CLI_VER}/xcli_windows_amd64.exe" -OutFile "$env:USERPROFILE\xcli.exe"
Invoke-WebRequest -Uri "https://ml000x-dev-dists.s3.eu-north-1.amazonaws.com/launcher-mlx/${LAUNCHER_VER}/launcher-windows_amd64.exe" -OutFile "$env:USERPROFILE\mlx-launcher.exe"

# Add to PATH (current session)
$env:PATH += ";$env:USERPROFILE"

Environment Detection

Detect your environment before running commands:

# Am I in Docker?
if [ -f /.dockerenv ]; then
  echo "DOCKER"
else
  echo "BARE METAL"
fi

Both environments use the same xcli and mlx-launcher binaries — they must be in PATH.


Headless (VPS / Docker) — Step by Step

This is the primary mode. No display, no GUI. Profiles run headless.

Step 1: Start the launcher

mlx-launcher -port 45000 &
sleep 5

Verify:

xcli launcher-info

You MUST see a version number before proceeding. If error — wait and retry.

Step 2: Login

xcli login --username 'USER@EMAIL' --password 'PASSWORD'

Ask the user for credentials if not provided. Tokens last ~24h, stored in ~/.config/xcli/.

Step 3: Launch quick profiles

Quick profiles are disposable — deleted automatically when stopped.

xcli profile-quick --browser-type mimic --os-type linux --automation puppeteer --headless

Launch 2 quick profiles:

xcli profile-quick --browser-type mimic --os-type linux --automation puppeteer --headless
xcli profile-quick --browser-type mimic --os-type linux --automation puppeteer --headless

Each returns a profile ID and a port for Puppeteer/Selenium automation.

Headless constraints

  • Always use --headless — no display server available.
  • Always use --os-type linux — must match the host OS.
  • Always use --browser-type mimicstealthfox is NOT available on Linux.
  • Do NOT use profile-create for disposable sessions — use profile-quick.
  • Do NOT run xcli commands in background with & (only mlx-launcher).

Desktop (macOS / Windows / Linux with GUI)

When running on a machine with a display (e.g. a Mac node), profiles can open visible browser windows.

Step 1: Start the launcher

mlx-launcher -port 45000 &
sleep 5
xcli launcher-info

Step 2: Login

xcli login --username 'USER@EMAIL' --password 'PASSWORD'

Step 3: Launch profiles (with GUI)

On macOS:

xcli profile-quick --browser-type mimic --os-type macos --automation puppeteer
xcli profile-quick --browser-type stealthfox --os-type macos --automation puppeteer

On Windows:

xcli profile-quick --browser-type mimic --os-type windows --automation puppeteer
xcli profile-quick --browser-type stealthfox --os-type windows --automation puppeteer

Note: No --headless flag — browser windows will be visible.

Desktop constraints

  • --os-type must match the actual OS (macos, windows, or linux).
  • Both mimic (Chromium) and stealthfox (Firefox) are available on macOS and Windows.
  • On Linux with GUI, only mimic is available.

GUI via OpenClaw Node (VPS + Mac hybrid)

The most elegant setup: VPS runs 24/7 headless, Mac node handles GUI tasks on demand.

Architecture

VPS (OpenClaw main agent, 24/7, headless)
  ↕ paired via gateway
Mac (OpenClaw Node, paired device)
  → runs Multilogin with visible browser windows
  → VPS delegates GUI tasks here

When to use the Node

Use the VPS for:

  • Headless quick profiles (automation, scraping, batch tasks)
  • All non-GUI work

Delegate to the Mac node when:

  • User wants to SEE the browser (visual inspection, manual interaction)
  • A task requires a real display (CAPTCHAs, visual verification)
  • stealthfox is needed (not available on Linux)
  • Debugging a profile visually

How to delegate to the Node

From the VPS main agent, use sessions_spawn to send a task to the Mac node:

{
  "tool": "sessions_spawn",
  "agentId": "node-mac",
  "message": "Start the Multilogin launcher and launch 2 quick profiles with GUI. Use: mlx-launcher -port 45000 & sleep 5 && xcli login --username 'USER' --password 'PASS' && xcli profile-quick --browser-type mimic --os-type macos --automation puppeteer && xcli profile-quick --browser-type stealthfox --os-type macos --automation puppeteer"
}

The node will:

  1. Start the launcher locally on the Mac
  2. Login with the provided credentials
  3. Launch profiles with visible browser windows
  4. Report back the profile IDs and ports

Setup requirements for the Node

The Mac node needs:

  • xcli and mlx-launcher binaries for macOS in PATH (see Install on macOS above)
  • Network access to Multilogin API (signin.multilogin.com)
  • OpenClaw Node running and paired to the VPS gateway

Full CLI Command Reference

General

CommandDescription
loginLog in to your account
launcher-infoGet info about the running launcher (app or agent)
helpHelp for all commands

Folders

CommandDescription
create-folderCreate a folder with a given name
list-folderView all available folders
remove-folderRemove a folder by ID (or list of IDs)
update-folderUpdate folder details using its ID

Workspaces

CommandDescription
list-workspaceDisplay available workspaces
switch-workspaceSwitch to a different workspace

Proxies

CommandDescription
proxy-countriesList available countries in proxy service
proxy-regionsGet regions by country code
proxy-citiesGet cities by region code
proxy-getGet a proxy URL based on parameters

Profiles

CommandDescription
profile-quickLaunch a disposable quick profile (v4 API)
profile-createCreate a new persistent profile
profile-templateCreate a new template for a browser profile
profile-startStart a profile by ID
profile-stopStop a profile by ID
profile-listList profiles in a given folder
profile-statStatistics about currently launched profiles
profile-statusStatus of given profile(s)
profile-updateUpdate an existing profile
profile-cloneDuplicate a profile
profile-moveMove profile to a different folder
profile-removeRemove profiles by IDs
profile-restoreRestore a deleted profile from trash
profile-exportExport a profile into a file
profile-export-statusShow profile export status
profile-importImport a profile from a file
profile-import-statusShow profile import status
profile-cookie-importImport cookies to a profile
profile-cookie-exportExport cookies from a profile

Scripts

CommandDescription
script-listList available scripts in Script Runner folder
script-startRun a script in a Multilogin profile
script-stopStop a running script
cookie-robotStart Cookie Robot on profile(s)

Objects (extensions, files, etc.)

CommandDescription
object-typesList object types
object-listList objects
object-metaFetch object metadata
object-createCreate an object (requires running agent)
object-downloadDownload object to local storage
object-deleteDelete an object
object-restoreRestore object from trash
object-statsDisplay object usage statistics
object-convertConvert storage type (local ↔ cloud)
enable-objectEnable object for profiles
disable-objectDisable object for profiles
object-extension-createCreate an extension object from a URL

Tags

CommandDescription
create-tagCreate one or more tags
tag-listList tags (with optional search filter)
tag-removeRemove tags by IDs
tag-assignAssign tags to a profile
tag-unassignUnassign tags from a profile

2FA

CommandDescription
enable-2faEnable two-factor authentication
view-backup-codesView backup codes
disable-2fa-for-userDisable 2FA for user
disable-2fa-for-workspaceDisable 2FA for workspace
enable-2fa-for-workspaceEnable 2FA for workspace

Billing

CommandDescription
referral-codeGet referral code
multipointsGet multipoints balance

Quick reference flags

FlagValuesNotes
--browser-typemimic, stealthfoxLinux: only mimic
--os-typelinux, macos, windows, androidMust match host
--automationpuppeteer, selenium
--headless(no value)Required on headless servers
--proxy-string"host:port:user:pass"Optional proxy
--proxy-typehttp, https, socks5Required if using proxy
--core-versione.g. 144.4Specific browser version

Troubleshooting

ProblemCauseFix
connection refused / launcher not activeLauncher not runningmlx-launcher -port 45000 & then sleep 5
browser version not foundWrong os-type/browser-type comboUse --browser-type mimic --os-type linux on Linux
context deadline exceededLauncher downloading cores (first run)Wait 30-60s, retry. Cores are cached after first download
token contains invalid segmentsNot logged inxcli login
UNAUTHORIZED_REQUESTToken expired (>24h)xcli login again
Need GUI but on VPSNo display serverDelegate to Mac node via sessions_spawn
macOS: "unidentified developer"Gatekeeper quarantineRun xattr -d com.apple.quarantine <binary>

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

80.32%
按下载量换算5,610

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills