suggest_links
Find relevant notes to link within your Obsidian vault by analyzing content relationships and suggesting connections based on your current note's context.
Instructions
Suggest related notes for linking
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum suggestions (default: 5) | |
path | Yes | Path to the note | |
vault | Yes | Vault name |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum suggestions (default: 5)",
"type": "number"
},
"path": {
"description": "Path to the note",
"type": "string"
},
"vault": {
"description": "Vault name",
"type": "string"
}
},
"required": [
"vault",
"path"
],
"type": "object"
}