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

clash-of-coins-agentic硬币冲突 Agent

Agent Skill

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

总安装

5,574

周安装

237

GitHub Stars

公开资料未说明

下载量

1,953
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install clash-of-coins-agentic

简介

用于发现和调用统一的 Clash of Coins 网关服务,支持销售与商店功能。

  • 适用于需要实时活动协议和统一入口的场景,如游戏道具交易或促销查询。
  • 通过关键词触发,自动定位候选结果并返回结构化数据。
  • 安装前需确认权限范围、维护状态及是否涉及联网或文件操作。
  • clash-of-coins-agentic 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
clashofcoins-universal
description
Use when an agent needs one universal entrypoint to discover and use the unified Clash of Coins gateway (sale + shop), choose the active protocol on the live instance (x402 or mpp), and execute purchase or integration flows without mixing sale and shop contracts.
compatibility
Requires Node.js 18+ to run scripts/discover-gateway.mjs and outbound HTTPS access to the target gateway origin. Works in Agent Skills-compatible clients that can read SKILL.md and run shell commands.

Clash of Coins Universal Skill

Use this as the default skill for any compatible agent (OpenClaw, Claude, Cursor, Codex, and other Agent Skills clients) when the task touches Clash of Coins.

Canonical published path: /skills/clashofcoins-universal/SKILL.md Compatibility aliases: /skills/SKILL.md, /skills/clashofcoins-universal/skill.md, /skills/clashofcoins-universal, /skills/clashofcoins/SKILL.md, /skills/clashofcoins/skill.md, /skills/clashofcoins

Scope

  • Surfaces: sale (/agentic/*) and shop (/shop/*)
  • Protocol model: deployment-dependent (x402, mpp, or mixed)
  • Role: universal router and discovery-first entrypoint

Functional Coverage (Sale + Shop)

  • Root discovery and routing:

- GET / - GET /openapi.json - GET /openapi.full.json - GET /mcp.json - GET /skills/index.json - GET /catalog - check top-level x-bazaar metadata in OpenAPI for minimal Bazaar-compatible payable hints - GET /.well-known/x402 (compatibility metadata for enabled x402 resources; 404 when x402 is disabled) - GET /.well-known/mpp when MPP is enabled

  • Sale checkout coverage:

- offers, optional quote, buy, and purchase-status polling on /agentic/<protocol>/* - request body constraints: saleId, quantity, beneficiary

  • Shop checkout coverage:

- anonymous + recipient-scoped catalog reads on /shop/api/shop/items - offers, optional quote, buy, and purchase-status polling on /shop/<protocol>/* - recipient constraint: exactly one of nickname or address for quote/buy

  • Payment retry coverage:

- x402 paid retry from latest challenge with identical method/body - MPP paid retry with identical JSON body and canonical mppx flow

  • Agent-wallet coverage (when enabled):

- read live capability/funding route first: GET /agent-wallet/ - create order (returns exact amount): POST /agent-wallet/orders - payable funding (default auto sweep + finalize): POST /agent-wallet/<fundingProtocol>/fund - read order state: GET /agent-wallet/orders/{orderId} - funding status: GET /agent-wallet/<fundingProtocol>/purchases/{paymentReference} - funding protocol is runtime/env-driven (x402 or mpp); purchase protocol in order payload can still be x402 or mpp when enabled

  • Integration coverage:

- MCP/skills/OpenAPI consistency checks - scanner/registry validation via reference playbooks

Use This Skill When

  • user intent is not yet narrowed to sale or shop
  • you need one playbook to browse, route, and execute
  • you need to hand off cleanly to specialized skills after routing

Do Not Use This Skill When

  • task is explicitly sale-only and already scoped
  • task is explicitly shop-only and already scoped

Default Workflow

  1. Pick one target origin. Do not mix origins in one pass.
  2. Run discovery snapshot:

- node scripts/discover-gateway.mjs --origin <https://...>

  1. Read GET /catalog before any buy call.
  2. Route by user intent:

- browse/compare products: stay in this skill and follow references/discovery-and-routing.md - buy presale/NFT lots: follow sale flow in references/purchase-playbooks.md - buy in-game shop goods: follow shop flow in references/purchase-playbooks.md - scanner/MCP/OpenAPI integration or validation: use references/integration-playbook.md

  1. Validate before execution:

- active protocol exists on this origin - chosen surface matches the item (sale vs shop) - shop recipient rule is satisfied (exactly one of nickname or address)

Hard Rules

  • Do not mix sale and shop contracts in one purchase attempt.
  • Do not treat payment settlement as success before purchase-status/ledger confirmation.
  • Do not buy shop items from anonymous offers without recipient-scoped validation.
  • Keep unpaid and paid retry payloads identical.
  • Do not hardcode payment addresses or token/network constants outside deployment config.

Fast Defaults

  • Browse everything: GET /catalog
  • Sale buy: POST /agentic/<protocol>/buy
  • Shop buy: POST /shop/<protocol>/buy
  • Agent-wallet buy flow:

- GET /agent-wallet/ - POST /agent-wallet/orders - POST /agent-wallet/<fundingProtocol>/fund - GET /agent-wallet/orders/{orderId}

  • Sale status: GET /agentic/<protocol>/purchases/{paymentTx}
  • Shop status:

- GET /shop/<protocol>/purchases/{paymentReference} - GET /shop/purchase-status/{purchaseId} (user-facing status)

Plan-Validate-Execute Loop

  1. Plan: choose one origin, one surface, and one protocol from live discovery.
  2. Validate: run the relevant checklist from references.
  3. Execute: quote or buy.
  4. Re-validate: if contract behavior differs, re-read live discovery and adjust.

Agent Wallet Simplified Flow

  1. Create order with purchase intent.

- Read GET /agent-wallet/ and use returned fundingProtocol/fundingRoute as source of truth. - protocol is optional; gateway can infer a compatible protocol (for example, shop carts prefer mpp when available).

  1. Pay the funding route for returned orderId.
  2. Expect backend to auto-run sweep and finalize.
  3. Read order; if auto-execution fails, use manual recovery endpoints only as fallback.

Load References On Demand

  • Discovery and routing: references/discovery-and-routing.md
  • Purchase playbooks: references/purchase-playbooks.md
  • Integration/validator flow: references/integration-playbook.md
  • Client setup: references/client-installation.md
  • Skill eval artifacts:

- quality evals: evals/evals.json - trigger evals: evals/trigger-queries.json

Output Template

### Clash of Coins Handoff

- Origin: <origin>
- Enabled protocols: <x402|mpp|both>
- Surface selected: <sale|shop>
- Why this route: <user intent + catalog evidence>
- Next endpoint: <method + path>
- Payload constraints: <recipient/beneficiary/cart rules>
- Payment retry rule: <PAYMENT-SIGNATURE or Authorization: Payment via mppx>
- Status endpoint: <exact path>
- Risks/gotchas: <if any>

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

93.18%
按下载量换算1,820

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills