多账号启动器

v1.0.0

通过 HTTP API 控制多账号矩阵管理工具,实现浏览器账号的启动、关闭和信息查询,支持按名称和索引操作。

0· 82·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for wociaozhongyunonghaole/multi-account-launcher.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "多账号启动器" (wociaozhongyunonghaole/multi-account-launcher) from ClawHub.
Skill page: https://clawhub.ai/wociaozhongyunonghaole/multi-account-launcher
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install multi-account-launcher

ClawHub CLI

Package manager switcher

npx clawhub@latest install multi-account-launcher
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the implementation: the Python script sends JSON POST requests to a local HTTP API (default http://localhost:1008) to list/start/stop accounts. No unrelated credentials, binaries, or external services are requested.
Instruction Scope
Runtime instructions correctly tell the agent to run the Python script and read last_result.txt (the script writes that file). Minor inconsistency: SKILL.md and config.yaml imply a configurable api_url, but matrix_manager.py does not read config.yaml or any environment variables — it uses hardcoded defaults unless the script itself is edited. Also be aware last_result.txt will contain the operation result and may include account names or API responses.
Install Mechanism
This is an instruction-only skill with an included Python script. No install spec or remote downloads are used. The only external requirement is the widely used 'requests' Python package, which the README tells users to pip install.
Credentials
No environment variables, credentials, or config paths are requested. The script communicates only with localhost by default, which is proportionate to its purpose.
Persistence & Privilege
The skill does not request permanent 'always' inclusion and does not modify other skills or system settings. It writes a local last_result.txt in the skill directory (expected behavior) but otherwise has limited persistence.
Assessment
This skill appears to do what it claims: control a locally-running multi-account matrix tool via the local HTTP API. Before installing: (1) Confirm you actually run the referenced local tool and its local server (http://localhost:1008) — otherwise requests will fail. (2) Inspect the included matrix_manager.py (it’s small and readable); note it writes last_result.txt into the skill directory which may contain account names or API responses. (3) Be aware that config.yaml is provided in the package but the script does not read it — changing that file won’t change behavior unless you modify the script. (4) Do not change api_url to an external host unless you trust that host (the script will happily POST to whatever URL you edit it to use). (5) Run this in an environment where writing the result file and calling localhost services is acceptable. If you want stronger assurance, run the script manually first and review the API responses it records.

Like a lobster shell, security has layers — review code before you run it.

latestvk9733hw2st3ppgwcxvefy8w92s84a49c
82downloads
0stars
1versions
Updated 3w ago
v1.0.0
MIT-0

多账号启动器

多账号矩阵管理工具的技能,通过 HTTP API 控制账号的启动、关闭和信息查询。


执行流程(AI 必读)

Windows 控制台会显示乱码,这是正常的。 执行后必须读文件获取正确结果。

步骤

  1. 执行 Python 命令(替换 <技能目录> 为实际路径):

    python <技能目录>/matrix_manager.py <命令> [参数]
    
  2. 读取结果文件

    <技能目录>/last_result.txt
    
    • 此文件由 matrix_manager.py 脚本创建
    • UTF-8 编码,包含正确的中文内容
  3. 将结果返回给用户

不要根据控制台输出判断结果。


命令列表

命令说明完整 Python 调用
list列出所有账号python matrix_manager.py list
start <关键词>按名称启动账号python matrix_manager.py start 小红书
start-index <索引>按索引启动账号python matrix_manager.py start-index 1
stop <关键词>按名称关闭账号python matrix_manager.py stop 小红书
stop-index <索引>按索引关闭账号python matrix_manager.py stop-index 1

匹配规则startstop 命令先精准匹配账号名,失败则模糊匹配。


文件说明

文件说明
matrix_manager.py主脚本,执行命令并输出结果
config.yaml配置文件(API 地址、超时时间)
last_result.txt执行结果输出文件,由 matrix_manager.py 创建

前置要求

1. Python 环境

需要 Python 3.8+,检测方法:

python --version

如未安装,访问 https://www.python.org/downloads/ 下载安装,勾选「Add Python to PATH」

安装后需安装 requests 库:

pip install requests

2. 矩阵工具

必须安装「多账号矩阵管理工具」(官网:https://zmt.scys6688.com/)。

开启本地 HTTP 服务:软件设置 → 本地服务器 → 勾选「启动本地服务器」,确认端口为 1008。


故障排查

问题原因解决
「python 不是内部或外部命令」未安装 Python 或未添加 PATH重装并勾选「Add Python to PATH」
「No module named 'requests'」未安装 requestspip install requests
「无法连接到多账号矩阵管理工具」软件未启动或本地服务未开启打开软件,开启本地服务器(端口 1008)
返回「无api」编码问题本脚本使用 UTF-8 编码,无需手动处理

索引说明

  • API 返回的下标:从 0 开始
  • 操作使用的索引:从 1 开始

例如:API 下标 "0" 对应操作索引 "1"。


配置

config.yaml 默认内容:

api_url: http://localhost:1008
timeout: 10

api_url 仅用于连接本地工具,请勿修改为外部地址。

Comments

Loading comments...