Install
$ agentstack add skill-vaquarkhan-web3-agent-skills-skill-05-dao-governance ✓ 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
DAO Governance
When to Use
- Creating or voting on governance proposals
- Managing vote delegation
- Interacting with DAO treasuries (Gnosis Safe, timelocks)
- Analyzing proposal outcomes and quorum
- Configuring on-chain vs off-chain (Snapshot) governance
Prerequisites
- MCP:
blockchain-rpc-server,defi-protocol-server - Skills: skill-02, skill-09 (treasury compliance)
Workflow
1. Governance Frameworks
| Framework | Voting | Execution | |-----------|--------|-----------| | OpenZeppelin Governor | On-chain | TimelockController | | Compound Governor Bravo | On-chain | Timelock | | Snapshot | Off-chain (signed) | Multisig execution | | Aragon OSx | On-chain | Plugin-based |
2. Proposal Lifecycle
- Draft — encode calls array (targets, values, calldatas)
- Submit —
propose(targets, values, calldatas, description) - Voting delay — wait
votingDelayblocks - Voting period — cast votes (for/against/abstain)
- Queue — if quorum met and majority for
- Timelock delay — wait
timelock.delay() - Execute —
execute(targets, values, calldatas, descriptionHash)
3. Voting
governor.castVote(proposalId, support); // 0=against, 1=for, 2=abstain
governor.castVoteWithReason(proposalId, support, reason);
- Check voting power at
proposal.startBlocksnapshot - Delegate before snapshot block to activate voting power
- Use
getVotes(account, blockNumber)to verify power
4. Delegation
- Self-delegate to activate token voting power
- Delegate to trusted representative
- Monitor delegate voting history before delegating
5. Treasury Management
- Treasuries typically held in Gnosis Safe or TimelockController
- Large withdrawals require multi-sig + timelock
- Screen all outbound transfers via compliance MCP
- Diversify and report per DAO transparency standards
Analysis
For each proposal, report:
- Quorum required vs current votes
- For/against split and notable voters
- Impact of executable calls (token transfers, parameter changes)
- Timelock ETA if passed
References
references/governor-bravo.mdreferences/snapshot-integration.md
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: vaquarkhan
- Source: vaquarkhan/web3-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.