write_note
Create or update markdown notes to build a persistent semantic knowledge graph from conversations, storing all data in local files for full control.
Instructions
Create or update a markdown note. Returns a markdown formatted summary of the semantic content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
entity_type | No | note | |
folder | Yes | ||
project | No | ||
tags | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"title": "Content",
"type": "string"
},
"entity_type": {
"default": "note",
"title": "Entity Type",
"type": "string"
},
"folder": {
"title": "Folder",
"type": "string"
},
"project": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Project"
},
"tags": {
"default": null,
"title": "Tags"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"title",
"content",
"folder"
],
"type": "object"
}