Use cases

SadClaw enables new patterns for AI agents and decentralized infrastructure.

AI Agent Compute

Self-Provisioning Agents

Agents that need compute can acquire it themselves:

// Agent detects it needs to run a heavy task
if (task.requiresGPU || task.memoryGB > 8) {
  const vm = await sadclaw.purchaseVm({
    tier: 'LARGE',
    durationHours: 2,
  });

  // Run task on dedicated VM
  await runTaskOnVm(vm, task);

  // Clean up when done
  await sadclaw.destroyVm(vm.nftMint);
}

Agent Swarms

Multiple agents sharing infrastructure:

Compute Marketplace

Agents buying and selling compute time:

Development & Testing

Disposable Dev Environments

Spin up fresh environments for each feature branch:

CI/CD Runners

Self-hosted runners that scale:

Load Testing

Spin up multiple VMs for distributed load tests:

Decentralized Applications

DAO-Owned Infrastructure

DAOs can collectively own and manage infrastructure:

Decentralized Services

Run services with on-chain ownership:

  • API endpoints owned by NFTs

  • Databases with transferable access

  • Game servers as tradeable assets

Backup Infrastructure

Decentralized backup and redundancy:

Trading & Finance

VM Arbitrage

Buy VMs at low utilization, sell when demand spikes:

Compute Derivatives

Financial products based on compute:

  • Futures - Lock in compute prices

  • Options - Right to buy VMs at strike price

  • Swaps - Exchange compute commitments

Collateralized Lending

Use VMs as collateral:

Research & Education

Reproducible Research

Share compute environments as NFTs:

Educational Labs

On-demand computing labs for students:

Last updated