Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

circle-chain-skill环链技能

Agent Skill

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

总安装

4,443

周安装

178

GitHub Stars

公开资料未说明

下载量

1,438
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install circle-chain-skill

简介

circle-chain-skill 提供 Circle Chain 区块链开发支持。

  • 包含用户认证、钱包管理和交易处理功能。circle-chain-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 支持 CLI 工具和 JavaScript SDK 两种使用方式。
  • 通过 clawhub 安装,专为 OpenClaw 研究检索设计。
  • 使用前需配置正确的网络环境和私钥管理策略。

SKILL.md

name
circle-chain-js-sdk
description
>-

Circle Chain JavaScript SDK

Package and layout

  • npm: @lidh04/circle-chain-sdk — local dependency: npm i @lidh04/circle-chain-sdk
  • Default export: an object with namespaces user, wallet, block, node, miner, common — e.g. import sdk from '@lidh04/circle-chain-sdk' then const { user, wallet, miner } = sdk. README snippets use bare names like login, createWallet; bind them from the matching namespace (user.login, wallet.createWallet, etc.).
  • Source repo: src/circle-user.js, circle-wallet.js, circle-block.js, circle-node.js, circle-miner.js, circle-common.js; CLI under src/cli/.

Development workflow

  1. Build: npm run build — outputs dist/cjs and dist/mjs (TypeScript + fixup).
  2. Tests: Run npm run build before npm test when suites need fresh dist/. CLI-only: npm run test:cli (builds, then Jest matches dist/cjs/cli).
  3. CLI from a clone: after build, npm run cli -- <args> or node ./dist/mjs/cli/main.js <args>.

CLI (Commander.js)

Published executable name: circle (see package.json "bin"dist/mjs/cli/main.js).

Install globally

npm install -g @lidh04/circle-chain-sdk
circle --help

Using circle

  • -d / --dev — use http://localhost:8888 instead of production (e.g. circle --dev user login-send-code --email you@example.com).
  • Subcommand groups: user, wallet, block, miner. Discover flags with circle <group> --help.
circle --help
circle user --help
circle user login-send-code --email you@example.com
circle wallet query public-balance --address <addr>
circle block header-list --base-height 0
circle miner mine --address <your-miner-address>

Developing this repo

npm run build
npm run cli -- --help
# or: node ./dist/mjs/cli/main.js --help

CLI tests: src/cli/*.test.js; Jest runs compiled tests under dist/cjs/cli/ per jest.config.cjs.

Programmatic usage patterns

Responses typically include status (e.g. 200), message, and data. On failure, surface response.message.

Auth (register / login)

  1. Register then password login: sendRegisterVerifyCoderegisterlogin (email + password).
  2. Login with verify code only: sendVerifyCodelogin (email + verifyCode).

Wallet

  • createWallet() — on success, address in data.

Local mining

  1. miner.canMineBlock() — return early if false.
  2. miner.fetchMyBlockData(address) — from data: blockHeaderHexString, channelId.
  3. miner.mineBlock(blockHeaderHexString, workerCount) — e.g. os.cpus().length - 1; result lines separated by `\

`; first line is mined header hex.

  1. miner.postMyBlock({ address, channelId, blockHeaderHexString: minedBlockHeader }).
  2. Per README: successful block upload rewards 10 cc (100,000 li) to the miner address.

Pay password

  • sendPayVerifyCodesetPayPassword with account: { email }, verifyCode, password.

Transfers

  • sendTo: email, from, address (to), transContent (type, uuid, etc.), payPassword.
  • pay: from, to, value, payPassword.

Contacts

  • addContacts: e.g. email, name, sex, address (location string in README).

Versions

1.1.1

  • README: document global CLI install (npm install -g @lidh04/circle-chain-sdk), using circle with --dev, and developing the repo (npm run cli / node ./dist/mjs/cli/main.js)

1.1.0

  • CLI (Commander.js) for user, wallet, miner, block; entry circle / main.js.
  • CLI split into user-command, wallet-command, miner-command, block-command; user CLI email-only.
  • CLI tests under src/cli, Jest runs dist/cjs/cli; circle-node test import path fix.

1.0.22 — security improvements

1.0.21 — bugfixes

1.0.20 — local block mining

Keep this skill aligned with repo README.md and package.json (bin name, exports).

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

87.28%
按下载量换算1,255

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills