create_zettel
Creates a new atomic knowledge note in a markdown vault, capturing one insight with title, optional source, body, and connections. Returns the created note's file path.
Instructions
Create a new zettel (atomic knowledge note).
Zettels are stored in the Zettel/ directory (or as configured by the vault's type definition). Each zettel captures a single atomic insight.
Args: title: Title of the zettel (the atomic insight). short_title: Short slug for the filename (e.g. "attention-mechanism"). source: Optional source reference as a wikilink (e.g. "[[literature-note]]"). body: Optional body text elaborating on the insight. connections: Optional list of related note wikilinks (e.g. ["[[note-1]]", "[[note-2]]"]). extra_vars: Optional dictionary of additional template variables.
Returns: Result of the creation including the file path.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | ||
| title | Yes | ||
| source | No | ||
| extra_vars | No | ||
| connections | No | ||
| short_title | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |