Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计异常

evm-swiss-knifeevm 瑞士刀

Agent Skill

evm-swiss-knife 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,958

周安装

80

GitHub Stars

17

下载量

634
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:evm-swiss-knife(evm 瑞士刀)
来源仓库:https://github.com/kukapay/crypto-skills
仓库路径:skills/evm-swiss-knife
安装命令:
npx skills add https://github.com/kukapay/crypto-skills --skill evm-swiss-knife
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/kukapay/crypto-skills --skill evm-swiss-knife

简介

通过 Foundry 的 cast 工具实现 EVM 区块链交互,涵盖余额查询与合约调用。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中发送交易、检查网络状态等基础操作。
  • 需预先安装 Foundry,支持 Linux/Mac 一键安装脚本快速配置开发环境。
  • 建议在使用前验证 cast 命令可用性,避免在未联网环境下执行远程调用。
  • evm-swiss-knife 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

EVM Swiss Knife

This skill enables interaction with EVM-compatible blockchains through Foundry's cast command-line tool. It covers common blockchain operations like balance queries, contract calls, transaction sending, and network inspection.

Installation

To use this skill, you need Foundry installed, which provides the cast command.

Follow the official installation guide: https://getfoundry.sh/introduction/installation

Quick Install (Linux/Mac)

  1. Install Foundryup: curl -L https://foundry.paradigm.xyz | bash
  2. Source your shell configuration or start a new terminal: source ~/.bashrc # or ~/.zshrc
  3. Install Foundry: foundryup
  4. Verify installation: cast --version

For other platforms or detailed instructions, see the full guide at https://getfoundry.sh/introduction/installation

Prerequisites

  • Foundry installed (cast command available)
  • RPC endpoint configured (via --rpc-url or environment variables)
  • Private key for transaction operations (if sending txs)

RPC URL Selection

To interact with different EVM networks, you need reliable RPC endpoints. Use ChainList's API at https://chainlist.org/rpcs.json to get a comprehensive JSON list of RPC URLs for all supported chains.

How to Select RPC URLs:

  1. Fetch the RPC data: curl -s https://chainlist.org/rpcs.json | jq '.[] | select(.chainId == 1)' # For Ethereum (chain ID 1)
  2. Look for RPC URLs that are:

- Public and free: No API keys required - No or limited tracking: Avoid URLs with "tracking": "yes" - Fast and reliable: Prefer URLs with low latency or high score - Open source: Prefer community-maintained endpoints

  1. Popular choices (extracted from ChainList):

- Ethereum (ID 1): https://ethereum-rpc.publicnode.com - BNB Smart Chain (ID 56): https://bsc-dataseed.binance.org - Base (ID 8453): https://mainnet.base.org - Polygon (ID 137): https://polygon-rpc.com

  1. For production use, consider paid RPC services like Alchemy, Infura, or QuickNode for higher reliability and rate limits.
  2. Always verify the chain ID matches your intended network to avoid connecting to wrong chains.

Common Operations

Query Account Balance

Get ETH balance of an address:

cast balance <address> --rpc-url <rpc_url>

Get ERC20 token balance:

cast call <token_contract> "balanceOf(address)(uint256)" <address> --rpc-url <rpc_url>

Call Contract Functions (Read-Only)

Call a view/pure function:

cast call <contract_address> "<function_signature>" [args...] --rpc-url <rpc_url>

Example - get token total supply:

cast call 0xA0b86a33E6441e88C5F2712C3E9b74B6F3f5a8b8 "totalSupply()(uint256)" --rpc-url <rpc_url>

Send Transactions

Send ETH:

cast send --private-key <pk> --rpc-url <rpc_url> <to_address> --value <amount_in_wei>

Call contract function (write):

cast send --private-key <pk> --rpc-url <rpc_url> <contract_address> "<function_signature>" [args...]

Blockchain Inspection

Get latest block number:

cast block-number --rpc-url <rpc_url>

Get block details:

cast block <block_number> --rpc-url <rpc_url>

Get transaction details:

cast tx <tx_hash> --rpc-url <rpc_url>

Contract Deployment

Deploy a contract:

cast send --private-key <pk> --rpc-url <rpc_url> --create <bytecode> [constructor_args...]

Decoding Data

Decode hex data:

cast --to-ascii <hex_string>
cast --to-dec <hex_string>

Network-Specific Examples

Ethereum Mainnet

export ETH_RPC_URL=https://eth-mainnet.alchemyapi.io/v2/YOUR_API_KEY
cast balance 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045

Polygon

cast balance <address> --rpc-url https://polygon-rpc.com/

Local Development (Anvil)

cast balance <address> --rpc-url http://127.0.0.1:8545

Error Handling

  • RPC errors: Check endpoint URL and network connectivity
  • Insufficient funds: Ensure account has enough ETH for gas + value
  • Contract errors: Verify function signatures and parameter types
  • Private key errors: Ensure correct format (0x prefixed hex)

Advanced Usage

Batch Operations

Use shell loops for multiple queries:

for addr in addr1 addr2 addr3; do
  echo "Balance of $addr: $(cast balance $addr --rpc-url $RPC_URL)"
done

Gas Estimation

Estimate gas for a transaction:

cast estimate --rpc-url <rpc_url> <to_address> --value <amount>

ABI Interactions

For complex contracts, save ABI to file and use:

cast call --abi <abi_file> <contract> <function> [args...]

Security Notes

  • Never expose private keys in scripts or logs
  • Use environment variables for sensitive data
  • Test on testnets before mainnet operations
  • Verify contract addresses and function signatures
  • Monitor gas prices for transaction timing

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.58%
按下载量换算219

Claude

28.81%
按下载量换算183

Cursor

19.83%
按下载量换算126

Gemini CLI

9.24%
按下载量换算59

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills