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

# search

> Search items using hybrid similarity

Executes a semantic hybrid search against the world's underlying vector index.

<ParamField path="--world" type="string" required>
  The unique system identifier of the target world. *Alias:* `-w`
</ParamField>

<ParamField path="--query" type="string" required>
  The free-text search string. *Alias:* `-q`
</ParamField>

<ParamField path="--limit" type="number">
  The maximum number of entities to return. Default is 10. *Alias:* `-l`
</ParamField>

<ParamField path="--subjects" type="string">
  Specifies IRIs to restrict the search context. Can be provided multiple times.
  *Alias:* `-s`
</ParamField>

<ParamField path="--predicates" type="string">
  Specifies IRIs of properties to restrict the search context. Can be provided
  multiple times. *Alias:* `-p`
</ParamField>

### Usage

```bash theme={null}
worlds search --world my-world --query "Acme Corp operations" --limit 5
```
