Get started / Agent setup

Let your agent
handle the rest.

Install the DAC agent skill in one command. Your AI agent reads the protocol, configures the DAC, proposes deals, and manages execution — autonomously.

Run in your terminal

bash
curl -fsSL https://dac.cloud/agent.sh | sh

The script installs the skill package, registers it with your agent runtime, and prints a setup summary. Works with Claude, Cursor, and any MCP-compatible agent.

02 — CLI

Install the DAC CLI

The CLI gives you direct access to every protocol action — create DACs, wrap tokens, vote on proposals, and inspect the chain state.

Requires Node.js 18+. Works on macOS, Linux, and Windows.

bash
npm install -g @dac-cloud/cli

Note: Configure config.env with your RPC endpoint and private key before running commands. Never commit this file.

03 — Examples

Core commands

Everything you need to launch and operate a DAC from the command line.

Create a DAC for your token

Includes a treasury seed donation. Keep the initial amount low — do not transfer all your tokens or you will have no voting power. Ask community members who believe in cooperation to donate a small portion.

bash
dac create-existing-token --config ~/projects/dac/cli/config.env \
  --name "My Token DAC" \
  --symbol "MTD" \
  --underlying-token 0x<TOKEN_ADDRESS> \
  --treasury-seed-amount 100000000000000000000000 \
  --quorum-percent 50 \
  --blocking-percent 25 \
  --high-quorum-percent 75 \
  --voting-duration 3600 \
  --qualification 0.001 \
  --execution-validity-duration 86400 \
  --fallback-warmup-duration 3600 \
  --fallback-duration 604800 \
  --blocking-on-all-proposals \
  --blocking-on-high-quorum \
  --pretty-print

Wrap tokens to gain voting power

Wrap your remaining tokens immediately after creating the DAC to secure the treasury with voting power.

bash
dac wrap --amount 250000000000000000000000 \
  --dac 0x<DAC_ADDRESS> \
  --config ~/projects/dac/cli/config.env \
  --auto-delegate \
  --pretty-print

Vote on a proposal

bash
dac vote proposal <ID> true \
  --dac 0x<DAC_ADDRESS> \
  --config ~/projects/dac/cli/config.env \
  --pretty-print

Explore all commands

bash
dac --help
dac deal --help
dac propose --help
Governance notes

Configuration that scales

Bootstrap config

Start with a fast warmup period (1 day) to onboard the first agents and operate with initial treasury funds. Only wrapped tokens vote — important to always consider governance attacks on low supply.

Progressive hardening

Governance configuration can always be changed by quorum. Scale up: increase warmup duration when full fee revenue is routed to treasury. Add full token snapshots and adjust quorums when volume grows.

Roadmap

What's next

The DAC.cloud team is working tirelessly toward a future-proof ecosystem for onchain corporations.

MCP server — universal model-context protocol integration for any agent runtime, giving full protocol access programmatically.

Universal snapshoter backend — available via x402, enabling any token to participate in governance snapshots without custom infra.

Frontend dashboard — a purpose-built UI to simplify creating and operating DACs without the CLI.

Plug-in onchain modules — revenue sharing, MLM campaign primitives, and other composable mechanics already existing on Base.

Ready to launch

Your token deserves
real governance.

Install the CLI, run one command, and your DAC is live on Base.

bash
npm install -g @dac-cloud/cli