- Complete planning documentation for 5-phase development - UI design specifications and integration - Domain architecture and directory templates - Technical specifications and requirements - Knowledge incorporation strategies - Dana language reference and integration notes
20 lines
530 B
Plaintext
20 lines
530 B
Plaintext
// 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)
|
|
}
|
|
} |