# H3RETIK Cloud - Disposable VPS and Agent Compute

> Canonical HTML: https://h1dr4.dev/h3retik
> Machine index: https://h1dr4.dev/llms.txt

H3RETIK Cloud provides disposable, scoped machines for agents and operators. A session is paid for a bounded time and action window, returns logs and artifacts, and destroys the runtime after expiry.

## Core lifecycle

1. Choose minutes, action budget, and location.
2. Generate a disposable receipt or request an x402 resource.
3. Pay Base USDC or use H1DR4 pricing when available.
4. Wait for receipt settlement and session activation.
5. Run authorized commands through the CLI, API, or MCP.
6. Preserve logs and artifacts, then allow the machine to expire.

## CLI

```bash
npm i -g @h1dr4/h3retik-cloud
h3retik-cloud rent --minutes 15 --actions 10 --location auto --asset USDC
h3retik-cloud exec --lane local --cmd "uname -a"
```

## Locations and lanes

- Locations: `auto`, `us`, `europe`, `asia`.
- Lanes: `web`, `local`, `osint`, `onchain`.
- Plugins can attach extra capabilities while preserving normal command access and disposal rules.
- Managed workers host a configured Hermes agent with a preset or custom objective, inference budget, logs, and spend accounting.

## Pricing

Dynamic session estimate:

`max(0.05, (minutes / 60) * 1.20 + actions * 0.03)`

Fixed x402 packages:

| Package | Window | Actions | Price |
| --- | ---: | ---: | ---: |
| Micro | 5 minutes | 3 | 0.19 USDC |
| Probe | 15 minutes | 10 | 0.60 USDC |
| Ops | 60 minutes | 50 | 2.70 USDC |
| Deep | 180 minutes | 150 | 8.10 USDC |

## Machine endpoints

- MCP: https://h1dr4.dev/h3retik/api/mcp
- Cloud API: https://h1dr4.dev/h3retik/api
- Dynamic x402 session: `POST https://h1dr4.dev/h3retik/api/x402/sessions`
- Fixed packages: append `/micro`, `/probe`, `/ops`, or `/deep`.
- OpenAPI: https://h1dr4.dev/openapi.json
- x402 discovery: https://h1dr4.dev/.well-known/x402
- Agent skill: https://h1dr4.dev/h3retik/skills/h3retik-agent.md
- Cloud API manual: https://h1dr4.dev/h3retik/docs/cloud-api.md

## Agent Lock

Agent Lock is a TTL-bound x402 coordination primitive for exactly-one execution. Check status for free, acquire a key for 0.0001 USDC, execute only when `acquired=true`, then release, renew, or let the key expire.

`POST https://h1dr4.dev/h3retik/api/x402/locks/acquire`
