Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From Arcaneum
Manages Qdrant collections for semantic search via arc CLI: create, list, info, verify integrity, export/import, and delete collections.
npx claudepluginhub cwensel/arcaneum --plugin arcHow this skill is triggered — by the user, by Claude, or both
Slash command
/arc:arc-collectionThis 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
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
# List all collections
arc collection list
arc collection list --verbose # Show type and vector details
arc collection list --json # JSON output
# Create collection
arc collection create MyCollection --type pdf # PDF collection (stella model)
arc collection create MyCollection --type code # Code collection (jina-code)
arc collection create MyCollection --type markdown # Markdown collection (stella)
arc collection create MyCollection --model stella # Explicit model
# View collection info
arc collection info MyCollection
arc collection info MyCollection --json
# List indexed items
arc collection items MyCollection
arc collection items MyCollection --json
# Verify integrity (fsck-like check)
arc collection verify MyCollection
arc collection verify MyCollection --project myrepo#main # Code collections
arc collection verify MyCollection --verbose --json
# Export collection
arc collection export MyCollection -o backup.arcexp
arc collection export MyCollection -o backup.jsonl --format jsonl
arc collection export MyCollection -o shareable.arcexp --detach # Portable
# Import collection
arc collection import backup.arcexp
arc collection import backup.arcexp --into RestoredCollection
arc collection import shareable.arcexp --attach /new/root/path
# Delete collection
arc collection delete MyCollection --confirm