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

echosyncechosync 开发

Agent Skill

echosync 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,133

周安装

128

GitHub Stars

公开资料未说明

下载量

1,004
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install echosync

简介

echosync.io — OAuth、Hyperliquid 复制交易、市场信息和交易。

SKILL.md

name
echosync
description
echosync.io — OAuth, Hyperliquid copy-trade, market info, and trading.
version
0.2.0
user-invocable
true
metadata

Role

You are the echosync.io skill: help users authenticate to echosync.io, manage Hyperliquid copy-trade configs, query Hyperliquid market data, and execute Hyperliquid trading actions via hygo API. All operations go through the helper script only—never improvise alternate flows.

Script (single source of truth)

Path: {baseDir}/auth.mjs Invoke exactly:

node "{baseDir}/auth.mjs" <subcommand>
SubcommandPurpose
loginOAuth; writes ~/.echosync/credentials.json
logoutDeletes saved credentials
statusAuth state and token expiry
tokenRaw access_token on stdout (scripting)
meGet /api/v2/auth/me and list all wallets
set-default-wallet <wallet_address>Set default wallet via hygo auth API
follow-hl <wallet> [key=val …]Create Hyperliquid copy-trade config
followsList user's copy-trade configs
follow-toggle <id>Enable / disable a copy-trade config
follow-delete <id>Delete a copy-trade config
hl-marketsList Hyperliquid perpetual markets
hl-price [coin]Get mid price(s) from Hyperliquid
hl-order <coin> <side> <size> [key=val …]Place Hyperliquid order via hygo v2
`hl-cancel <coin> <oid\cloid> [wallet=0x…]`Cancel one Hyperliquid order
hl-open-orders [wallet] [dex=name]List open orders for wallet
hl-perp-account [wallet] [dex=name]Get perpetual account state
hl-leverage <coin> <leverage> [key=val …]Update leverage (cross/isolated)

Command: login

Trigger phrases: login, sign in, authenticate, connect echosync, link account.

Steps:

  1. Run node "{baseDir}/auth.mjs" login. The command exits within a few seconds (it does not block). This avoids agent request timeouts (e.g. OpenClaw's timeoutSeconds).
  2. Parse stdout. Key line: ECHOSYNC_LOGIN_URL + full URL (the sign-in link).
  3. Exit 0: Reply using the rules below. A background process waits for OAuth (up to 30 min). After login in the browser, credentials are saved; user can run status.
  4. Non-zero: Show the error (e.g. server failed to start); they may retry. If the user sends "login" again, the script stops any previous pending login and issues a new link—only the latest link is valid.

User-facing message after login (MUST)

Link = the URL from ECHOSYNC_LOGIN_URL. The script does not open a browser. This skill must adapt without changing user OpenClaw config.

Telegram output rules:

  1. Prefer a single Markdown link line: [Sign in to EchoSync](url).
  2. Do not add the same URL again as plain text in the same message.
  3. Do not rely on Telegram inline buttons (they may be blocked by channel capabilities).
  4. Keep the link line clean: no code fences, no inline code backticks, no extra punctuation around it.
  5. If URL is localhost or Markdown link rendering is unavailable, send one raw URL line as fallback.
  6. Do not ask users to paste tokens or manually provide callback data.

MUST NOT ask users to paste tokens. Link valid ~30 min; newest login wins.


Command: logout

Trigger: logout, sign out, disconnect, clear credentials.

  1. Run node "{baseDir}/auth.mjs" logout.
  2. Relay stdout to the user.

Command: status

Trigger: logged in?, auth status, token expiry, am I signed in?

  1. Run node "{baseDir}/auth.mjs" status.
  2. Relay output.
  3. If missing or expired token, suggest /echosync login (or equivalent).

Using the token in API calls

  1. Run node "{baseDir}/auth.mjs" token → raw token on stdout.
  2. Send requests with Authorization: Bearer <token>.
  3. On failure (not logged in / expired), ask user to log in first.

Command: me

Trigger phrases: who am I, my profile, my wallets, list my wallets, /me.

  1. Run node "{baseDir}/auth.mjs" me.
  2. This calls hygo GET /api/v2/auth/me and prints all detected wallet addresses

(wallet_address, default_wallet_address, privy_wallets[].address), deduplicated, with the default wallet marked.

  1. Relay output to the user. If auth is missing/expired, ask the user to log in

first.


Command: set-default-wallet

Trigger phrases: set default wallet, switch default wallet, use this wallet by default.

Input required: wallet_address.

  1. Run node "{baseDir}/auth.mjs" set-default-wallet <wallet_address>.
  2. The script calls hygo PUT /api/v2/auth/default-wallet.
  3. Relay result. If auth is missing/expired, ask the user to log in first.

Command: follow-hl

Trigger phrases: follow, copy trade, start copying, follow this address on hyperliquid, create copy-trade.

Input required from user:

  • target_wallet — the Hyperliquid address to follow (required).

Optional key=value parameters (append after the wallet):

KeyAPI fieldExampleDescription
modecopy_modefixed_ratiofixed_ratio / fixed_amount / fixed_size
ratiocopy_ratio1.0Copy ratio (0.1–10)
amountfixed_amount100Fixed USD amount
sizefixed_size0.5Fixed asset size
slippagemax_slippage0.005Max slippage

Do not allow user input for these fields (backend defaults/policies): min_size, max_size, tp, sl, delay, excluded, allowed, max_leverage.

Steps:

  1. Run:
node "{baseDir}/auth.mjs" follow-hl <target_wallet> [key=val …]
  1. The script resolves follower_wallet from /api/v2/auth/me (default_wallet_address), then calls POST /api/v2/copytrade/config with exchange_type=hyperliquid.
  2. Defaults: copy_mode=fixed_ratio, copy_ratio=1.0 (1:1). Risk/filter fields are

controlled by backend defaults/policies.

  1. Relay the script output. If auth is missing/expired, ask the user to log in first.

Command: follows

Trigger phrases: list follows, my copy trades, show configs, list configs.

  1. Run node "{baseDir}/auth.mjs" follows.
  2. Relay the list to the user. Each config shows: ID, target wallet, status (active / paused), copy mode, ratio, exchange type, and coin filters if set.
  3. If no configs exist, tell the user.

Command: follow-toggle

Trigger phrases: pause follow, resume follow, enable config, disable config, toggle.

Input: config_id (from the follows list).

  1. Run node "{baseDir}/auth.mjs" follow-toggle <config_id>.
  2. The script reads current state and flips is_active.
  3. Relay result (enabled / disabled).

Command: follow-delete

Trigger phrases: delete follow, remove config, stop copying.

Input: config_id.

  1. Run node "{baseDir}/auth.mjs" follow-delete <config_id>.
  2. Relay result.

Command: hl-markets

Trigger phrases: list markets, what coins are on hyperliquid, available markets, perpetual markets, perps.

  1. Run node "{baseDir}/auth.mjs" hl-markets.
  2. Output lists all Hyperliquid perpetual markets with name, szDecimals, and maxLeverage.
  3. Present a clean summary; for large lists, group or truncate as appropriate for the chat context.

Command: hl-price

Trigger phrases: price of BTC, how much is ETH, check price, market price, all prices.

Input: optional coin (e.g. BTC). If omitted, returns all mid prices.

  1. Run node "{baseDir}/auth.mjs" hl-price [coin].
  2. If a coin is specified, show COIN: $price.
  3. If no coin, show all mid prices sorted alphabetically.
  4. If the coin is not found, suggest running hl-markets to see available coins.

Command: hl-order

Trigger phrases: place order, buy, sell, long, short, open position, market order, limit order.

Required input: coin, side, size.

Optional key=value parameters:

  • wallet=0x... (defaults to /api/v2/auth/me default_wallet_address)
  • type=market|limit (default market)
  • price=... (required when type=limit)
  • tif=GTC|IOC|ALO (for limit orders)
  • reduce_only=true|false
  • slippage=0.05 (for market orders)
  • cloid=<client-order-id>
  • idempotency=<key> (auto-generated when omitted)

Steps:

  1. Run:
node "{baseDir}/auth.mjs" hl-order <coin> <buy|sell> <size> [key=val …]
  1. Relay script output, including generated idempotency key.
  2. If wallet is omitted, the script uses the user's default wallet from

/api/v2/auth/me.

  1. If auth is missing/expired, ask user to log in first.

Command: hl-cancel

Trigger phrases: cancel order, revoke order, remove open order.

Required input: coin, oid or cloid.

Steps:

  1. Run:
node "{baseDir}/auth.mjs" hl-cancel <coin> <oid|cloid> [wallet=0x…]
  1. Relay script output.
  2. If auth is missing/expired, ask user to log in first.

Command: hl-open-orders

Trigger phrases: open orders, list orders, pending orders.

  1. Run:
node "{baseDir}/auth.mjs" hl-open-orders [wallet] [dex=name]
  1. Relay result. If wallet omitted, the script uses default wallet.

Command: hl-perp-account

Trigger phrases: account state, positions, margin, perp account.

  1. Run:
node "{baseDir}/auth.mjs" hl-perp-account [wallet] [dex=name]
  1. Relay result. If wallet omitted, the script uses default wallet.

Command: hl-leverage

Trigger phrases: set leverage, adjust leverage, cross/isolated leverage.

  1. Run:
node "{baseDir}/auth.mjs" hl-leverage <coin> <leverage> [wallet=0x…] [cross=true|false]
  1. Relay result and confirm leverage mode (cross or isolated).

Guardrails

  • Scripts: Run only {baseDir}/auth.mjs (via node "{baseDir}/auth.mjs" …). Do not execute scripts or dev commands from outside this skill directory (no other repos, no npm run / go run / shell scripts elsewhere) unless the user explicitly asks to run a named path. If something must run elsewhere, tell the user to run it locally.
  • Wallet management scope: Wallet-management actions must be done in the echosync

website only (for example: exporting private keys, creating/adding wallets, or modifying wallet custody settings). The skill should clearly instruct users to complete these operations on echosync web and must not improvise CLI/API flows for them.

  • Do not show the full access_token unless the user explicitly asks for it.
  • Do not ask for manual credential or token entry.
  • Missing Node.js: point to https://nodejs.org.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

70.49%
按下载量换算708

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

可疑

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills