callumalpass_tasknotes/docs/examples/webhook-transforms/minimal-slack.json
callumalpass 0fb618b539 improve: add detailed error logging for webhook transform failures
- Add comprehensive error messages for transform file loading failures
- Include file path validation and existence checking
- Add function validation warnings for missing transform functions
- Provide step-by-step logging for transform execution
- Add minimal transform examples for Discord and Slack

Fixes silent failures that made debugging transform issues difficult.
Addresses issue #719 where users couldn't identify why transform scripts weren't loading.
2025-09-27 22:26:43 +10:00

14 lines
No EOL
297 B
JSON

{
"task.created": {
"text": "📝 New task: ${data.task.title}",
"channel": "#tasks"
},
"task.completed": {
"text": "✅ Completed: ${data.task.title}",
"channel": "#tasks"
},
"default": {
"text": "TaskNotes: ${event} event triggered",
"channel": "#general"
}
}