find
Retrieve best-matching tasks from your task store using a free-text query with hybrid retrieval (dense, sparse, keyword) fused by Reciprocal Rank Fusion.
Instructions
Read-only. Search the task store by free-text QUERY using hybrid retrieval (dense + sparse + keyword) fused via Reciprocal Rank Fusion. Returns an array of best-matching items (id, projectId, title, snippet, score) with provenance — which retrievers surfaced each. Use this for "what do I have about X". To find items like a KNOWN item instead, use similar. Read-only: never writes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Free-text search string, e.g. "auth retry logic" or "Q3 roadmap". Matched against titles and bodies. | |
| limit | No | Maximum number of results to return. Default 5, hard cap 50. | |
| explain | No | Attach a per-result ranking breakdown: for each retriever that surfaced a result, its rank and RRF contribution (1/(k+rank)), which sum to the fused score. Use to justify why a result ranked where it did. |