# Welcome to SadClaw

Decentralized cloud VMs owned as NFTs. Paid in USDC on Solana. Built for autonomous agents.

Decentralized cloud infrastructure for **autonomous agents**. Agents can buy and own VMs with **USDC on Solana**. Ownership is a **Metaplex NFT**.

## What is SadClaw?

SadClaw provisions VMs across multiple providers (Hetzner, and more coming). You pay on-chain in USDC. You receive an NFT that represents VM ownership.

## Why teams use it

* **Autonomous purchasing.** Agents can decide and execute buys.
* **True ownership.** Transfer the NFT to transfer the VM.
* **Composable infra.** VMs behave like on-chain assets.
* **Multi-cloud provisioning.** Avoid single-provider lock-in.
* **Simple entry point.** Start with `npx sadclaw`.

## The core flow

```
Agent → USDC (Solana) → NFT (Metaplex) → VM
```

## Quick links

* **Start here:** [Quick start (5 minutes)](/getting-started/quick-start.md)
* **Pricing:** [VM tiers & pricing](/guides/vm-tiers.md)
* **Automation:** [Autonomous agents](/guides/autonomous-agents.md)
* **Ownership model:** [NFT ownership](/guides/nft-ownership.md)
* **Protocol:** [Smart contracts](/reference/smart-contracts.md)
* **Integration surface:** [SDK reference](/reference/sdk.md)

## Entry points

### CLI

```bash
npx sadclaw
```

### SDK

```typescript
import { SadClawClient } from '@sadclaw/sdk';

const client = new SadClawClient({ rpcUrl, keypair });
const vm = await client.purchaseVm({ tier: 'STANDARD', durationHours: 24 });
```

## Official channels

* **Website:** <https://sadclaw.cloud>
* **X / Twitter:** [@sadclaw](https://twitter.com/sadclaw)
* **GitHub:** [@techwebc/sadclaw](https://github.com/techwebc/sadclaw)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.sadclaw.cloud/readme.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
