palinode_topic_coverage
Check if a given topic phrase is already covered by any wiki page, returning a boolean and best match. Use before ingesting new content to avoid duplicates.
Instructions
Given a topic phrase (not a file), check whether any wiki page already covers it. Returns {covered: bool, best_match: str | null, similarity: float}. Use BEFORE ingesting new content to ask 'is this already covered?'. Different framing from palinode_dedup_suggest: takes a short topic phrase rather than full draft content, and answers the binary 'already covered?' question.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Topic phrase to check coverage for (e.g. 'machine learning deployment'). | |
| min_similarity | No | Minimum cosine similarity to count as 'covered' (0.0–1.0). Default 0.78. |