Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计提醒

nunchuk-platform-key双节棍平台钥匙

Agent Skill

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

总安装

235

周安装

10

GitHub Stars

7

下载量

82
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:nunchuk-platform-key(双节棍平台钥匙)
来源仓库:https://github.com/nunchuk-io/agent-skills
仓库路径:skills/nunchuk-platform-key
安装命令:
npx skills add https://github.com/nunchuk-io/agent-skills --skill nunchuk-platform-key
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/nunchuk-io/agent-skills --skill nunchuk-platform-key

简介

nunchuk-platform-key 用于处理 GitHub 仓库、Issue 和 Pull Request 协作信息。

  • 适用于围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写操作。
  • 可结合来源仓库进一步核验功能细节和使用限制。

SKILL.md

Nunchuk Platform Key

If auth or network setup is the blocker, use nunchuk-setup.

What is Platform Key

Platform key is an optional Nunchuk-managed signer you can add to a multisig wallet. It is a secure HSM key managed by Nunchuk.

For example, in a 2-of-3 wallet with two user keys and one Platform key, each transaction still needs 2 signatures. That can be:

  • the user's two own keys
  • one user key and the Platform key

Whether the Platform key signs depends on the current policy.

Sandbox

In a sandbox, this is where you reserve the Platform key slot and set the initial policies that will apply after wallet creation.

Enable platform key:

nunchuk sandbox platform-key enable <sandbox-id>

Disable platform key:

nunchuk sandbox platform-key disable <sandbox-id>

Set a global policy:

# Auto-broadcast, max 100 USD per day.
nunchuk sandbox platform-key set-policy <sandbox-id> \
  --auto-broadcast \
  --limit-amount 100 --limit-currency USD --limit-interval DAILY

Set a per-key policy:

# Only for signer 1a2b3c4d, with a 24h delay, unlimited spending.
nunchuk sandbox platform-key set-policy <sandbox-id> \
  --signer 1a2b3c4d --signing-delay 24h

Set different policies for different keys:

# Signer 1a2b3c4d: 24h delay, unlimited spending.
nunchuk sandbox platform-key set-policy <sandbox-id> \
  --signer 1a2b3c4d --signing-delay 24h

# Signer 5e6f7a8b: auto-broadcast, max 100 USD per day.
nunchuk sandbox platform-key set-policy <sandbox-id> \
  --signer 5e6f7a8b \
  --auto-broadcast \
  --limit-amount 100 --limit-currency USD --limit-interval DAILY

Inspect sandbox Platform key state:

nunchuk sandbox get <sandbox-id>

Existing wallets

On an existing wallet, Platform key commands let you inspect the current policy or request a policy update after the wallet has already been finalized.

A wallet policy update may create a dummy transaction that needs approval signatures. Use nunchuk-wallet-management for wallet dummy-tx list, get, sign, and cancel.

Inspect wallet Platform key policy:

nunchuk wallet platform-key get <wallet-id>

Update wallet Platform key policy:

# Auto-broadcast, max 100 USD per day.
nunchuk wallet platform-key update <wallet-id> \
  --auto-broadcast \
  --limit-amount 100 --limit-currency USD --limit-interval DAILY

Update different policies for different keys:

# Submit all per-key policies in one update request.
nunchuk wallet platform-key update <wallet-id> --policy-json '{
  "signers": [
    {
      "masterFingerprint": "1a2b3c4d",
      "autoBroadcastTransaction": false,
      "signingDelaySeconds": 86400
    },
    {
      "masterFingerprint": "5e6f7a8b",
      "autoBroadcastTransaction": true,
      "spendingLimit": {
        "amount": "100",
        "currency": "USD",
        "interval": "DAILY"
      }
    }
  ]
}'

Policy model

  • After the wallet is finalized, Nunchuk can use the platform key to help approve transactions and enforce spending rules.
  • Global policy applies to the whole wallet.
  • Per-key policy applies to one key, identified by fingerprint.
  • If multiple per-key policies apply, Nunchuk uses the most restrictive applicable policy.
  • --auto-broadcast means Nunchuk broadcasts the transaction after signing, once the transaction is ready.
  • --signing-delay means Nunchuk waits before signing the transaction with the platform key.
  • --signing-delay accepts plain seconds or short durations like 30s, 15m, 24h, and 7d.
  • Spending limit controls how much can be approved automatically within an interval.
  • If no spending limit is set, the policy is unlimited.
  • Spending limit requires amount, currency, and interval together.
  • Supported spending-limit currencies are USD, BTC, and sat only.
  • Global and per-key policies cannot be mixed in the same configuration.

Gotchas

  • In the CLI, platform key is currently for multisig wallet flows.
  • Platform key signing is asynchronous. After user signatures are added, check transaction status again before expecting a Platform key signature or broadcasting.
  • For multisig wallets, sandbox platform-key enable reserves the last key slot for the Nunchuk-held platform key.
  • sandbox platform-key set-policy requires platform key to be enabled first.
  • For existing wallets, submit all per-key policies in one wallet platform-key update request. Missing non-platform signers are rejected.
  • wallet platform-key update may return a dummy transaction with type UPDATE_PLATFORM_KEY_POLICIES. If that happens, use nunchuk-wallet-management for wallet dummy-tx get, sign, and cancel.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.52%
按下载量换算30

Claude

28.8%
按下载量换算24

Cursor

19.33%
按下载量换算16

Gemini CLI

10.11%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills