> ## 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.

# CLI Reference

> CLI commands, flags, and arguments

The Worlds CLI (Command Line Interface) allows you to interact with the Worlds
engine securely from your terminal.

## Installation

Install the canonical CLI globally via JSR.

<CodeGroup>
  ```bash deno theme={null}
  deno install -Ar --name worlds jsr:@wazoo/worlds-cli
  ```

  ```bash npm theme={null}
  npx jsr add --global @wazoo/worlds-cli
  ```

  ```bash bun theme={null}
  bunx jsr add --global @wazoo/worlds-cli
  ```
</CodeGroup>

## Core management

* [worlds create](./create.mdx): create a new isolated world
* [worlds get](./get.mdx): retrieve specific world details
* [worlds list](./list.mdx): list all available worlds
* [worlds update](./update.mdx): modify world configuration
* [worlds delete](./delete.mdx): permanently delete a world

## Data operations

* [worlds import](./import.mdx): inject RDF knowledge into a world
* [worlds export](./export.mdx): export a world's graph to disk

## Query & interaction

* [worlds search](./search.mdx): perform semantic and keyword searches
* [worlds sparql](./sparql.mdx): execute raw SPARQL queries against the graph
* [worlds chat](./chat.mdx): interact conversationally with a world
