Propose, confirm, and execute Safe multisig transactions using the Safe{Core} SDK (protocol-kit v6 / api-kit v4). TypeScript strict. Use when an agent needs to operate a Safe smart account — (1) create/predict a new Safe, (2) fetch Safe owners/threshold/nonce, (3) list pending multisig txs, (4) build + propose a tx, (5) add confirmations, (6) execute a tx onchain, or (7) troubleshoot Safe nonce/signature issues across chains (Base/Ethereum/Optimism/Arbitrum/Polygon/etc.).
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install safe-multisig或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install safe-multisig⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/safe-multisig/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: safe-multisig-skill description: Propose, confirm, and execute Safe multisig transactions using the Safe{Core} SDK (protocol-kit v6 / api-kit v4). TypeScript strict. Use when an agent needs to operate a Safe smart account — (1) create/predict a new Safe, (2) fetch Safe owners/threshold/nonce, (3) list pending multisig txs, (4) build + propose a tx, (5) add confirmations, (6) execute a tx onchain, or (7) troubleshoot Safe nonce/signature issues across chains (Base/Ethereum/Optimism/Arbitrum/Polygon/etc.). ---
TypeScript-strict scripts for interacting with Safe multisig accounts via:
All scripts use ethers v6, validate inputs (addresses, tx hashes), and output JSON.
cd <this-skill>
./scripts/bootstrap.sh
# sanity check network + service
./scripts/safe_about.sh --chain base
| Script | Description | |--------|-------------| | create-safe.ts | Predict address + optionally deploy a new Safe | | safe-info.ts | Fetch Safe info (owners/threshold/nonce) | | list-pending.ts | List pending (queued) multisig transactions | | safe_txs_list.ts | List all multisig transactions (queued + executed) | | propose-tx.ts | Create + propose a multisig tx | | approve-tx.ts | Add an off-chain confirmation for a tx hash | | execute-tx.ts | Execute a fully-confirmed tx onchain |
All scripts: npx tsx scripts/
npx tsx scripts/create-safe.ts \
--chain base \
--owners 0xOwner1,0xOwner2,0xOwner3 \
--threshold 2
Add --deploy + SAFE_SIGNER_PRIVATE_KEY to send the deployment tx.
npx tsx scripts/safe-info.ts --chain base --safe 0xYourSafe
npx tsx scripts/list-pending.ts --chain base --safe 0xYourSafe
Create a tx request JSON (see references/tx_request.schema.json and references/examples.md).
export SAFE_SIGNER_PRIVATE_KEY="..."
npx tsx scripts/propose-tx.ts \
--chain base \
--rpc-url "$BASE_RPC_URL" \
--tx-file ./references/example.tx.json
export SAFE_SIGNER_PRIVATE_KEY="..."
npx tsx scripts/approve-tx.ts \
--chain base \
--safe 0xYourSafe \
--safe-tx-hash 0x...
export SAFE_SIGNER_PRIVATE_KEY="..."
npx tsx scripts/execute-tx.ts \
--chain base \
--rpc-url "$BASE_RPC_URL" \
--safe 0xYourSafe \
--safe-tx-hash 0x...
All scripts accept:
--chain (recommended): e.g. base, base-sepolia, mainnet, arbitrum, optimism--tx-service-url : Override the transaction service URL--rpc-url : RPC endpoint (or RPC_URL env var)--api-key : Safe Transaction Service API key (or SAFE_TX_SERVICE_API_KEY env var)references/examples.md — example requests + workflowsreferences/tx_request.schema.json — tx request JSON shapereferences/tx_service_slugs.md — chain slugs + notes安装 Safe Multisig Skill 后,可以对 AI 说这些话来触发它
Help me get started with Safe Multisig Skill
Explains what Safe Multisig Skill does, walks through the setup, and runs a quick demo based on your current project
Use Safe Multisig Skill to propose, confirm, and execute Safe multisig transactions using the ...
Invokes Safe Multisig Skill with the right parameters and returns the result directly in the conversation
What can I do with Safe Multisig Skill in my developer & devops workflow?
Lists the top use cases for Safe Multisig Skill, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/safe-multisig/ 目录(个人级,所有项目可用),或 .claude/skills/safe-multisig/(项目级)。重启 AI 客户端后,用 /safe-multisig 主动调用,或让 AI 根据上下文自动发现并使用。
Safe Multisig Skill 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Safe Multisig Skill 可免费安装使用。请查阅仓库了解许可证信息。
Propose, confirm, and execute Safe multisig transactions using the Safe{Core} SDK (protocol-kit v6 / api-kit v4). TypeScript strict. Use when an agent needs to operate a Safe smart account — (1) create/predict a new Safe, (2) fetch Safe owners/threshold/nonce, (3) list pending multisig txs, (4) build + propose a tx, (5) add confirmations, (6) execute a tx onchain, or (7) troubleshoot Safe nonce/signature issues across chains (Base/Ethereum/Optimism/Arbitrum/Polygon/etc.).
Automate my developer & devops tasks using Safe Multisig Skill
Identifies repetitive steps in your workflow and sets up Safe Multisig Skill to handle them automatically
Safe Multisig Skill 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。