From cardano-dev-skills
Guides Cardano on-chain governance under CIP-1694 and the Conway era for developers, DReps, SPOs, and ADA holders. Covers governance actions, voting, DRep registration, and tooling like GovTool and SanchoNet.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cardano-dev-skills:governance-guideThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
<!-- Documentation lookup path: ${CLAUDE_SKILL_DIR}/../../docs/sources/ -->
Help developers, DReps, SPOs, and ADA holders understand and participate in Cardano's on-chain governance system introduced by CIP-1694 in the Conway era.
connect-wallet skill)Ask the developer (if not already clear):
Search the bundled documentation for relevant content:
${CLAUDE_SKILL_DIR}/../../docs/sources/cips/ - CIP specifications (CIP-1694, CIP-95)${CLAUDE_SKILL_DIR}/../../docs/sources/sancho-net/ - SanchoNet governance testnet docs${CLAUDE_SKILL_DIR}/../../docs/sources/govtool/ - GovTool docsReference the CIP-1694 summary for detailed structure:
File: skills/governance/governance-guide/references/cip-1694-summary.md
Cardano governance has three pillars:
| Action | DRep vote | SPO vote | CC vote |
|---|---|---|---|
| Motion of no-confidence | Yes | Yes | No |
| New Constitutional Committee | Yes | Yes | No |
| Update Constitution | Yes | No | Yes |
| Hard fork initiation | Yes | Yes | Yes |
| Protocol parameter changes | Yes | No | Yes |
| Treasury withdrawal | Yes | No | Yes |
| Info action | Yes | Yes | Yes |
Integrating governance into a dApp:
Read governance state: Query current proposals, DRep list, voting results
Build governance transactions: Use CIP-95 wallet extensions
dRepRegistration certificatevotingProcedure in transaction bodyvoteDelegation certificateproposalProcedure in transaction bodyCIP-95 wallet integration: Extension to CIP-30 for governance
getRegisteredPubStakeKeys() -- get stake keysgetPubDRepKey() -- get DRep keySDK support:
.registerDRep({ drepCredential }), voting via .vote({ votingProcedures }), DRep delegation, proposals, and committee operationscardano-cli conway governance ...)Getting started as a DRep:
Tools for DReps:
SPO governance participation:
Participating in governance:
# Register as a DRep
cardano-cli conway governance drep registration-certificate \
--drep-verification-key-file drep.vkey \
--key-reg-deposit-amt 500000000 \
--out-file drep-reg.cert
# Create a vote
cardano-cli conway governance vote create \
--yes \
--governance-action-tx-id <tx-id> \
--governance-action-index 0 \
--drep-verification-key-file drep.vkey \
--out-file vote.json
# Query governance state
cardano-cli conway query gov-state
cardano-cli conway query drep-state --all-dreps
// Using Blockfrost
const proposals = await blockfrost.governanceProposals();
const dreps = await blockfrost.governanceDReps();
const votes = await blockfrost.governanceProposalVotes(proposalId);
# Using Koios
import requests
dreps = requests.get("https://api.koios.rest/api/v1/drep_list").json()
proposals = requests.get("https://api.koios.rest/api/v1/proposal_list").json()
// Using Mesh SDK
import { MeshTxBuilder } from "@meshsdk/core";
// DRep registration
const tx = new MeshTxBuilder({ fetcher, submitter });
tx.drepRegistrationCertificate(drepKeyHash, deposit);
// ... build, sign, submit
skills/governance/governance-guide/references/cip-1694-summary.md -- CIP-1694 structure and voting thresholdsProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub cardano-foundation/cardano-dev-skills --plugin cardano-dev-skills