meilisearch-admin
Queries Meilisearch status APIs to provide diagnostic information on index health, task progress, and configuration.
Install
mkdir -p .claude/skills/meilisearch-admin && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/7925" && unzip -o skill.zip -d .claude/skills/meilisearch-admin && rm skill.zipInstalls to .claude/skills/meilisearch-admin
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Check Meilisearch index status, tasks, health, and settings. Use for debugging search issues, monitoring indexing tasks, and inspecting index configuration. Read-only admin operations.Key capabilities
- →Fetch index health status
- →Audit task queues by status
- →List searchable and filterable attributes
- →Extract specific task execution details
How it works
Executes read-only queries against the Meilisearch HTTP API endpoints via a node script.
Inputs & outputs
When to use meilisearch-admin
- →Checking Meilisearch index health
- →Monitoring background indexing tasks
- →Inspecting searchable and filterable attributes
About this skill
Meilisearch Admin
Use this skill for admin operations on Meilisearch - checking status, monitoring tasks, and inspecting index settings.
Running Commands
node .claude/skills/meilisearch-admin/query.mjs <command> [options]
Commands
| Command | Description |
|---|---|
health | Check if Meilisearch is healthy |
stats | Get overall stats and list indexes |
task-summary | Task count breakdown by status |
tasks | List recent tasks |
task <id> | Get details of a specific task |
indexes | List all indexes |
index <name> | Get index stats |
index <name> settings | Get all index settings |
index <name> filterable | Get filterable attributes |
index <name> sortable | Get sortable attributes |
index <name> searchable | Get searchable attributes |
Options
| Flag | Description |
|---|---|
--feed | Use feed/metrics search (METRICS_SEARCH_HOST) instead of main search |
--status <s> | Filter tasks by status: enqueued, processing, succeeded, failed |
--limit <n> | Limit results (default: 20) |
--json | Output raw JSON |
Examples
# Check health
node .claude/skills/meilisearch-admin/query.mjs health
# Get overall stats
node .claude/skills/meilisearch-admin/query.mjs stats
# Task count summary by status
node .claude/skills/meilisearch-admin/query.mjs task-summary
# Check failed tasks
node .claude/skills/meilisearch-admin/query.mjs tasks --status failed
# Check processing tasks
node .claude/skills/meilisearch-admin/query.mjs tasks --status processing --limit 50
# Get specific task details
node .claude/skills/meilisearch-admin/query.mjs task 2030419
# List all indexes
node .claude/skills/meilisearch-admin/query.mjs indexes
# Get index stats
node .claude/skills/meilisearch-admin/query.mjs index models_v9
# Get filterable attributes for an index
node .claude/skills/meilisearch-admin/query.mjs index metrics_images_v1 filterable
# Use feed search instead of main
node .claude/skills/meilisearch-admin/query.mjs --feed stats
node .claude/skills/meilisearch-admin/query.mjs --feed tasks --status failed
Search Instances
The project has two Meilisearch instances:
| Instance | Env Variables | Purpose |
|---|---|---|
| Main Search | SEARCH_HOST, SEARCH_API_KEY | Primary search (models, users, etc.) |
| Feed/Metrics | METRICS_SEARCH_HOST, METRICS_SEARCH_API_KEY | Image feed and metrics search |
Use --feed flag to target the feed/metrics instance.
Common Indexes
Main Search
models_v9- Model searchusers_v3- User searcharticles_v3- Article search
Feed/Metrics Search
metrics_images_v1- Image feed with metrics
Debugging Tips
# Check if indexing is stuck
node .claude/skills/meilisearch-admin/query.mjs tasks --status processing
# Find failed indexing tasks
node .claude/skills/meilisearch-admin/query.mjs tasks --status failed
# Get error details for a failed task
node .claude/skills/meilisearch-admin/query.mjs task <taskId>
# Check if an index is still indexing
node .claude/skills/meilisearch-admin/query.mjs index <indexName>
When not to use it
- →Writing data or modifying indexes
- →Administering other search technologies
Prerequisites
Limitations
- →Read-only permissions
- →Cannot modify index configurations
How it compares
Provides a dedicated CLI interface for debugging Meilisearch internals instead of manually crafting curl requests.
Compared to similar skills
meilisearch-admin side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| meilisearch-admin (this skill) | 0 | 4mo | Review | Beginner |
| audit | 0 | 4mo | No flags | Intermediate |
| analyzing-logs | 14 | 27d | Review | Beginner |
| sqlite-inspector | 5 | 9mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by civitai
View all by civitai →You might also like
audit
senda-labs
Run complete system health audit of DQIII8 — checks DB integrity, agent performance, pipeline connections, error log, and services. Produces a scored Markdown report.
analyzing-logs
jeremylongshore
Analyze application logs to detect performance issues, identify error patterns, and improve stability by extracting key insights.
sqlite-inspector
mikopbx
Проверка консистентности данных в SQLite баз данных MikoPBX после операций REST API. Использовать при валидации результатов API, отладке проблем с данными, проверке связей внешних ключей или инспектировании CDR записей для тестирования.
sentry
openai
Use when the user asks to inspect Sentry issues or events, summarize recent production errors, or pull basic Sentry health data via the Sentry API; perform read-only queries with the bundled script and require `SENTRY_AUTH_TOKEN`.
redis-inspect
civitai
Inspect Redis cache keys, values, and TTLs for debugging. Supports both main cache and system cache. Use for debugging cache issues, checking cached values, and monitoring cache state. Read-only by default.
obsidian-incident-runbook
jeremylongshore
Troubleshoot Obsidian plugin failures with systematic incident response. Use when plugins crash, data is corrupted, or users report critical issues with your Obsidian plugin. Trigger with phrases like "obsidian crash", "obsidian plugin broken", "obsidian incident", "debug obsidian failure", "obsidian emergency".