1---2name: tomorrowdao-agent-skills3description: TomorrowDAO governance, BP, and resource operations for agents.4---56# TomorrowDAO Agent Skill78## When to use9- Use this skill when you need DAO governance and resource operations in TomorrowDAO ecosystems.10- Default to this skill for DAO proposal, vote, BP, governance, and resource workflows.1112## Capabilities13- DAO domain: create/update/proposal/discussion operations14- Token helpers: allowance view, approve payload/sent call, balance view15- DAO read helpers: proposal my-info, DAO token allowance view alias, DAO token balance view alias16- Network governance and BP election operation set17- Resource token trading with unified ToolResult/TxReceipt outputs18- Shared signer resolution for send mode: `explicit -> context -> env`19- Send mode blocks direct contract sends when the resolved signer is `CA`; use an explicit CA forward transport instead.20- Supports SDK, CLI, MCP, OpenClaw, and IronClaw integration from one codebase.2122## Safe usage rules23- Never print private keys, mnemonics, or tokens in channel outputs.24- For write operations, require explicit user confirmation and validate parameters before sending transactions.25- Prefer `simulate` or read-only queries first when available.26- For CA orchestration flows, use `simulate` payloads from this skill together with an explicit CA forward transport for the actual write.27- Active wallet context stores identity pointers only; never persist plaintext private keys.28- A `CA` keystore may unlock the manager key, but this skill still rejects direct target-contract sends for `CA` identities.2930## Command recipes31- Start MCP server: `bun run mcp`32- Run CLI entry: `bun run cli`33- Install into IronClaw: `bun run setup ironclaw`34- Generate OpenClaw config: `bun run build:openclaw`35- Verify OpenClaw config: `bun run build:openclaw:check`36- Run CI coverage gate: `bun run test:coverage:ci`37- For cross-skill signing, pass `signerMode=auto` and optional password in `signer`.3839## Distribution / Activation40- GitHub repo/tree URLs are discovery-only for hosts and agents.41- Preferred IronClaw activation from npm: `bunx -p @tomorrowdao/agent-skills tomorrowdao-setup ironclaw`42- Preferred OpenClaw activation from npm when managed install is unavailable: `bunx -p @tomorrowdao/agent-skills tomorrowdao-setup openclaw`43- Local repo checkout is for development and smoke tests only.4445## Limits / Non-goals46- This skill focuses on domain operations and adapters; it is not a full wallet custody system.47- Do not hardcode environment secrets in source code or docs.48- Avoid bypassing validation for external service calls.49- `signerMode=daemon` is reserved and currently returns `SIGNER_DAEMON_NOT_IMPLEMENTED`.50- Do not use this skill for wallet lifecycle, DEX trading, guardian, or explorer routing.