# Send Meilisearch to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "meilisearch",
    "name": "Meilisearch",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/meilisearch",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/meilisearch",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/meilisearch",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=meilisearch",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "meilisearch",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T11:33:54.856Z",
      "expiresAt": "2026-05-12T11:33:54.856Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=meilisearch",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=meilisearch",
        "contentDisposition": "attachment; filename=\"meilisearch-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "meilisearch"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/meilisearch"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/meilisearch",
    "downloadUrl": "https://openagent3.xyz/downloads/meilisearch",
    "agentUrl": "https://openagent3.xyz/skills/meilisearch/agent",
    "manifestUrl": "https://openagent3.xyz/skills/meilisearch/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/meilisearch/agent.md"
  }
}
```
## Documentation

### Index Configuration Traps

filterableAttributes and sortableAttributes must be declared BEFORE adding documents — adding later triggers full reindex
Changing any index setting triggers reindex — batch all setting changes together
Order of searchableAttributes affects ranking — put most important fields first, not alphabetical
displayedAttributes defaults to all — explicitly limit to reduce response size

### Indexing Pitfalls

Document updates are async — the API returns taskUid, must poll /tasks/{uid} for actual completion
Primary key inference fails on nested or array fields — always set primaryKey explicitly
Batch size affects indexing speed — 10-50MB batches optimal, not one document at a time
Updating one field requires sending the whole document — no true partial updates

### Typo Tolerance Issues

First character is never typo-tolerant — "tset" won't match "test", by design
Typo tolerance on IDs/codes causes false matches — disable per attribute with typoTolerance.disableOnAttributes
Min word length defaults: 1 typo at 5 chars, 2 typos at 9 chars — adjust if matching too aggressively

### Filtering Mistakes

Filters on undeclared filterableAttributes silently return empty — no error, just no results
Geo filtering requires _geo field with lat/lng — field name is hardcoded, can't customize
Filter syntax is NOT SQL — use TO for ranges (year 2020 TO 2024), not BETWEEN
Empty array in IN clause causes error — check array length before building filter

### Search Behavior

Default limit is 20, max is 1000 per request — no deep pagination, use filters to narrow
Multi-word queries match ANY word by default — use quotes for phrase matching
Highlighting only works on searchableAttributes — not on stored-only fields
Facets distribution counts include all matching docs — not affected by limit parameter

### Production Configuration

Master key MUST be set in production — without it, all endpoints are public
Create search-only API keys for frontend — never expose master key
Snapshots are the only backup method — schedule them, no continuous replication
No clustering — single node only, scale vertically with RAM

### Performance Realities

Index lives in memory-mapped files — RAM determines max index size
Payload limit is 100MB per request — split large imports into batches
Indexing blocks during settings update — queries still work but new docs queue
Task queue has no priority — large reindex blocks small document adds

### API Key Restrictions

Keys can restrict to specific indexes — use for multi-tenant isolation
Keys can have expiresAt — but no auto-rotation, must manage manually
Actions are granular — search, documents.add, indexes.create, settings.update, etc.
Invalid key returns 401, missing key on protected instance returns 401 — same error, check both
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T11:33:54.856Z
- Expires at: 2026-05-12T11:33:54.856Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/meilisearch)
- [Send to Agent page](https://openagent3.xyz/skills/meilisearch/agent)
- [JSON manifest](https://openagent3.xyz/skills/meilisearch/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/meilisearch/agent.md)
- [Download page](https://openagent3.xyz/downloads/meilisearch)