cardano-cli-wallets
Wallet guidance: key generation, address building, UTxO queries. Provides templates and explanations (no execution).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Wallet guidance: key generation, address building, UTxO queries. Provides templates and explanations (no execution).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | cardano-cli-wallets |
| description | Wallet guidance: key generation, address building, UTxO queries. Provides templates and explanations (no execution). |
| allowed-tools | ["Read"] |
| user-invocable | true |
This is a guidance skill. It provides templates and explanations but does not execute commands. For execution, use
cardano-cli-wallets-operator.
Identify network
Provide key generation template
# Create wallet directory
mkdir -p wallet && cd wallet
# Generate payment keys
cardano-cli conway address key-gen \
--verification-key-file payment.vkey \
--signing-key-file payment.skey
# Generate stake keys
cardano-cli conway stake-address key-gen \
--verification-key-file stake.vkey \
--signing-key-file stake.skey
# Secure keys
chmod 600 *.skey
Provide address building template
# Build base address (payment + stake)
cardano-cli conway address build \
--payment-verification-key-file payment.vkey \
--stake-verification-key-file stake.vkey \
--out-file base.addr \
--testnet-magic 1 # or --mainnet
# Build enterprise address (payment only)
cardano-cli conway address build \
--payment-verification-key-file payment.vkey \
--out-file enterprise.addr \
--testnet-magic 1
Provide UTxO query template
cardano-cli conway query utxo \
--address $(cat base.addr) \
--testnet-magic 1
Wallet dossier output format
=== Wallet Dossier ===
Network: preprod (magic 1)
Base Address: addr_test1...
Enterprise Address: addr_test1...
Payment VKey Hash: abc123...
Stake VKey Hash: def456...
Files: payment.vkey, payment.skey, stake.vkey, stake.skey
User request: "Create a wallet for preprod testing"
Response:
# === Preprod Wallet Setup ===
# 1. Create directory
mkdir -p ~/cardano/preprod-wallet && cd ~/cardano/preprod-wallet
# 2. Generate payment keypair
cardano-cli conway address key-gen \
--verification-key-file payment.vkey \
--signing-key-file payment.skey
# 3. Generate stake keypair
cardano-cli conway stake-address key-gen \
--verification-key-file stake.vkey \
--signing-key-file stake.skey
# 4. Build base address
cardano-cli conway address build \
--payment-verification-key-file payment.vkey \
--stake-verification-key-file stake.vkey \
--out-file base.addr \
--testnet-magic 1
# 5. Secure keys
chmod 600 *.skey
# 6. Display address for funding
echo "Fund this address from faucet:"
cat base.addr
# 7. Verify (after funding)
cardano-cli conway query utxo \
--address $(cat base.addr) \
--testnet-magic 1
.skey contents into chatchmod 600 *.skeyshared/PRINCIPLES.md (repo)CRITICAL: Use for performance optimization. Triggers: performance, optimization, benchmark, profiling, flamegraph, criterion, slow, fast, allocation, cache, SIMD, make it faster, 性能优化, 基准测试
Use when integrating crates or ecosystem questions. Keywords: E0425, E0433, E0603, crate, cargo, dependency, feature flag, workspace, which crate to use, using external C libraries, creating Python extensions, PyO3, wasm, WebAssembly, bindgen, cbindgen, napi-rs, cannot find, private, crate recommendation, best crate for, Cargo.toml, features, crate 推荐, 依赖管理, 特性标志, 工作空间, Python 绑定
Encode and decode bech32 and bech32m strings using the local bech32 and bech32m CLI.
Diagnose cardano-cli: version, era-prefixed vs legacy syntax, network flags. Produces compatibility report.
Execute Plutus script transactions: script spends, datum/redeemer submission. Manual invoke only.
Plutus script guidance: datums, redeemers, collateral, reference scripts. Templates only—use operator to execute.