Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

awesome-geelark-skill很棒的吉拉克技能

Agent Skill

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

总安装

857

周安装

35

GitHub Stars

公开资料未说明

下载量

274
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install awesome-geelark-skill

简介

用于查找、检索和筛选相关信息,适合在 OpenClaw 中快速定位候选结果。

  • 支持基于关键词、任务场景或来源线索进行信息匹配与过滤。
  • 可通过安装命令部署,建议结合原始 README 核验具体用法。
  • 安装前需确认权限范围、维护状态及是否涉及联网或文件操作。
  • awesome-geelark-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
geelark-api
description
Interact with GeeLark Cloud Phone API for managing cloud phones, automation tasks, and social media operations. Use when asked to create cloud phones, manage phones, run automation tasks on TikTok/Instagram/Facebook/YouTube/Reddit, or interact with GeeLark services.

GeeLark Cloud Phone API Skill

⚠️ EXPERIMENTAL PROJECT: This skill is designed for AI agents. It contains safety mechanisms but should NOT be used directly in production without testing.

Configuration: assets/config.json (auto-loads token and base URL)


First Time Setup

  1. Initialize configuration:
   python3 scripts/init_config.py
  1. This creates assets/config.json with your credentials (protected by .gitignore).
  2. All scripts automatically load credentials from this file.
  3. Install Dependencies
    pip install uiautomator2 --break-system-packages

Quick Start

Basic Usage

List Cloud Phones

from scripts.geelark_boot_helper import list_cloud_phones

# Token auto-loads from config
phones = list_cloud_phones()
for phone in phones:
    print(f"{phone['serialName']} - {phone['id']}")

Boot Cloud Phone and Connect

from scripts.geelark_boot_helper import boot_and_connect

# Token auto-loads from config
adb_info = boot_and_connect("phone_id")
if adb_info:
    print(f"ADB: {adb_info['ip']}:{adb_info['port']}, PWD: {adb_info['pwd']}")

Core Workflow

Step 1: Pre-check (Balance & Cloud Phone Confirmation) ⭐⭐⭐

Before operating cloud phones:

  1. Check account balance - Confirm sufficient balance
  2. Query available cloud phones - Confirm which phone to operate
from scripts.geelark_client import GeeLarkClient
from scripts.geelark_boot_helper import list_cloud_phones

# Initialize client (auto-loads config)
client = GeeLarkClient(task_name="my_task", phone_id="batch")

# Check balance
wallet = client.wallet()
balance = wallet['data']['balance']
gift_money = wallet['data'].get('giftMoney', 0)

if balance <= 0 and gift_money <= 0:
    print("❌ Insufficient balance! Please recharge.")
    exit(1)

# List phones
phones = list_cloud_phones()
for phone in phones:
    print(f"  {phone['serialName']} (ID: {phone['id']})")

Step 2: Create Cloud Phone

# Create single phone
response = client.call("/open/v1/phone/addNew", {
    "mobileType": "Android 13",
    "data": [{"profileName": "MyPhone"}]
})

# Create multiple phones (requires Pro plan)
response = client.call("/open/v1/phone/addNew", {
    "mobileType": "Android 13",
    "data": [
        {"profileName": "Phone1"},
        {"profileName": "Phone2"}
    ]
})

Step 3: Boot and Enable ADB

from scripts.geelark_boot_helper import boot_and_connect

# This function handles:
# - Balance check
# - Cloud phone status check
# - Start cloud phone (if stopped)
# - Enable ADB (if disabled)
# - Return ADB connection info
# Token auto-loads from config

adb_info = boot_and_connect("phone_id")

Step 4: Install Application ⭐⭐⭐

Critical: Must use appVersionId, NOT appName

# Step 1: Find app and get appVersionId
response = client.call("/open/v1/app/installable/list", {
    "envId": "phone_id",
    "name": "TikTok",
    "page": 1,
    "pageSize": 20
})

app_version_id = response['data']['items'][0]['appVersionInfoList'][0]['id']

# Step 2: Install using appVersionId
response = client.call("/open/v1/app/install", {
    "envId": "phone_id",
    "appVersionId": app_version_id
})

Step 5: Manage Session with PhoneManager

Recommended: Use PhoneManager for session tracking and auto-close.

from scripts.phone_manager import PhoneManager

# Method 1: Context manager (recommended)
with PhoneManager(timeout_minutes=5) as manager:
    manager.start_monitor()
    
    # Connect using phone_id (required)
    d = manager.connect_device("phone_id_123", ip, port, pwd, name="Android15")
    
    # Perform operations
    d(text="Submit").click()
    manager.record_activity("phone_id_123")

# Automatically stops all phones and saves logs on exit

# Method 2: Manual control
manager = PhoneManager(timeout_minutes=5)
manager.start_monitor()
# ... operations ...
manager.stop_all()
manager.client.save_log()

Safety Mechanisms

MechanismDescription
Balance CheckAuto-checks balance before starting cloud phones
Energy SavingAuto enables energySavingMode=1 to reduce costs
Double ConfirmDelete requires ID + 'YES' confirmation
Auto-ClosePhoneManager auto-closes idle devices
Endpoint WhitelistOnly documented endpoints can be called
LoggingAll operations logged to logs/cloudphone/

Cloudphone Operations

Dependencies

pip install uiautomator2 --break-system-packages

Agent Workflow ⭐⭐⭐

Since this skill is designed for AI agents that need to recognize the current screen state, the recommended workflow is:

  1. Identify UI Structure: Use uiautomator2 to dump the current page hierarchy (dump_hierarchy()), enabling the agent to understand the screen layout.

- Parse the XML hierarchy to locate target elements by text, resource-id, content-desc, or class - Extract element coordinates (bounds) for verification or fallback operations - If dump_hierarchy() fails or returns empty, proceed to Step 3 immediately

  1. Prioritize uiautomator2 Operations: If elements can be identified and interacted with via the UI hierarchy, use uiautomator2 for clicks, inputs, and swipes.

- Click: d(text="Button").click() or d(resourceId="com.example:id/btn").click() - Input: d(text="Username").set_text("hello") - Swipe: d.swipe(x1, y1, x2, y2) or d.swipe_ext("up") - Wait: d(text="Expected Text").wait(timeout=10) before interaction - Always verify the element is visible and enabled before interaction

  1. Verify & Retry: After each operation, execute dump_hierarchy() again to confirm the previous action succeeded.

- Check if the expected UI state changed (e.g., new screen appeared, text updated, dialog dismissed) - If verification fails, retry the operation up to 3 times with brief delays (2-3 seconds) - If all retries fail, log the error and proceed to Step 4

  1. Fallback to ADB Screenshots: If elements cannot be recognized or operated via uiautomator2, use ADB screenshots to visually confirm the state and perform coordinate-based operations.

- Capture screenshot: d.screenshot("/tmp/screen.png") or via ADB screencap - Use computer vision or LLM to analyze the screenshot and identify target coordinates - Click coordinates: d.click(x, y) or subprocess.run(['adb', '-s', 'device', 'shell', 'input', 'tap', x, y]) - Swipe coordinates: subprocess.run(['adb', '-s', 'device', 'shell', 'input', 'swipe', x1, y1, x2, y2]) - Note: Coordinate-based operations are less reliable; always prefer uiautomator2 when possible

Basic Operations

import uiautomator2 as u2
import subprocess

# Connect
d = u2.connect(f"{adb_info['ip']}:{adb_info['port']}")

# Authenticate (MUST DO IMMEDIATELY)
subprocess.run(['adb', '-s', f"{adb_info['ip']}:{adb_info['port']}",
                'shell', 'glogin', adb_info['pwd']], capture_output=True)

# Get UI hierarchy (Step 1: Identify)
xml = d.dump_hierarchy()

# Find and click element (Step 2: Prioritize uiautomator2)
d(text="Submit").click()

# Input text
d(text="Username").set_text("hello world")

# Screenshot (Step 3: Fallback)
d.screenshot("/tmp/screen.png")

# Or using ADB
subprocess.run(['adb', '-s', f"{adb_info['ip']}:{adb_info['port']}",
                'shell', 'screencap', '-p', '/sdcard/screen.png'])
subprocess.run(['adb', '-s', f"{adb_info['ip']}:{adb_info['port']}",
                'pull', '/sdcard/screen.png', '/tmp/screen.png'])

See: references/cloudphone_operations.md for complete guide.


RPA Tasks

GeeLark provides built-in RPA tasks for 9 platforms:

  • TikTok (login, follow, like, comment, edit, delete)
  • Instagram (login, publish reels, warmup)
  • Facebook (login, publish, auto-comment, active account)
  • YouTube (publish short, publish video, active account)
  • Reddit (publish image/video, warmup)
  • Threads (publish image/video)
  • Pinterest (publish image/video)
  • X/Twitter (publish)
  • Google (login, app download)

See: references/api_reference.md for complete endpoint list and parameters


Reference Documentation

DocumentDescriptionWhen to Read
references/api_reference.mdComplete API endpoint listNeed to look up endpoints/parameters
references/error_codes.mdAll error codes and solutionsAPI call fails
references/best_practices.mdSafety and performance tipsPlanning operations
references/cloudphone_operations.mdADB/uiautomator2 guideWorking with device UI
references/auto_close.mdAuto-close mechanismManaging idle devices

Common Error Codes

CodeDescriptionAction
0Success
41001Balance not enoughRecharge account
42001Cloud phone does not existCheck phone ID
42002Cloud phone is not runningStart phone first

See: references/api_reference.md for complete list.


🤖 AI Agent Execution Rules

Critical Directives:

  1. Pre-flight Check: Always verify account balance (wallet()) before initiating any cloud phone operations.
  2. Safety Enforcement: Direct deletion is blocked. You must use scripts/delete_helper.py for double-confirmation.
  3. Identifiers: Use phone_id (UUID) for all API calls, not serialName.
  4. RPA Parameter Quirks:

- YouTube: video parameter is a string. - Others (IG/FB/Reddit/etc.): video/images parameters are arrays. - Instagram: Field is Image (capital I), not images. - Facebook: Login field is Email, not account.

  1. Lifecycle Management: You must stop a running phone before deleting it (otherwise error 43009).
  2. Auto-Configuration: Credentials load automatically from assets/config.json. Do not pass token manually.
  3. Logging: Always save operation logs to logs/cloudphone/ upon task completion.

Official Documentation: https://github.com/GeeLark/geelark-openapi

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.38%
按下载量换算270

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install awesome-geelark-skill 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills