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

Skill 05 Dao Governance

skill-vaquarkhan-web3-agent-skills-skill-05-dao-governance · by vaquarkhan

Manages DAO governance including proposals, voting, delegation, treasury management, and timelocks. Use when interacting with Governor contracts, Snapshot, or DAO treasuries.

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

Install

$ agentstack add skill-vaquarkhan-web3-agent-skills-skill-05-dao-governance

✓ 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-vaquarkhan-web3-agent-skills-skill-05-dao-governance)

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 Skill 05 Dao Governance? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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

  1. Draft — encode calls array (targets, values, calldatas)
  2. Submitpropose(targets, values, calldatas, description)
  3. Voting delay — wait votingDelay blocks
  4. Voting period — cast votes (for/against/abstain)
  5. Queue — if quorum met and majority for
  6. Timelock delay — wait timelock.delay()
  7. Executeexecute(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.startBlock snapshot
  • 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.md
  • references/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.

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.