zk_create_note
Generate and organize Zettelkasten notes with structured titles, content, types, and optional tags to enhance knowledge management and idea synthesis.
Instructions
Create a new Zettelkasten note. Args: title: The title of the note content: The main content of the note note_type: Type of note (fleeting, literature, permanent, structure, hub) tags: Comma-separated list of tags (optional)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
note_type | No | permanent | |
tags | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"title": "Content",
"type": "string"
},
"note_type": {
"default": "permanent",
"title": "Note Type",
"type": "string"
},
"tags": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Tags"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"title",
"content"
],
"title": "zk_create_noteArguments",
"type": "object"
}