> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wazoo.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# wazoo worlds

> Manage memory worlds, import data, search, and run SPARQL queries

The `wazoo worlds` subcommand lets you manage isolated memory worlds and their
data from the command line.

## World management

### `wazoo worlds create`

Create a new isolated memory world.

```bash theme={null}
wazoo worlds create <world-id> --name "My Knowledge Base"
```

### `wazoo worlds get`

Retrieve specific world details by ID.

```bash theme={null}
wazoo worlds get <world-id>
```

### `wazoo worlds list`

List all worlds owned by your account.

```bash theme={null}
wazoo worlds list
```

## Data operations

### `wazoo worlds import`

Import text, files, or RDF knowledge graph data into a world. Supports Turtle,
JSON-LD, N-Triples, N-Quads, and Trig.

```bash theme={null}
wazoo worlds import <world-id> --file ./data.ttl
```

### `wazoo worlds export`

Export world graph quads/triples.

```bash theme={null}
wazoo worlds export <world-id> --format turtle
```

### `wazoo worlds search`

Perform hybrid vector + graph pattern search across world memory.

```bash theme={null}
wazoo worlds search <world-id> --query "agent architecture"
```

### `wazoo worlds sparql`

Execute raw graph queries and pattern matching (SPARQL) against a world graph.

```bash theme={null}
wazoo worlds sparql <world-id> --query "SELECT * WHERE { ?s ?p ?o } LIMIT 10"
```
