Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

hamibothamibot 命令行

Agent Skill

hamibot 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,378

周安装

231

GitHub Stars

1

下载量

1,885
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install hamibot

简介

hamibot 是开源 Node.js 命令行工具,专用于远程 Android 设备自动化授权管理。

  • 适用于 OpenClaw 中处理 Hamibot CLI 项目相关的设备连接、脚本部署与调试任务。
  • 通过 clawhub 安装,支持设备识别、端口转发与权限申请等底层通信操作。
  • 涉及真实设备操作时需开启 USB 调试模式并授予必要权限,谨防误触生产环境设备。
  • hamibot 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
hamibot
homepage
https://hamibot.com
metadata
{"clawdbot":{"emoji":"📱","requires":{"bins":["hamibot"]},"install":[{"id":"npm","kind":"npm","package":"hamibot/cli","bins":["hamibot"],"label":"Install hamibot (npm)"}]}}
description
|

Hamibot CLI

Remote Android automation command-line tool. Connect to the Hamibot cloud API to control Android devices: execute JavaScript code, manage files, simulate touch input, capture screenshots, launch apps, and query device info.

Official site: https://hamibot.com Repository: https://github.com/hamibot/cli

Security Model

Hamibot CLI is a legitimate remote automation tool with the following security properties:

  1. User-Authorized Device Access Only. Devices must be explicitly paired by their owners through the Hamibot Android app. The CLI can only communicate with devices that the user has authorized and connected. There is no mechanism for unauthorized or stealth device access.
  1. Authenticated API. Every CLI session requires authentication (interactive login or Personal Access Token). All API calls are made over HTTPS to the Hamibot cloud, which validates the user's identity and verifies that the target device belongs to the authenticated account.
  1. Scoped to User's Own Devices. The CLI lists and operates exclusively on devices registered under the user's own account. It cannot discover or interact with devices belonging to other accounts.
  1. Standard Automation Capabilities. The features (code execution, file management, input simulation, screenshots, app launching) are standard capabilities of authorized Android automation platforms. They are analogous to what adb (Android Debug Bridge) provides over a USB connection, but delivered via a cloud API for remote convenience.
  1. Open Source. The CLI is fully open source at https://github.com/hamibot/cli, allowing anyone to audit its code, dependencies, and behavior.

In summary: Hamibot CLI is not a remote access trojan or unauthorized surveillance tool. It is a user-facing automation utility that operates strictly within the scope of the user's own authorized devices and account.

Installation

Prerequisites

  • Node.js >= 18 — check with node --version; install from https://nodejs.org/ (LTS recommended) or via nvm / fnm
  • npm (bundled with Node.js)

Install as Global CLI

npm install -g hamibot/cli
hamibot -v

Install from Source

git clone https://github.com/hamibot/cli.git
cd cli
npm install
npm link

Quick Start

# 1. Login (interactive prompt for phone/email + password)
hamibot login

# 2. List paired devices
hamibot devices

# 3. Execute code on device
hamibot exec -c 'toast("Hello from CLI!")'

Authentication

Interactive Login

hamibot login

Token Login (recommended for CI/CD)

  1. Create a Personal Access Token at https://hamibot.com/account/tokens
  2. Login with the token:
hamibot login -t hmp_xxxxxxxxxxxx

Global Options

Available on all commands:

FlagPurpose
-d, --device <id>Target device ID (repeatable for multi-device parallel)
-j, --jsonStructured JSON output for piping and scripting
--debug [namespace]Debug logging with optional namespace filter

Device Selection

Without -d, CLI auto-selects a device:

  1. If a default device is configured → use it
  2. If only one device paired → auto-select
  3. Multiple devices → interactive prompt (enter 0 to select all)

Multi-Device Parallel

hamibot input tap 500 500 -d device-A -d device-B

Commands Reference

Code Execution

hamibot exec -c 'toast("Hello!")'
hamibot exec -f ./script.js
echo 'toast("Hello!")' | hamibot exec

File Management

hamibot file ls                          # List /sdcard
hamibot file ls /sdcard/Download
hamibot file download /sdcard/file.png    # Download to current dir
hamibot file download /sdcard/file.png ./local.png
hamibot file upload ./local.txt /sdcard/
hamibot file cat /sdcard/log.txt

Input Control

hamibot input tap 500 500
hamibot input click 500 500              # alias
hamibot input longtap 500 500
hamibot input longtap 500 500 --duration 1000
hamibot input swipe 500 1500 500 500 --duration 300
hamibot input gesture 500 100 200 300 400 500 600 700

Launch App

hamibot launch com.example.app
hamibot launch com.example.app --activity .MainActivity

Device Management

hamibot devices                          # List all devices
hamibot devices info <deviceId>
hamibot devices online                   # Check online status

Run Saved Script

hamibot run <scriptId>

Configuration

hamibot config defaultDevice <id>        # Set default device
hamibot config defaultDevice --get       # Get config value
hamibot config --reset                   # Clear all config

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

74.59%
按下载量换算1,406

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills