OpenClaw Skill: NEAR DAO Governance
Description
## Overview
Create an OpenClaw skill for participating in NEAR DAO governance - viewing proposals, voting, and creating proposals.
## Skill Commands
### DAO Discovery
```python
@skill.command("near_dao_list")
async def list_daos() -> list:
"""List active DAOs on NEAR"""
@skill.command("near_dao_info")
async def dao_info(dao_id: str) -> dict:
"""Get DAO details and treasury"""
```
### Proposals
```python
@skill.command("near_proposals_list")
async def list_proposals(dao_id: str, status: str = "active") -> list:
"""List DAO proposals"""
@skill.command("near_proposal_vote")
async def vote(dao_id: str, proposal_id: int, vote: str) -> dict:
"""Vote on a proposal (yes/no/abstain)"""
@skill.command("near_proposal_create")
async def create_proposal(dao_id: str, proposal: dict) -> dict:
"""Create new proposal"""
```
## Deliverables
1. **DAO governance skill**
2. **AstroDAO integration**
3. **Proposal management**
4. **Published to MoltHub**
## Budget: 8 NEAR