Token导航 LogoToken导航TokenDH.com
开发操作浏览器clawhub未标认证来源可访问clear审计通过

moreloginmorelogin 自动化

Agent Skill

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

总安装

13,803

周安装

553

GitHub Stars

公开资料未说明

下载量

4,468
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install morelogin

简介

用于管理 MoreLogin 反检测浏览器配置文件。

  • 支持生命周期管理和云手机操作控制。morelogin 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 通过 clawhub 安装,需结合原始 README 核验 Local API 连接。
  • 涉及浏览器自动化时应确认反检测技术有效性。
  • 建议在使用前评估是否支持多配置文件切换。

SKILL.md

name
morelogin
description
Manage MoreLogin anti-detect browser profiles and cloud phones through the official Local API (http://127.0.0.1:40000), including browser profile lifecycle, fingerprint refresh, cloud phone power/file/app operations, and proxy/group/tag management. Use when the user mentions MoreLogin, envId/uniqueId, cloud phone, CDP, ADB, or multi-account automation.
metadata
openclaw
emoji
🌐
requires
bins
["node", "adb"]
install
kind
npm
dir
./
label
Install MoreLogin CLI dependencies
kind
brew
formula
android-platform-tools
bins
["adb"]
label
Install ADB (Android Debug Bridge)

MoreLogin Local API Skill

Manage browser profiles and cloud phones via MoreLogin official Local API, supporting full lifecycle control, automation connections (CDP/ADB), and resource management (proxy/group/tag/app/file).

Official Sources

  • Local API documentation: https://guide.morelogin.com/api-reference/local-api
  • Base URL: http://127.0.0.1:40000
  • Requirements: MoreLogin Desktop v2.15.0+, logged-in local account

Trigger Scenarios

Prefer this Skill when:

  • User mentions MoreLogin, envId, uniqueId, cloudphone
  • Creating/starting/closing browser profiles
  • Refreshing fingerprints, clearing cache, or deleting profiles
  • Cloud phone power on/off, ADB, app management, file upload
  • API management of proxy, groups, tags

Pre-flight Checklist

Before any operation:

  1. Confirm MoreLogin desktop app is running and logged in.
  2. Confirm API is reachable: http://127.0.0.1:40000.
  3. Confirm requests originate from localhost (Local API does not support remote access).
  4. For cloud phone command execution, confirm ADB is available (adb installed).

Execution Principles

  • Treat local-api.yaml + API-CONTRACT.md as the canonical parameter source before constructing payloads.
  • Do not infer field names from memory; verify required keys/types first (especially id vs ids, object vs array bodies).
  • Use POST by default (except tag query GET /api/envtag/all).
  • Uniform request header: Content-Type: application/json.
  • Check code first: 0 means success, non-zero use msg for error handling.
  • Prefer envId for resource lookup; fall back to uniqueId when missing (browser profiles).
  • For batch endpoints (/batch), always pass arrays and record changed objects.

API Capability Mapping

Browser Profile

EndpointPurpose
POST /api/env/create/quickQuick create profile
POST /api/env/create/advancedAdvanced create (full fingerprint params)
POST /api/env/fingerprint/refreshRefresh device fingerprint
POST /api/env/startStart profile and return debug info
POST /api/env/closeClose running profile
POST /api/env/statusGet run status and debug info
POST /api/env/pagePaginated profile list
POST /api/env/detailGet single profile detail
POST /api/env/removeLocalCacheClear local cache (cookies/localStorage etc.)
POST /api/env/removeToRecycleBin/batchBatch delete to recycle bin

Cloud Phone

EndpointPurpose
POST /api/cloudphone/createCreate cloud phone
POST /api/cloudphone/powerOnPower on
POST /api/cloudphone/powerOffPower off
POST /api/cloudphone/pagePaginated list
POST /api/cloudphone/infoGet detail (including ADB info)
POST /api/cloudphone/edit/batchBatch edit config
POST /api/cloudphone/delete/batchBatch delete
POST /api/cloudphone/newMachineOne-click new device
POST /api/cloudphone/updateAdbEnable/disable ADB

Cloud Phone File & App

EndpointPurpose
POST /api/cloudphone/uploadFileUpload file to cloud phone
POST /api/cloudphone/uploadUrlQuery upload status
POST /api/cloudphone/setKeyBoxSet Keybox
POST /api/cloudphone/app/installInstall app
POST /api/cloudphone/app/pageQuery app market list
POST /api/cloudphone/app/installedListQuery installed apps
POST /api/cloudphone/app/startStart app
POST /api/cloudphone/app/restartRestart app
POST /api/cloudphone/app/stopStop app
POST /api/cloudphone/app/uninstallUninstall app

Proxy / Group / Tag

EndpointPurpose
POST /api/proxyInfo/pageQuery proxy list
POST /api/proxyInfo/addAdd proxy
POST /api/proxyInfo/updateUpdate proxy
POST /api/proxyInfo/deleteDelete proxy
POST /api/envgroup/pageQuery groups
POST /api/envgroup/createCreate group
POST /api/envgroup/editEdit group
POST /api/envgroup/deleteDelete group
GET /api/envtag/allGet all tags
POST /api/envtag/createCreate tag
POST /api/envtag/editEdit tag
POST /api/envtag/deleteDelete tag

Standard Workflows

Workflow A: Browser Profile Automation

  1. Get envId from create/quick or page.
  2. Call start to launch the profile.
  3. Call status to verify run state and debugPort.
  4. Use CDP (Puppeteer/Playwright) for automation.
  5. Call close when done.

Workflow B: Cloud Phone Automation

  1. Call page or create to obtain cloud phone id.
  2. Call powerOn to start.
  3. Call info to get ADB connection params.
  4. Call updateAdb when needed to enable ADB.
  5. Run supported cloud phone management endpoints only (no direct command execution).
  6. Call powerOff when done.

Quick Examples (Official API)

# 1) Quick create browser profile
curl -X POST "http://127.0.0.1:40000/api/env/create/quick" \
  -H "Content-Type: application/json" \
  -d '{"browserTypeId":1,"operatorSystemId":1,"quantity":1}'

# 2) Start profile
curl -X POST "http://127.0.0.1:40000/api/env/start" \
  -H "Content-Type: application/json" \
  -d '{"envId":"<envId>"}'

# 3) Cloud phone power on
curl -X POST "http://127.0.0.1:40000/api/cloudphone/powerOn" \
  -H "Content-Type: application/json" \
  -d '{"id":"<cloudPhoneId>"}'

# 4) Query cloud phone detail (including ADB info)
curl -X POST "http://127.0.0.1:40000/api/cloudphone/info" \
  -H "Content-Type: application/json" \
  -d '{"id":"<cloudPhoneId>"}'

CLI Usage (This Project)

Prefer project-wrapped commands; fall back to curl when needed:

Entry equivalence note: openclaw morelogin ... and node bin/morelogin.js ... are fully equivalent (same arguments, same behavior, same exit code). Use either one based on your runtime environment.

# Browser profile
openclaw morelogin browser list
openclaw morelogin browser start --env-id <envId>
openclaw morelogin browser status --env-id <envId>
openclaw morelogin browser close --env-id <envId>

# Cloud phone
openclaw morelogin cloudphone list
openclaw morelogin cloudphone start --id <cloudPhoneId>
openclaw morelogin cloudphone info --id <cloudPhoneId>

## Response & Error Handling

Parse responses with the following structure:

{ "code": 0, "msg": null, "data": {}, "requestId": "..." }


Handling rules:

- `code == 0`: Proceed, extract `data`.
- `code != 0`: Output `msg`, mark failed step, suggest next fix.
- For `start/powerOn` operations, call `status/info` again before subsequent steps to confirm.

## Security & Limits

- Local API listens on localhost only; no remote access.
- Can be called only when MoreLogin account is logged in.
- Do not expose account, proxy passwords, ADB keys, or other sensitive data in logs or code.
- Double-check target ID lists before batch delete, cache clear, or app uninstall.

## Security Notice

This skill no longer provides local ADB/SSH connection methods (`adb-connect`, `adb-disconnect`, `adb-devices`).

Command execution safeguards:

- Restricted to local automation context (localhost workflows and local API).
- Remote cloud phone `exec` is disabled by default and must be explicitly enabled.
- `exec` command content is validated against a safe allowlist and blocks shell metacharacters.
- Generic `api` passthrough is endpoint-allowlisted by default.

## When Not to Use This Skill

- MoreLogin is not installed, not running, or not logged in.
- Requirements are for regular browser automation (no MoreLogin environment isolation).
- Requirements depend on remote access to Local API over the network.

## Related Files

- `bin/morelogin.js`
- `lib/api.js`
- `local-api.yaml`
- `API-CONTRACT.md`
- `README-OFFICIAL-API.md`

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

79.31%
按下载量换算3,544

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills