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

cliany-site客户网站

Agent Skill

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

总安装

3,911

周安装

168

GitHub Stars

1

下载量

1,371
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install cliany-site

简介

cliany-site 利用 Chrome CDP 和 LLM 将网页操作流程自动化为 CLI 命令。

  • 适用于浏览器自动化、页面探索和工作流录制等场景。
  • 通过 clawhub 安装并使用 openclaw skills install cliany-site 命令部署。
  • 涉及网页交互时需注意目标站点的反爬机制。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
cliany-site
description
Use when the user wants to automate web workflows into CLI commands via Chrome CDP and LLM. Supports exploring pages, generating adapters, and replaying actions through the cliany-site tool.
license
Apache-2.0
compatibility
opencode, claude-code, openclaw, codex
homepage
https://github.com/pearjelly/cliany.site
metadata
clawdbot
emoji
🌐
requires
env
["CLIANY_ANTHROPIC_API_KEY"]
primaryEnv
CLIANY_ANTHROPIC_API_KEY
files
["scripts/*"]

cliany-site Skill

Use this skill when the user wants to automate web workflows into callable CLI commands using cliany-site.

cliany-site converts any web workflow into an executable CLI command. It connects to Chrome via CDP, captures page accessibility trees (AXTree), uses an LLM to plan actions, and generates Python/Click command-line adapters.

When to Use

  • User wants to automate a web workflow (form submission, search, navigation, etc.)
  • User wants to turn a web operation into a repeatable CLI command
  • User wants to check if cliany-site environment is ready
  • User wants to manage web sessions or login states
  • User wants to list or run previously generated adapters
  • User mentions "cliany-site", "web automation", "CDP", "browser CLI", or "web CLI"

Prerequisites

Before using cliany-site, verify the environment:

  1. Python 3.11+ with cliany-site installed
  2. Chrome with CDP enabled (auto-managed or manual --remote-debugging-port=9222)
  3. LLM API Key — at least one of:

- CLIANY_ANTHROPIC_API_KEY (recommended) - CLIANY_OPENAI_API_KEY - Legacy ANTHROPIC_API_KEY (still supported)

Run the doctor command to verify all prerequisites:

cliany-site doctor --json

Expected output on success:

{
  "success": true,
  "data": {"cdp": true, "llm": true, "adapters_dir": "/Users/you/.cliany-site/adapters"},
  "error": null
}

Installation

# Clone and install
git clone https://github.com/pearjelly/cliany.site.git
cd cliany.site
pip install -e .

# Verify
cliany-site --version
cliany-site doctor --json

LLM Configuration

Set up via environment variables or .env file:

# Anthropic (recommended)
export CLIANY_LLM_PROVIDER=anthropic
export CLIANY_ANTHROPIC_API_KEY="sk-ant-..."

# OpenAI alternative
export CLIANY_LLM_PROVIDER=openai
export CLIANY_OPENAI_API_KEY="sk-..."

Configuration file locations (priority low to high):

  1. ~/.config/cliany-site/.env
  2. ~/.cliany-site/.env
  3. Project .env
  4. System environment variables

Commands Reference

doctor — Environment Check

cliany-site doctor [--json]

Checks all prerequisites: CDP connection, LLM key, adapter directory structure.

Output fields:

  • cdp (bool): Chrome CDP available
  • llm (bool): LLM API key configured
  • adapters_dir (str): adapter storage path

Always run doctor first before any other operation to ensure the environment is ready.

login — Website Login

cliany-site login <url> [--json]

Opens the specified URL, waits for the user to complete manual login, then saves the session to ~/.cliany-site/sessions/.

When to use: Before exploring workflows that require authentication.

explore — Explore and Generate Workflow

cliany-site explore <url> <workflow_description> [--json]

This is the core command. It:

  1. Connects to Chrome via CDP
  2. Captures the page AXTree
  3. Sends the tree to the LLM with the workflow description
  4. LLM plans and executes actions step by step
  5. Generates a Click CLI adapter at ~/.cliany-site/adapters/<domain>/

Parameters:

  • url: Target web page URL
  • workflow_description: Natural language description of the workflow

Example:

cliany-site explore "https://github.com" "Search for cliany.site repository and view README" --json

After success, a github.com adapter is auto-registered as a subcommand.

list — List Adapters

cliany-site list [--json]

Lists all generated adapters by domain name.

Execute Adapter Commands

cliany-site <domain> <command> [args...] [--json]

Runs a specific command from a generated adapter.

Example:

cliany-site github.com search --query "browser-use" --json

tui — Terminal UI Manager

cliany-site tui

Visual terminal interface for managing adapters, viewing logs, and configuration.

Output Format

All commands output a standard JSON envelope when --json is passed:

{
  "success": true,
  "data": { "..." },
  "error": null
}

On failure:

{
  "success": false,
  "data": null,
  "error": {
    "code": "ERROR_CODE",
    "message": "Error description"
  }
}

Error codes:

CodeMeaning
CDP_UNAVAILABLEChrome not running or port 9222 not open
LLM_KEY_MISSINGNo LLM API key configured
COMMAND_NOT_FOUNDUnknown command or adapter not found
EXPLORE_FAILEDWorkflow exploration failed

Exit codes:

  • 0: success
  • 1: failure (details in JSON error field)

Typical Workflow

Follow this sequence when automating a new website:

Step 1: Verify Environment

cliany-site doctor --json

If cdp is false, Chrome will be auto-started. If llm is false, configure API keys first.

Step 2: Login (if needed)

cliany-site login "https://target-site.com" --json

Wait for the user to complete manual login in the browser.

Step 3: Explore Workflow

cliany-site explore "https://target-site.com" "describe the workflow here" --json

The LLM analyzes the page and generates adapter commands.

Step 4: Use Generated Commands

cliany-site list --json
cliany-site target-site.com <generated-command> [args] --json

Step 5: Re-explore if Needed

Run explore again on the same domain to add more commands. Existing adapters are merged incrementally — existing commands are preserved.

Automation Script Example

#!/bin/bash
set -e

# Check environment
result=$(cliany-site doctor --json)
if ! echo "$result" | python3 -c "import sys,json; d=json.loads(sys.stdin.read()); exit(0 if d['success'] else 1)"; then
  echo "Environment not ready"
  exit 1
fi

# Explore workflow
cliany-site explore "https://example.com" "submit the contact form" --json

# Execute generated command
cliany-site example.com submit --name "Test" --email "test@test.com" --json

Architecture Notes

  • Adapter storage: ~/.cliany-site/adapters/<domain>/ (commands.py + metadata.json)
  • Session storage: ~/.cliany-site/sessions/
  • AXTree-based selectors: Fuzzy element matching survives minor UI changes
  • Incremental merging: Re-exploring the same domain adds new commands without breaking existing ones
  • Atomic commands: Reusable operations (login, search) extracted and shared across adapters

Security & Privacy

  • cliany-site connects to a local Chrome instance via CDP on localhost:9222
  • LLM API calls send page AXTree (accessibility structure, no visual content) to the configured provider
  • Session cookies are stored locally under ~/.cliany-site/sessions/
  • Generated adapters contain only Click CLI code and metadata — no credentials are embedded
  • No data is sent to external endpoints other than the configured LLM API

External Endpoints

EndpointPurposeData Sent
Configured LLM API (Anthropic/OpenAI)Workflow analysis and action planningPage AXTree structure, workflow description
localhost:9222Chrome CDP connectionCDP protocol commands

Trust Statement

By using this skill, page accessibility tree data is sent to your configured LLM provider (Anthropic or OpenAI) for workflow analysis. Only install and use if you trust your LLM provider with the structural content of pages you browse.

Model Invocation Note

This skill is designed for autonomous invocation by AI agents. When installed, the agent may automatically call cliany-site commands (doctor, login, explore, list) based on user intent without explicit per-command confirmation. This is standard behavior for agent skills. To disable autonomous invocation, remove the skill from the agent's skill directory.

Troubleshooting

IssueSolution
CDP_UNAVAILABLERun cliany-site doctor to auto-start Chrome, or manually start with --remote-debugging-port=9222
LLM_KEY_MISSINGSet CLIANY_ANTHROPIC_API_KEY or CLIANY_OPENAI_API_KEY
Explore produces no commandsProvide more specific workflow description; ensure the page has loaded fully
Adapter command failsPage structure may have changed; re-run explore to regenerate
Login session expiredRe-run cliany-site login <url>

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

88.1%
按下载量换算1,208

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills