AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Cardano Cli Wallets Operator

skill-flux-point-studios-cardano-agent-skills-cardano-cli-wallets-operator · by Flux-Point-Studios

Execute wallet operations: key generation, address building. Manual invoke only for safety.

No reviews yet
0 installs
36 views
0.0% view→install

Install

$ agentstack add skill-flux-point-studios-cardano-agent-skills-cardano-cli-wallets-operator

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-flux-point-studios-cardano-agent-skills-cardano-cli-wallets-operator)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Cardano Cli Wallets Operator? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

cardano-cli-wallets-operator

> OPERATOR SKILL: This skill executes commands. It requires explicit human invocation and cannot be auto-triggered by the model.

When to use

  • When you need to actually execute wallet creation commands
  • After reviewing the guidance from cardano-cli-wallets

Operating rules (must follow)

  • Confirm network (mainnet/preprod/preview) before ANY execution
  • Always create a dedicated directory for wallet files
  • Set chmod 600 *.skey immediately after key generation
  • Show the user what will be executed before running
  • Verify each step succeeded before continuing

Execution workflow

Step 1: Confirm parameters

Network: [mainnet/preprod/preview]
Magic: [1 for preprod, 2 for preview, none for mainnet]
Wallet directory: [path]

Step 2: Create directory

mkdir -p  && cd 

Step 3: Generate keys (with confirmation)

# Payment keys
cardano-cli conway address key-gen \
  --verification-key-file payment.vkey \
  --signing-key-file payment.skey

# Stake keys
cardano-cli conway stake-address key-gen \
  --verification-key-file stake.vkey \
  --signing-key-file stake.skey

# Secure immediately
chmod 600 *.skey

Step 4: Build addresses

# 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  # adjust per network

Step 5: Verify and report

echo "=== Wallet Created ==="
echo "Base Address: $(cat base.addr)"
ls -la *.vkey *.skey *.addr

Safety / key handling

  • NEVER display .skey file contents
  • ALWAYS chmod 600 immediately after generation
  • For mainnet: strongly recommend offline generation
  • Verify directory permissions before proceeding

References

  • cardano-cli-wallets (guidance skill)
  • shared/PRINCIPLES.md

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.