Notes

Notes gives each workspace a set of Markdown documents to use for scratch notes, task lists, or shared context for agents.

Creating and managing notes

Open the Notes panel to see the notes for the current workspace. From there you can:

  • Create a new note with the add button.
  • Rename a note by double-clicking its name.
  • Delete a note from its right-click menu.

Notes are scoped to the workspace directory, so each project keeps its own set.

Editing

Notes open in the Monaco editor, the same engine as regular files, with some of its settings tuned to suit Markdown. The Markdown preview toggle switches between the source and the rendered view. See Code Editor for the editor’s settings.

Agent access

Agents can read and write your notes through the Verne MCP server. The available tools are:

Tool What it does
notes_list List all notes in the workspace
notes_read Read the contents of a note
notes_create Create a new note
notes_write Overwrite a note’s contents
notes_append Append text to a note

Notes give you and your agents shared context: you write a brief, an agent picks it up and updates it with findings, and you read the result without digging through terminal output.

Next steps