capacities_save_to_daily_note
Save markdown text to today's daily note in a specific Capacities space. Use this tool to organize and store content efficiently within your knowledge management system.
Instructions
Add markdown text to today's daily note in a Capacities space
Input Schema
Name | Required | Description | Default |
---|---|---|---|
mdText | Yes | The markdown text to add to today's daily note | |
noTimestamp | No | If true, no time stamp will be added to the note | |
origin | No | Optional origin label for the content (only 'commandPalette' is supported) | |
spaceId | Yes | The UUID of the space to save to the daily note |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"mdText": {
"description": "The markdown text to add to today's daily note",
"maxLength": 200000,
"type": "string"
},
"noTimestamp": {
"description": "If true, no time stamp will be added to the note",
"type": "boolean"
},
"origin": {
"description": "Optional origin label for the content (only 'commandPalette' is supported)",
"enum": [
"commandPalette"
],
"type": "string"
},
"spaceId": {
"description": "The UUID of the space to save to the daily note",
"format": "uuid",
"type": "string"
}
},
"required": [
"spaceId",
"mdText"
],
"type": "object"
}