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

Cardano Cli Transactions Operator

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

Execute transaction builds and submits. Manual invoke only—requires explicit confirmation before submit.

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

Install

$ agentstack add skill-flux-point-studios-cardano-agent-skills-cardano-cli-transactions-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-transactions-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 Transactions Operator? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

cardano-cli-transactions-operator

> OPERATOR SKILL: This skill executes commands including transaction submission. Requires explicit human invocation.

When to use

  • When ready to build and submit a transaction
  • After reviewing guidance from cardano-cli-transactions

Operating rules (must follow)

  • Confirm network before ANY operation
  • Show full transaction details before signing
  • REQUIRE explicit "yes" confirmation before submit
  • Create tx bundle folder for reproducibility
  • Verify UTxO changes after submit

Pre-flight checklist

[ ] Network confirmed: ___________
[ ] Sender address verified
[ ] Recipient address verified (check first/last 8 chars)
[ ] Amount confirmed: ___________ lovelace
[ ] Signing key path confirmed
[ ] UTxO inputs selected

Execution workflow

Step 1: Setup tx bundle

TX_DIR="tx-$(date +%Y%m%d-%H%M%S)"
mkdir -p "$TX_DIR" && cd "$TX_DIR"

Step 2: Query UTxOs

cardano-cli conway query utxo \
  --address  \
  --testnet-magic 1 \
  --out-file utxos.json

Step 3: Fetch protocol parameters

cardano-cli conway query protocol-parameters \
  --testnet-magic 1 \
  --out-file pparams.json

Step 4: Build transaction

cardano-cli conway transaction build \
  --testnet-magic 1 \
  --tx-in # \
  --tx-out + \
  --change-address  \
  --out-file tx.unsigned

Step 5: Sign (show what's being signed)

echo "=== SIGNING TRANSACTION ==="
echo "Inputs: "
echo "Output:  receives  lovelace"
echo "Change: returns to "

cardano-cli conway transaction sign \
  --tx-file tx.unsigned \
  --signing-key-file  \
  --testnet-magic 1 \
  --out-file tx.signed

Step 6: Submit (REQUIRES CONFIRMATION)

⚠️  CONFIRM SUBMISSION ⚠️
Network: preprod
Sending: X ADA to addr_test1...
From: addr_test1...

Type 'yes' to submit:
cardano-cli conway transaction submit \
  --testnet-magic 1 \
  --tx-file tx.signed

Step 7: Verify

# Get tx hash
cardano-cli conway transaction txid --tx-file tx.signed

# Query recipient UTxO
cardano-cli conway query utxo \
  --address  \
  --testnet-magic 1

Safety / key handling

  • Never submit without explicit user confirmation
  • For mainnet: require double confirmation
  • Keep tx bundle for audit trail
  • Recommend small test tx first on mainnet

References

  • cardano-cli-transactions (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.