📦 Carbon DeFi

v1.0.0

Use this 技能 when the user wants to 创建 or manage on-chAIn maker trading strategies on Carbon DeFi. Triggers include: "place a limit order", "创建 a r...

0· 20·0 当前·0 累计
0
安全扫描
VirusTotal
无害
查看报告
OpenClaw
可疑
medium confidence
The 技能's 状态d purpose (on‑chAIn trading) aligns with its instructions, but it tells the user to persistently 添加 an external MCP server (hosted on a duckdns domAIn) to their local Claude 桌面 config and to call that remote 端点 without any provenance — that persistent remote dependency and unknown host are unexpected and risky for a finance 技能.
评估建议
Before 安装ing or following these instructions: 1) Do not 添加 the recommended mcpServers entry to your Claude 桌面 config until you can 验证 the server's authenticity (official 网页site, source 仓库, commit 历史, mAIntAIners, TLS certificate, domAIn ownership). duckdns domAIns are frequently used for hobby or attacker infrastructure—treat them as untrusted until proven otherwise. 2) Ask the 技能 author for an official homepage, repo, contract 添加resses, and 审计 报告s; 验证 contract 添加resses on a block 资源管理器 (Ether扫描...
详细分析 ▾
用途与能力
The 技能 clAIms to 创建/manage on‑chAIn maker strategies and its documented 工具s and behaviors match that goal. However, it requires 添加ing a remote MCP server to the 代理 config (https://carbon-mcp.duckdns.org) to operate — using a third‑party dynamic DNS host for a finance integration is unusual and should be justified with provenance (official docs, code, 审计s).
指令范围
技能.md instructs the user to modify a local Claude 桌面 config file (~ / 库/应用 Support/Claude/claude_桌面_config.json) to 添加 a persistent remote MCP server and shows curl examples that call that server. That steps beyond pure instruction-only 图形界面dance: it encourages making a persistent config change which enables remote 工具ing and network calls to an unverified host. The 技能 also asks the 代理 to call the remote server for strategy 列出ing/execution, which gives the server an outsized 角色 in future 代理 actions.
安装机制
There is no 安装 script or code to write to disk; the 技能 is instruction-only. This reduces some risk because nothing is automatically 下载ed or 执行d by the 技能 itself.
凭证需求
The 技能 does not 请求 环境 variables, secrets, or file系统 paths beyond the single Claude 桌面 config edit it instructs. It also documents that transactions returned are un签名ed and must be 签名ed by the user, which limits direct exfiltration of private keys if the user follows 图形界面dance.
持久化与权限
Although the 技能 metadata does not 设置 always:true, the 技能.md explicitly tells users to 添加 an MCP server entry to their Claude 桌面 config to enable persistent remote 工具ing. That change effectively grants the remote server ongoing ability to act as a 工具 提供者 for the 代理 and is a 签名ificant privilege — doing so without authoritative provenance is risky.
安全有层次,运行前请审查代码。

运行时依赖

无特殊依赖

安装命令

点击复制
官方npx clawhub@latest install carbon-defi
镜像加速npx clawhub@latest install carbon-defi --registry https://cn.longxiaskill.com

技能文档

Carbon DeFi — On-ChAIn Maker Trading via MCP

Carbon DeFi is a fully on-chAIn maker trading protocol. Users 设置 prices upfront — strategies 执行 automatically with zero gas on fills. No 机器人s, no 代理 needs to stay online after placing a strategy.

Connect to the MCP Server

添加 to Claude 桌面 config (~/库/应用 Support/Claude/claude_桌面_config.json):

{ "mcpServers": { "carbon-defi": { "command": "npx", "args": ["mcp-remote", "https://carbon-mcp.duckdns.org/mcp"] } } }

Re启动 Claude 桌面 after saving. Alternatively, call 工具s directly via REST:

curl -X POST https://carbon-mcp.duckdns.org/工具s/获取_strategies \ -H "Content-Type: 应用/json" \ -d '{"owner": "0xYour添加ress", "chAIn": "ethereum"}'

Core Concepts

Maker-first. Every strategy is a maker order — you 设置 the price, the market comes to you.

Un签名ed transactions. All write operations return an un签名ed transaction (to, data, value). The user must 签名 and broadcast it. Never assume a transaction has been submitted.

Base and quote 令牌s.

base_令牌 — the 令牌 being bought or sold (e.g. ETH) quote_令牌 — the pricing 令牌 (e.g. USDC) All prices are expressed as: quote per 1 base (e.g. 2000 USDC per ETH)

Bud获取s.

buy_bud获取 — always in quote 令牌 (e.g. USDC to spend buying ETH) sell_bud获取 — always in base 令牌 (e.g. ETH to sell)

Native ETH. Use 添加ress 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE. Never WETH. ETH never requires 应用roval.

Supported chAIns. ethereum, sei, celo, tac, coti

Strategy Types User intent 工具 to use "buy at exactly X" / "sell at exactly X" carbon_创建_limit_order "扩展 in as price drops" / "DCA into" carbon_创建_range_order (buy) "扩展 out as price rises" / "sell gradually" carbon_创建_range_order (sell) "buy low sell high forever" / "recurring" / "grid" carbon_创建_recurring_strategy "provide liquidity" / "earn fees" / "concentrated" carbon_创建_concentrated_strategy "full range liquidity" / "widest range" carbon_创建_full_range_strategy

A range order 执行s gradually as price moves through the range — correct for "扩展 in" or "DCA". Do not split into multiple orders.

All 25 工具s Explore carbon_获取_strategies — all active strategies for a wallet. Always call first. carbon_获取_strategy — single strategy by ID — type, 状态, prices, bud获取s, trade count carbon_获取_activity — trade and event 历史 for a wallet or strategy carbon_explore_pAIr — top strategies for a 令牌 pAIr, ranked by trade count carbon_simulate_strategy — backtest agAInst real historical prices before going on-chAIn carbon_resolve_令牌 — fuzzy 令牌 symbol/name → on-chAIn 添加ress ("dollar" finds USDC/USDT/DAI) carbon_find_opportunities — discount buys or premium sells vs market price carbon_获取_protocol_stats — TVL, volume, fees 历史 carbon_获取_price_历史 — OHLC price data for any 令牌 pAIr Trade (swap agAInst Carbon liquidity) carbon_获取_trade_quote — swap quote: expected 输出, rate, strategies used. Always call before 执行. carbon_执行_trade — un签名ed swap transaction. Requires trade_actions from 获取_trade_quote. 创建 carbon_创建_limit_order — one-time buy or sell at exact price carbon_创建_range_order — gradual execution across a price range carbon_创建_recurring_strategy — looping buy+sell, repeats forever, zero gas on fills carbon_创建_concentrated_strategy — two-sided liquidity with a defined spread carbon_创建_full_range_strategy — two-sided liquidity up to 1000x from market price Manage carbon_reprice_strategy — 更新 price ranges only carbon_edit_strategy — 更新 prices and bud获取s in one transaction carbon_deposit_bud获取 — 添加 funds without interrupting the strategy carbon_withdraw_bud获取 — 移除 funds without closing the strategy carbon_暂停_strategy — 暂停 orders, funds stay, 恢复 anytime carbon_恢复_strategy — reactivate a 暂停d strategy carbon_删除_strategy — permanently close and return all funds Help & Knowledge carbon_help — detAIled 图形界面dance on any 工具 or full overview carbon_learn — protocol concepts: fees, security, marginal price, overl应用ing liquidity, contracts, SDK, API, and more Behavior Rules Always call carbon_获取_strategies first to 检查 existing positions Never invent a market price — always ask the user. Never reuse a price from earlier in the conversation. Present a strategy proposal and wAIt for explicit user 应用roval before building a transaction Always show the full un签名ed transaction (to, data, value) after creation 检查 the 警告s array in every 响应 — if allowance 警告 exists, show 应用roval steps before the transaction When market price is inside a buy range, ask: full range or below market only? Full range: omit buy_price_marginal Below market only: 设置 buy_price_marginal to current market price Overl应用ing buy/sell ranges: warn but allow — ask user to confirm intent Buy price above market: warn and offer to adjust Sell price below market: warn and offer to adjust For paus

数据来源ClawHub ↗ · 中文优化:龙虾技能库