find_duplicate_tasks
Check proposed task against existing open tasks using TF-IDF and cosine similarity to prevent redundant work.
Instructions
Check whether a proposed task is similar to existing open tasks (TF-IDF + cosine similarity). Call this before create_task to avoid redundant work.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | Proposed task content to check | |
| threshold | No | Similarity threshold 0-1 (default 0.6) |