Install
$ agentstack add skill-flux-point-studios-cardano-agent-skills-cardano-cli-staking-operator ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →About
cardano-cli-staking-operator
> OPERATOR SKILL: Executes staking operations that modify on-chain state. Requires explicit human invocation.
When to use
- When ready to register stake key, delegate, or withdraw rewards
- After reviewing guidance from
cardano-cli-staking
Operating rules (must follow)
- Confirm network and pool ID before delegation
- Verify stake key registration status before operations
- REQUIRE explicit confirmation before any certificate submission
- Show deposit/fee costs before proceeding
Pre-flight checklist
[ ] Network: ___________
[ ] Stake key files exist and are correct
[ ] Payment key for fees available
[ ] Pool ID verified (for delegation)
[ ] Current rewards balance checked
Execution workflow
Check stake status first
cardano-cli conway query stake-address-info \
--testnet-magic 1 \
--address $(cat stake.addr)
Register stake key (if not registered)
# Create registration certificate
cardano-cli conway stake-address registration-certificate \
--stake-verification-key-file stake.vkey \
--out-file stake-reg.cert
# Build tx with certificate
cardano-cli conway transaction build \
--testnet-magic 1 \
--tx-in # \
--change-address \
--certificate-file stake-reg.cert \
--out-file tx.unsigned
# Sign with BOTH payment and stake keys
cardano-cli conway transaction sign \
--tx-file tx.unsigned \
--signing-key-file payment.skey \
--signing-key-file stake.skey \
--testnet-magic 1 \
--out-file tx.signed
# Submit (CONFIRM FIRST)
cardano-cli conway transaction submit \
--testnet-magic 1 \
--tx-file tx.signed
Delegate to pool
# Create delegation certificate
cardano-cli conway stake-address stake-delegation-certificate \
--stake-verification-key-file stake.vkey \
--stake-pool-id \
--out-file delegation.cert
# Build, sign (payment + stake), submit
# ... same pattern as registration
Withdraw rewards
# Check rewards balance first
cardano-cli conway query stake-address-info \
--testnet-magic 1 \
--address $(cat stake.addr)
# Build withdrawal tx
cardano-cli conway transaction build \
--testnet-magic 1 \
--tx-in # \
--withdrawal $(cat stake.addr)+ \
--change-address \
--out-file tx.unsigned
# Sign with BOTH keys and submit
Safety / key handling
- Verify pool ID from multiple sources before delegating
- Double-check reward withdrawal amounts
- Keep certificates for records
- Registration deposit is refundable on de-registration
References
cardano-cli-staking(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.
- Author: Flux-Point-Studios
- Source: Flux-Point-Studios/cardano-agent-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.