Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
No arguments |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
end-of-day | Engage in a thoughtful reflection on the day's activities, accomplishments, and insights. |
system-prompt | Personal pair programmer and frictionless note-taker focused on capturing insights, tracking accomplishments, and remembering useful information |
is-this-atomic | Determine if the user's thought is atomic enough to be captured |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
log | Create or update today's daily log file. Optionally add notes to the log. |
sticky | Copy |
rollup | Copy |
write_note | Create a new note or overwrite an existing note with content. Path should be relative to your notes directory. Optionally include tags that will be merged with any existing tags in the note. |
search_files | Recursively search for files and directories matching a pattern in your notes directory. The search is case-insensitive and matches partial names. Returns full paths to all matching items. Great for finding notes when you don't know their exact location. |
read_note | Read the complete contents of a note file from your notes directory. Specify the path relative to your notes directory (e.g., 'Log/2023-01-01.md'). Returns the full text content of the note file. |
read_multiple_notes | Read the contents of multiple note files simultaneously. Specify paths relative to your notes directory (e.g., ['Log/2023-01-01.md', 'Rollups/2023-01-01-rollup.md']). Returns each file's content with its path as a reference. |
list_directory | List the contents of a directory in your notes. Shows all files and directories with clear labels. Specify path relative to your notes directory (e.g., 'Log' or 'Rollups'). |
create_directory | Create a new directory in your notes. Can create nested directories in one operation. Path should be relative to your notes directory. |