← 返回 Skills 市场
youhualan

Find Crypto Skills

作者 youhualan · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
139
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install find-crypto-skills
功能描述
Helps users discover and install crypto trading related agent skills when they ask questions like "how do I trade crypto", "find a skill for DeFi", "is there...
使用说明 (SKILL.md)

Find Crypto Skills

This skill helps you discover and install crypto trading related skills from the open agent skills ecosystem.

When to Use This Skill

Use this skill when the user:

  • Asks "how do I trade X" where X is a cryptocurrency or exchange
  • Says "find a skill for DeFi / crypto / blockchain / trading"
  • Asks "is there a skill for analyzing crypto prices / on-chain data / wallet tracking"
  • Wants to automate trading strategies, alerts, or portfolio management
  • Mentions exchanges like Binance, OKX, Coinbase, Bybit, Kraken, Uniswap, etc.
  • Asks about DeFi protocols, NFTs, token swaps, yield farming, or staking
  • Wants on-chain analytics, wallet monitoring, or transaction tracking

What is the Skills CLI?

The Skills CLI (npx skills) is the package manager for the open agent skills ecosystem.

Key commands:

  • npx skills find [query] - Search for skills by keyword
  • npx skills add \x3Cpackage> - Install a skill
  • npx skills check - Check for updates
  • npx skills update - Update all installed skills

Browse skills at: https://skills.sh/


How to Help Users Find Crypto Skills

Step 1: Identify the User's Need

When a user asks for crypto-related help, identify:

  1. Asset type — BTC, ETH, SOL, altcoins, stablecoins, NFTs
  2. Action — trading, analyzing, monitoring, automating, staking, bridging
  3. Platform — CEX (Binance, OKX, Coinbase) or DEX (Uniswap, Jupiter, dYdX)
  4. Data need — price feeds, on-chain data, sentiment, news

Step 2: Search Using Crypto-Specific Queries

Run the find command with targeted keywords:

npx skills find [query]

Recommended query mapping:

User Intent Search Query
"trade on Binance" npx skills find binance trading
"track my crypto portfolio" npx skills find crypto portfolio tracker
"DeFi yield farming" npx skills find defi yield
"Bitcoin price alert" npx skills find crypto price alert
"analyze on-chain data" npx skills find onchain analytics
"swap tokens on Uniswap" npx skills find uniswap token swap
"crypto news sentiment" npx skills find crypto news sentiment
"NFT floor price" npx skills find nft floor price
"wallet monitoring" npx skills find wallet monitor blockchain
"automate trading strategy" npx skills find crypto trading bot

Step 3: Present Options to the User

When relevant skills are found, present them with:

  1. Skill name and what it does
  2. Supported exchanges or chains (if applicable)
  3. The install command
  4. A link to learn more

Example response:

I found a skill that might help! The "okx-trade" skill lets you place spot and
futures orders, check balances, and manage positions on OKX directly from chat.

To install it:
npx skills add okx-trade

Learn more: https://skills.sh/okx-trade

Step 4: Offer to Install

If the user wants to proceed:

npx skills add \x3Cowner/repo@skill> -g -y

Crypto Skill Categories

Category Keywords to Search
CEX Trading binance, okx, coinbase, bybit, kraken, trading, order, futures, spot
DEX / DeFi uniswap, jupiter, dydx, defi, swap, liquidity, yield, farming, staking
Portfolio portfolio, tracker, balance, pnl, holdings
Price & Alerts price, alert, feed, candlestick, ohlcv, coingecko, coinmarketcap
On-chain Analytics onchain, blockchain, wallet, transaction, etherscan, dune, nansen
NFT nft, floor, opensea, blur, collection, mint
Sentiment & News crypto news, sentiment, twitter crypto, fear greed
Automation trading bot, strategy, backtest, signal, webhook

Tips for Effective Crypto Searches

  1. Be exchange-specific: binance futures returns better results than just trading
  2. Include the chain: solana swap or ethereum defi narrows results effectively
  3. Try abbreviations: btc, eth, sol often work as well as full names
  4. Check these common sources for crypto skills:
    • ComposioHQ/awesome-claude-skills
    • okx-trade-mcp
    • Exchange-specific repos (e.g. binance-labs/agent-skills)

When No Crypto Skills Are Found

If no relevant skill exists:

  1. Acknowledge that no existing skill was found
  2. Offer to help directly — e.g., fetch price data via CoinGecko API, analyze a wallet address, or explain a DeFi protocol
  3. Suggest creating a custom skill:
I searched for skills related to "[query]" but didn't find any matches.
I can still help you directly — for example, I can pull live price data or
walk you through a trade manually.

If you need this often, you can scaffold your own skill:
npx skills init my-crypto-skill

Security Reminders

When installing any crypto-related skill, remind the user to:

  • Never share private keys or seed phrases with any skill
  • Use API keys with trade-only permissions (no withdrawal access) when connecting to exchanges
  • Test with small amounts before automating real trades
  • Verify the skill source on GitHub before installing
安全使用建议
This skill is coherent and mainly guides discovery/install of crypto agent skills, but installing arbitrary npm packages is inherently risky. Before adding any skill: (1) inspect the skill's source repo on GitHub and verify the owner, recent commits, and issues; (2) avoid global installs (-g) and avoid auto-yes (-y) so you can read prompts; (3) prefer running untrusted skills in an isolated environment or container; (4) never paste private keys or seed phrases into a skill and only use exchange API keys with withdrawal disabled; (5) consider manually reviewing package.json and install scripts of any npm package you run. If you want, I can list safer patterns for vetting a skill's repository or walk you through reviewing a specific skill before you install it.
功能分析
Type: OpenClaw Skill Name: find-crypto-skills Version: 1.0.0 The skill is a discovery and helper tool designed to assist users in finding and installing cryptocurrency-related agent skills using the 'npx skills' CLI. It contains no executable code, only markdown instructions (SKILL.md) that guide the AI agent on how to map user queries to search commands. The skill includes explicit security reminders advising users to protect private keys and use restricted API permissions, which demonstrates alignment with its stated purpose without malicious intent.
能力评估
Purpose & Capability
The name/description match the runtime instructions: the SKILL.md instructs the agent to search for and propose crypto-related skills and suggests install commands for discovered skills. No unrelated capabilities, env vars, or binaries are requested.
Instruction Scope
Instructions are limited to searching for skills (npx skills find) and presenting/installing them (npx skills add). The doc correctly warns about not sharing private keys. Note: the instructions propose using npx to run and install third‑party packages and even suggest global installs (-g -y); that means the user (or the agent, if allowed) may execute remote code, so the agent should not automatically run installs without user confirmation and repository review.
Install Mechanism
There is no install spec for this skill itself (instruction-only). However the workflow depends on npx/npm to fetch and run packages from the public registry (skills CLI and individual skills). This is expected for a package-manager-driven ecosystem but does present standard npm supply‑chain risks (malicious or compromised packages, typosquatting). The SKILL.md does not pin trusted release URLs or hashes.
Credentials
The skill requests no environment variables, credentials, or config paths. It explicitly advises users not to share private keys and to use trade-only API keys, which is appropriate and proportionate.
Persistence & Privilege
always is false and the skill does not ask to persist or modify other skills or agent configuration. Autonomous invocation is allowed by default (normal for skills) but is not combined with broad privileges or credential access.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install find-crypto-skills
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /find-crypto-skills 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of find-crypto-skills. - Helps users discover and install crypto, DeFi, blockchain, and trading skills from the open agent skills ecosystem. - Suggests relevant skills based on user queries or interests in trading, analysis, automation, and portfolio management. - Provides clear usage instructions for searching and installing skills via the Skills CLI (`npx skills`). - Includes best practices for effective search, security reminders, and what to do if no relevant skill is found.
元数据
Slug find-crypto-skills
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Find Crypto Skills 是什么?

Helps users discover and install crypto trading related agent skills when they ask questions like "how do I trade crypto", "find a skill for DeFi", "is there... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 139 次。

如何安装 Find Crypto Skills?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install find-crypto-skills」即可一键安装,无需额外配置。

Find Crypto Skills 是免费的吗?

是的,Find Crypto Skills 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Find Crypto Skills 支持哪些平台?

Find Crypto Skills 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Find Crypto Skills?

由 youhualan(@youhualan)开发并维护,当前版本 v1.0.0。

💬 留言讨论