// File Watcher Agent - Monitors file system changes agent FileWatcher { watch_paths: ["~/think_bigger_data"] ignore_patterns: [".git", "node_modules", "*.tmp"] on_file_created(file_path) { log("New file detected: " + file_path) trigger_processing(file_path) } on_file_modified(file_path) { log("File modified: " + file_path) update_index(file_path) } on_file_deleted(file_path) { log("File deleted: " + file_path) remove_from_index(file_path) } }