Search across collections
Searches indexed content using semantic vector search or full-text keyword matching across collections.
/plugin marketplace add cwensel/arcaneum/plugin install arc@arcaneum-marketplacesemantic "query" --collection NAMESearch your indexed content using semantic search (most common) or full-text search.
Quick Start - Most Common Usage:
arc search semantic "your query here" --collection CollectionName
IMPORTANT: The subcommand (semantic or text) comes BEFORE the query.
Subcommands (required):
semantic: Vector-based semantic search (Qdrant) - use --collectiontext: Keyword-based full-text search (MeiliSearch) - use --indexExamples:
# Semantic search (most common)
/arc:search semantic "identity proofing" --collection Standards
/arc:search semantic "authentication logic" --collection MyCode --limit 5
# Full-text keyword search
/arc:search text "def authenticate" --index MyCode-fulltext
Common Options:
Semantic Search Options:
Full-Text Search Options:
Execution:
arc search $ARGUMENTS
When to Use Each:
Semantic Search (vector-based):
Full-Text Search (keyword-based):
Result Format:
Both commands show:
Related Commands:
Implementation: