Cursor10x Memory System

MIT License
109

trackActiveFile

Monitor and log user interactions with files, such as opening, editing, or closing, to maintain context awareness and enhance workflow efficiency in development environments.

Instructions

Tracks an active file being accessed by the user

Input Schema

NameRequiredDescriptionDefault
actionYesAction performed on the file (open, edit, close, etc.)
filenameYesPath to the file being tracked
metadataNoOptional metadata for the file

Input Schema (JSON Schema)

{ "properties": { "action": { "description": "Action performed on the file (open, edit, close, etc.)", "type": "string" }, "filename": { "description": "Path to the file being tracked", "type": "string" }, "metadata": { "additionalProperties": true, "description": "Optional metadata for the file", "type": "object" } }, "required": [ "filename", "action" ], "type": "object" }
ID: 5ngi6jjarl