File contents cardano-cli-wallets
This is a guidance skill. It provides templates and explanations but does not execute commands. For execution, use cardano-cli-wallets-operator.
When to use
Learning how to create payment/stake keys and addresses
Understanding wallet structure and UTxO model
Getting copy-paste command templates
Operating rules (must follow)
Confirm network (mainnet vs preprod/preview) before providing commands
Never execute commands—only provide templates
Include verification steps in every template
Keep secrets out of examples
Workflow
Identify network
Ask for mainnet or preprod/preview and magic number
Determine CLI style (era-prefixed vs legacy) via doctor
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
Examples
Example: Create preprod wallet
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
Safety / key handling
Never paste .skey contents into chat
Prefer offline key generation for real funds
Lock permissions: chmod 600 *.skey
Avoid cloud sync for key directories
References
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1 --- 2 name: andrewwestberg-jormanager-cardano-cli-wallets 3 description: cardano-cli-wallets 4 --- 5 6 # cardano-cli-wallets 7 8 > **This is a guidance skill.** It provides templates and explanations but does not execute commands. For execution, use `cardano-cli-wallets-operator`. 9 10 ## When to use 11 - Learning how to create payment/stake keys and addresses 12 - Understanding wallet structure and UTxO model 13 - Getting copy-paste command templates 14 15 ## Operating rules (must follow) 16 - Confirm network (mainnet vs preprod/preview) before providing commands 17 - Never execute commands—only provide templates 18 - Include verification steps in every template 19 - Keep secrets out of examples 20 21 ## Workflow 22 1) Identify network 23 - Ask for **mainnet** or **preprod/preview** and magic number 24 - Determine CLI style (era-prefixed vs legacy) via doctor 25 26 2) Provide key generation template 27 ```bash 28 # Create wallet directory 29 mkdir -p wallet && cd wallet 30 31 # Generate payment keys 32 cardano-cli conway address key-gen \ 33 --verification-key-file payment.vkey \ 34 --signing-key-file payment.skey 35 36 # Generate stake keys 37 cardano-cli conway stake-address key-gen \ 38 --verification-key-file stake.vkey \ 39 --signing-key-file stake.skey 40 41 # Secure keys 42 chmod 600 *.skey 43 ``` 44 45 3) Provide address building template 46 ```bash 47 # Build base address (payment + stake) 48 cardano-cli conway address build \ 49 --payment-verification-key-file payment.vkey \ 50 --stake-verification-key-file stake.vkey \ 51 --out-file base.addr \ 52 --testnet-magic 1 # or --mainnet 53 54 # Build enterprise address (payment only) 55 cardano-cli conway address build \ 56 --payment-verification-key-file payment.vkey \ 57 --out-file enterprise.addr \ 58 --testnet-magic 1 59 ``` 60 61 4) Provide UTxO query template 62 ```bash 63 cardano-cli conway query utxo \ 64 --address $(cat base.addr) \ 65 --testnet-magic 1 66 ``` 67 68 5) Wallet dossier output format 69 ``` 70 === Wallet Dossier === 71 Network: preprod (magic 1) 72 Base Address: addr_test1... 73 Enterprise Address: addr_test1... 74 Payment VKey Hash: abc123... 75 Stake VKey Hash: def456... 76 Files: payment.vkey, payment.skey, stake.vkey, stake.skey 77 ``` 78 79 ## Examples 80 81 ### Example: Create preprod wallet 82 **User request:** "Create a wallet for preprod testing" 83 84 **Response:** 85 ```bash 86 # === Preprod Wallet Setup === 87 88 # 1. Create directory 89 mkdir -p ~/cardano/preprod-wallet && cd ~/cardano/preprod-wallet 90 91 # 2. Generate payment keypair 92 cardano-cli conway address key-gen \ 93 --verification-key-file payment.vkey \ 94 --signing-key-file payment.skey 95 96 # 3. Generate stake keypair 97 cardano-cli conway stake-address key-gen \ 98 --verification-key-file stake.vkey \ 99 --signing-key-file stake.skey 100 101 # 4. Build base address 102 cardano-cli conway address build \ 103 --payment-verification-key-file payment.vkey \ 104 --stake-verification-key-file stake.vkey \ 105 --out-file base.addr \ 106 --testnet-magic 1 107 108 # 5. Secure keys 109 chmod 600 *.skey 110 111 # 6. Display address for funding 112 echo "Fund this address from faucet:" 113 cat base.addr 114 115 # 7. Verify (after funding) 116 cardano-cli conway query utxo \ 117 --address $(cat base.addr) \ 118 --testnet-magic 1 119 ``` 120 121 ## Safety / key handling 122 - Never paste `.skey` contents into chat 123 - Prefer offline key generation for real funds 124 - Lock permissions: `chmod 600 *.skey` 125 - Avoid cloud sync for key directories 126 127 ## References 128 - `shared/PRINCIPLES.md` (repo) 129 - [Cardano Docs: Keys and Addresses](https://docs.cardano.org) 130 131 --- 132 > Converted and distributed by [TomeVault](https://tomevault.io/claim/andrewwestberg) — claim your Tome and manage your conversions. 133 <!-- tomevault:4.0:skill_md:2026-04-13 -->
tomevault-io/skills-registry/tree/main/andrewwestberg--jormanager--cardano-cli-wallets commit d1ff3545ae
Frequently asked questions How do I install the Andrewwestberg Jormanager Cardano CLI Wallets skill? Run npx skillmds@latest add tomevault-io/andrewwestberg-jormanager-cardano-cli-wallets in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
What does the Andrewwestberg Jormanager Cardano CLI Wallets skill do? cardano-cli-wallets It is listed under Coding & Dev Tools on SkillMD.
Is Andrewwestberg Jormanager Cardano CLI Wallets safe to use? This skill has not completed SkillMD's automated safety review yet. Independent scanners report: SkillSpector: PASS, Skill Scanner: PASS. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
Which AI agents work with Andrewwestberg Jormanager Cardano CLI Wallets? This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Is Andrewwestberg Jormanager Cardano CLI Wallets free to use? Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Who published Andrewwestberg Jormanager Cardano CLI Wallets? tomevault-io (@tomevault-io) published this skill. Their other Agent Skills are listed on their SkillMD profile.