zk_delete_note
Remove specific notes from the Zettelkasten knowledge management system using the note ID, ensuring efficient organization and maintenance of atomic notes.
Instructions
Delete a note. Args: note_id: The ID of the note to delete
Input Schema
Name | Required | Description | Default |
---|---|---|---|
note_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"note_id": {
"title": "Note Id",
"type": "string"
}
},
"required": [
"note_id"
],
"title": "zk_delete_noteArguments",
"type": "object"
}