palinode_cluster_neighbors
Finds unlinked semantically related files by analyzing wiki content, ignoring existing wikilinks, to suggest new cross-links for wiki maintenance.
Instructions
Given a memory file path, find the top-K semantically related files that are NOT currently linked to or from it (no existing [[wikilink]] in either direction). Use during wiki-maintenance passes to surface implicit relationships that no wikilink yet captures — the LLM can then propose new cross-links. Preprocessing strips wikilink syntax and the auto-generated ## See also footer so notes linking the same entities don't false-positive as related.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| top_k | No | Maximum number of candidate files to return. Default 10. | |
| file_path | Yes | Relative file path (e.g. 'decisions/palinode-arch.md') to find unlinked semantic neighbours for. | |
| min_similarity | No | Minimum cosine similarity to surface (0.0–1.0). Default 0.70. |