diff options
| author | Adam Malczewski <[email protected]> | 2026-03-28 04:52:55 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-03-28 04:52:55 +0900 |
| commit | be2dee39e5bf907dfdd3462817203a08cf3c345f (patch) | |
| tree | 54861c738e8762d9313ec4431ea6f4464dec1900 /src/context/tools/batch-delete-file.json | |
| parent | 9ccf03b1172dec8c4b9ed2701fcff1935ae63b67 (diff) | |
| download | ai-pulse-obsidian-plugin-be2dee39e5bf907dfdd3462817203a08cf3c345f.tar.gz ai-pulse-obsidian-plugin-be2dee39e5bf907dfdd3462817203a08cf3c345f.zip | |
improve ai context
Diffstat (limited to 'src/context/tools/batch-delete-file.json')
| -rw-r--r-- | src/context/tools/batch-delete-file.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/context/tools/batch-delete-file.json b/src/context/tools/batch-delete-file.json new file mode 100644 index 0000000..f1e5e9a --- /dev/null +++ b/src/context/tools/batch-delete-file.json @@ -0,0 +1,25 @@ +{ + "id": "batch_delete_file", + "label": "Batch Delete Files", + "description": "Delete multiple files at once (requires approval).", + "friendlyName": "Batch Delete Files", + "requiresApproval": true, + "batchOf": "delete_file", + "definition": { + "type": "function", + "function": { + "name": "batch_delete_file", + "description": "Delete multiple files from the Obsidian vault in a single call. Files are moved to the system trash. If some files fail (e.g. not found), the operation continues with the remaining files and reports per-file results. All file paths must be exact vault-relative paths (from the vault context or get_current_note). This action requires user approval for the entire batch.", + "parameters": { + "type": "object", + "required": ["file_paths"], + "properties": { + "file_paths": { + "type": "string", + "description": "A JSON array of vault-relative file paths to delete. Example: [\"folder/note1.md\", \"folder/note2.md\"]" + } + } + } + } + } +} |
