Stats
Actions
Tags
From Arcaneum
Manages MeiliSearch indexes: create, list, view items, verify health, export/import, and delete. Supports source-code, PDF, and markdown index types.
How this skill is triggered — by the user, by Claude, or both
Slash command
/arc:arc-indexesThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
# List all indexes
arc indexes list
arc indexes list --json
# Create index
arc indexes create MyIndex
arc indexes create MyIndex --type source-code # Code-optimized settings
arc indexes create MyIndex --type pdf-docs # PDF-optimized settings
arc indexes create MyIndex --type markdown-docs # Markdown-optimized settings
# View index info
arc indexes info MyIndex
arc indexes info MyIndex --json
# List indexed items
arc indexes items MyIndex
arc indexes items MyIndex --limit 50
arc indexes items MyIndex --json
# Verify index health
arc indexes verify MyIndex
arc indexes verify MyIndex --json
# Update index settings
arc indexes update-settings MyIndex --type source-code
# Export index
arc indexes export MyIndex -o backup.jsonl
arc indexes export MyIndex -o backup.jsonl --json
# Import index
arc indexes import backup.jsonl
arc indexes import backup.jsonl --into NewIndex
# Delete index
arc indexes delete MyIndex --confirm
code): Optimized for code search with language filteringpdf): Optimized for document search with page filteringmarkdown): Optimized for documentation with heading searchnpx claudepluginhub cwensel/arcaneum --plugin arcGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.