Source profileQuality 86/100Review permissions

AgriciDaniel/claude-obsidian/skills/wiki-retrieve/SKILL.md

wiki-retrieve

Build and query a vault-local contextual BM25 retrieval index with optional multilingual Nomic cosine reranking; use for retrieve, hybrid retrieval, BM25, rerank, contextual retrieval, chunk search, vault search, semantic search, find relevant passages, or retrieval diagnostics. Derived caches stay under .vault-meta, remote egress requires explicit consent, and unavailable reranking falls back deterministically.

Source repository stars
10,368
Declared platforms
0
Static risk flags
1
Last source update
2026-08-01
Source checked
2026-08-04

Decision brief

What it does—and where it fits

This extension derives search data from wiki/ into .vault-meta/. It never changes canonical notes. Always pass the selected vault explicitly.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/AgriciDaniel/claude-obsidian --skill "skills/wiki-retrieve"
    Safe inspection promptEditorial

    Inspect the Agent Skill "wiki-retrieve" from https://github.com/AgriciDaniel/claude-obsidian/blob/1c1bc49c03a685ee8f5d09c99efe52b42d6673f5/skills/wiki-retrieve/SKILL.md at commit 1c1bc49c03a685ee8f5d09c99efe52b42d6673f5. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Pipeline

      1. contextual-prefix.py splits pages on paragraph boundaries and stores the raw chunk plus a short page-level prefix. 2. bm25-index.py builds a local, standard-library BM25 index over the contextualized text. 3. retrieve.py selects BM25 candidates, optionally reranks them, rejec…

      contextual-prefix.py splits pages on paragraph boundaries and stores thebm25-index.py builds a local, standard-library BM25 index over theretrieve.py selects BM25 candidates, optionally reranks them, rejects
    2. 02

      Provision locally

      Preview first, then build synthetic prefixes without network egress:

      Preview first, then build synthetic prefixes without network egress:Chunk and index files are disposable runtime state. Incremental prefixing skips records whose chunk and page hashes still match. A complete scan removes surplus records for deleted pages, and the prefixer invalidates th…
    3. 03

      Contextual-prefix privacy

      Synthetic prefixes use only local frontmatter and page text. The Anthropic API and claude subprocess tiers can send page bodies off-machine and therefore require the user's explicit consent plus --allow-egress. Never infer consent from an API key or installed binary. Preview the…

      Synthetic prefixes use only local frontmatter and page text. The Anthropic API and claude subprocess tiers can send page bodies off-machine and therefore require the user's explicit consent plus --allow-egress. Never in…Remote Ollama endpoints also require explicit approval and --allow-remote-ollama; the default reranker accepts localhost only.
    4. 04

      Query

      For a strictly read-only lookup, use the prebuilt BM25 index:

      For a strictly read-only lookup, use the prebuilt BM25 index:For an explicitly requested rerank, omit --no-rerank. The default is Ollama's multilingual nomic-embed-text-v2-moe model (approximately 958 MB); the product never pulls it automatically. To use an already-installed, sma…Query input is bounded at 8,000 normalized characters and result counts must be between 1 and 1,000. Oversized queries and invalid limits fail with an actionable usage error instead of looking like an empty successful s…
    5. 05

      Integrity rules

      Accept only relative chunk and page paths whose resolved targets remain under

      Accept only relative chunk and page paths whose resolved targets remain underReject hashless legacy chunk records and require chunk-body, page, and indexReject absolute paths, symlink escapes, missing pages, mismatched chunk IDs,

    Permission review

    Static risk signals and limitations

    Runs scripts

    medium · line 35

    The documentation asks the agent to run terminal commands or scripts.

    python3 "$PREFIX" --vault "$VAULT" --all --no-llm --peek

    Runs scripts

    medium · line 36

    The documentation asks the agent to run terminal commands or scripts.

    python3 "$PREFIX" --vault "$VAULT" --all --no-llm

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score86/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars10,368SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    AgriciDaniel/claude-obsidian
    Skill path
    skills/wiki-retrieve/SKILL.md
    Commit
    1c1bc49c03a685ee8f5d09c99efe52b42d6673f5
    License
    MIT
    Collected
    2026-08-04
    Default branch
    main
    View the original SKILL.md

    Retrieve relevant passages

    This extension derives search data from wiki/ into .vault-meta/. It never changes canonical notes. Always pass the selected vault explicitly.

    Resolve the installed product root from this skill's own location, not from the vault or current working directory:

    PRODUCT_ROOT=/absolute/path/to/installed/claude-obsidian
    PREFIX="$PRODUCT_ROOT/scripts/contextual-prefix.py"
    BM25="$PRODUCT_ROOT/scripts/bm25-index.py"
    RETRIEVE="$PRODUCT_ROOT/scripts/retrieve.py"
    RERANK="$PRODUCT_ROOT/scripts/rerank.py"
    test -f "$PREFIX" && test -f "$BM25" && test -f "$RETRIEVE" && test -f "$RERANK"
    

    Pipeline

    1. contextual-prefix.py splits pages on paragraph boundaries and stores the raw chunk plus a short page-level prefix.
    2. bm25-index.py builds a local, standard-library BM25 index over the contextualized text.
    3. retrieve.py selects BM25 candidates, optionally reranks them, rejects invalid records, deduplicates by page, and returns paths and snippets.
    4. The caller reads the returned pages and performs synthesis; retrieval output is not itself evidence.

    Provision locally

    Preview first, then build synthetic prefixes without network egress:

    python3 "$PREFIX" --vault "$VAULT" --all --no-llm --peek
    python3 "$PREFIX" --vault "$VAULT" --all --no-llm
    python3 "$BM25" --vault "$VAULT" build
    python3 "$RETRIEVE" --vault "$VAULT" "wiki" --top 1 --no-rerank --explain
    

    Chunk and index files are disposable runtime state. Incremental prefixing skips records whose chunk and page hashes still match. A complete scan removes surplus records for deleted pages, and the prefixer invalidates the BM25 index before changing its chunk set so a mixed stale index is not served. Prefix and BM25 build operations share the vault-wide mutation lock with every other writer; a busy vault fails closed instead of publishing a partial index.

    Contextual-prefix privacy

    Synthetic prefixes use only local frontmatter and page text. The Anthropic API and claude subprocess tiers can send page bodies off-machine and therefore require the user's explicit consent plus --allow-egress. Never infer consent from an API key or installed binary. Preview the scope first and state which provider will receive what data.

    Remote Ollama endpoints also require explicit approval and --allow-remote-ollama; the default reranker accepts localhost only.

    Query

    For a strictly read-only lookup, use the prebuilt BM25 index:

    python3 "$RETRIEVE" --vault "$VAULT" "$QUERY" --top 5 --no-rerank --explain
    

    For an explicitly requested rerank, omit --no-rerank. The default is Ollama's multilingual nomic-embed-text-v2-moe model (approximately 958 MB); the product never pulls it automatically. To use an already-installed, smaller, English-oriented v1.5 model, pass --model nomic-embed-text explicitly. Nomic models use search_query: for the query and search_document: for candidate text. Nomic v2 has a 512-token input context and Ollama truncates longer embedding inputs by default; BM25 still scores the complete chunk. Embeddings are cached by exact model, input scheme, and hash of the exact prefixed input. A missing local Ollama service, missing selected model, unusable vector, or any candidate embedding failure falls back for the complete result set to the original BM25 order; it never mixes cosine and BM25 score scales.

    Query input is bounded at 8,000 normalized characters and result counts must be between 1 and 1,000. Oversized queries and invalid limits fail with an actionable usage error instead of looking like an empty successful search. An untagged model request matches only the installed untagged name or its :latest alias; select any other tag explicitly.

    Use direct diagnostics when needed:

    python3 "$BM25" --vault "$VAULT" stats
    python3 "$BM25" --vault "$VAULT" query "$QUERY" --top 10
    python3 "$RERANK" --vault "$VAULT" "$QUERY" --peek
    python3 "$RERANK" --vault "$VAULT" "$QUERY" --model nomic-embed-text --peek
    

    Integrity rules

    • Accept only relative chunk and page paths whose resolved targets remain under $VAULT/.vault-meta/chunks/ and $VAULT/wiki/ respectively.
    • Reject hashless legacy chunk records and require chunk-body, page, and index hashes to match before a cached record can be built or served.
    • Reject absolute paths, symlink escapes, missing pages, mismatched chunk IDs, changed page hashes, and stale index/chunk hash pairs.
    • Rerank the full candidate set, then deduplicate by page, then apply --top.
    • An empty index is an honest no-result state. A missing or corrupt index makes retrieve.py exit 10 with a stable rebuild command; callers fall back to the standard vault query/text-search path and do not fabricate matches.
    • Do not cite benchmark percentages unless a reproducible vault-specific benchmark produced them.

    Checkpoint

    Observe cache readiness and privacy boundaries, think about whether lexical or semantic ranking is needed, verify returned paths and source freshness, and grow by measuring retrieval misses against a maintained local query set.