From codixing
Set up Codixing code retrieval engine for the current project. Installs the binary and indexes the codebase.
How this skill is triggered — by the user, by Claude, or both
Slash command
/codixing:codixing-setupThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Set up the Codixing code retrieval engine for the current project.
Set up the Codixing code retrieval engine for the current project.
codixing --version
If this fails, install:
curl -fsSL https://codixing.com/install.sh | sh
Or via npm:
npx -y codixing-mcp --version
Look for a .codixing/ directory in the project root. If it exists, skip to step 4.
codixing init .
If the user passed --embeddings or --model:
codixing init . --model $1
This requires ONNX Runtime at ~/.local/lib/libonnxruntime.dylib (macOS) or ~/.local/lib/libonnxruntime.so (Linux).
Test the index with a search:
codixing search "main entry point" --limit 3
Suggest the user try:
codixing search "query" for finding codecodixing symbols Name for symbol lookupcodixing graph --map for architecture overview--embeddings: Enable semantic search with default model (bge-small-en)--model <name>: Choose embedding model (bge-small-en, bge-base-en, all-minilm-l6-v2)npx claudepluginhub ferax564/codixing --plugin codixingSets up and optimizes Cursor codebase indexing for @Codebase semantic search. Configures .cursorignore files, verifies status, and details embedding workflow.
Provides semantic code search and index management via the ccc CLI. Automatically initializes and refreshes the codebase index for relevant file retrieval.
Guides step-by-step onboarding to a new codebase using CocoSearch semantic search. Explores architecture, key modules, and code patterns.