> ## Documentation Index
> Fetch the complete documentation index at: https://mintlify.com/stratosphere-ve/ozone/llms.txt
> Use this file to discover all available pages before exploring further.

# Ozone: QEMU VM Manager for Stratosphere

> Ozone is Stratosphere's Go library for managing QEMU virtual machines — start/stop lifecycle, JSON config parsing, and typed resource accessors.

Ozone is the QEMU management layer powering Stratosphere's virtualization engine. It provides Go packages for starting and stopping `qemu-system-x86_64` instances, parsing and writing per-VM JSON configuration files, and reading or mutating individual VM resource properties (CPU, memory, network, disk) with a strongly-typed API.

<CardGroup cols={2}>
  <Card title="Introduction" icon="book-open" href="/introduction">
    Learn what Ozone does and how its packages fit together.
  </Card>

  <Card title="Quickstart" icon="rocket" href="/quickstart">
    Get Ozone integrated and your first VM running in minutes.
  </Card>

  <Card title="VM Configuration" icon="file-code" href="/vm-config/overview">
    Understand the JSON config schema and how to read and write VM configs.
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/vmparser">
    Full reference for every exported function and type in Ozone.
  </Card>
</CardGroup>

## Key Capabilities

<CardGroup cols={2}>
  <Card title="VM Lifecycle" icon="power-off" href="/qemu/start">
    Start and stop QEMU machines via `qemu-system-x86_64` with QMP control over TCP.
  </Card>

  <Card title="Config Parsing" icon="magnifying-glass" href="/vm-config/reading">
    Parse VM JSON config files into typed Go structs with a single function call.
  </Card>

  <Card title="Config Writing" icon="pen-to-square" href="/vm-config/writing">
    Update individual resource fields without overwriting unrelated config sections.
  </Card>

  <Card title="Typed Resource Access" icon="layer-group" href="/api-reference/vmparser">
    Dedicated getter functions for every VM resource: CPU, memory, network, and disk.
  </Card>
</CardGroup>
