用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/input-output-hk/daedalus --skill bech32-encoding-decoding命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Manage and maintain i18n messaging or copy for Daedalus multi-language support.
Add, update, validate and verify theme files using built-in package.json commands and utilities.
Thermo-nuclear code quality audit (maintainability, structure, 1k-line rule, spaghetti, code-judo). Invoked via Task after a parent gathers diff and file contents. Run an extremely strict maintainability review for abstraction quality, giant files, and spaghetti-condition growth. Use for a thermo-nuclear code quality review, thermonuclear review, deep code quality audit, or especially harsh maintainability review.
基于 SOC 职业分类
正在显示 SKILL.md
| name | bech32-encoding-decoding |
| description | Encode and decode bech32 strings using the local bech32 CLI. |
| allowed-tools | ["Bash(bech32:*)","Read"] |
| disable-model-invocation | false |
| user-invocable | true |
Use this skill to convert between hex/base58 inputs and bech32 strings, or to decode bech32 back to base16. The local bech32 binary reads data from standard input and writes to standard output.
bech32 [PREFIX] converts to/from bech32 stringsstdinstdout<<< or printf so the payload is explicitbech32 <prefix> <<< <hex-or-base58-input>
bech32 <<< <bech32-input>
Encode hex to bech32:
bech32 addr <<< 71ab222c7f223c4c0e297d11fbf6e6a082eb41db5e8539fcfb822c76c3
Expected output:
addr1wx4jytrlyg7ycr3f05glhahx5zpwkswmt6znnl8msgk8dsccv8766
Decode bech32 to hex:
bech32 <<< addr1wx4jytrlyg7ycr3f05glhahx5zpwkswmt6znnl8msgk8dsccv8766
Expected output:
71ab222c7f223c4c0e297d11fbf6e6a082eb41db5e8539fcfb822c76c3
Convert from base58 to bech32:
bech32 base58_ <<< Ae2tdPwUPEYy
Expected output:
base58_1p58rejhd9592uusa8pzj2
0x; the tool expects raw hex onlyUnable to detect input encoding usually means the input contains a prefix (0x) or non-hex characters0x prefix for hex.bech32 base16_ <<< 706174617465bech32 <<< base16_1wpshgct5v5r5mxh0bech32 --help