Damon's AI logo
Damon's AI Experiments • Automations • Ideas

n8n Workflow Gallery

Visual catalog of n8n automations running on agent.damonsai.net — each entry includes a short description and a snapshot from the n8n editor.

KMMV VFR Flight Idea of the Day

Generates a daily VFR training scenario for flights out of KMMV in a Cessna 182A. A scheduled trigger selects a destination using AI, pulls METAR/TAF weather for origin and destination, builds a CFII-style risk and training discussion, and emails a formatted HTML briefing for review and practice.

n8n workflow diagram: KMMV VFR Flight Idea of the Day
Workflow: schedule → AI destination selection → weather fetch → CFII-style scenario writeup → email send.

KMMV VFR Flight Idea of the Day (Webhook + Schedule)

A dual-trigger version of the KMMV VFR flight-idea generator. On a daily schedule, it automatically selects a VFR training destination, pulls origin and destination METARs and TAFs from NOAA, and generates a CFII-style HTML briefing (GO / MARGINAL / NO-GO assessment, confidence meter, and disclaimers), which is emailed to the pilot. When triggered via webhook, the workflow accepts an optional destination override and returns the generated briefing directly using a Respond to Webhook node instead of sending email.

n8n workflow diagram: KMMV VFR Flight Idea of the Day (Webhook + Schedule)
Workflow: schedule OR webhook → optional destination override → METAR/TAF fetch → AI briefing → respond to webhook or email.

Dad Jokes to Webform

A lightweight webhook-driven workflow that generates a single original dad joke on demand. A webform submits a POST request to an n8n webhook, which calls an OpenAI GPT-4o node with a strict system prompt to ensure one clean, non-repetitive dad joke is returned. The response is normalized into a simple JSON payload and immediately sent back to the browser using a Respond to Webhook node with CORS headers enabled.

n8n workflow diagram: Dad Jokes to Webform
Workflow: webhook POST → OpenAI dad joke generation → field mapping → JSON response to browser.

DIA Bot – Simple Chat Bot (Chat Trigger)

A simple interactive chat bot built with n8n’s Chat Trigger + AI Agent nodes. The chat opens with a friendly greeting (“DIA Bot”, nickname “Deb”), then routes messages through an OpenAI chat model with short-term conversational memory. The agent can search the web using SerpAPI when it needs fresh information, and it also exposes internal tools (like calling your Dad Jokes workflow) so the bot can execute actions—not just respond with text.

n8n workflow diagram: DIA Bot – Simple Chat Bot
Workflow: chat trigger → AI Agent (OpenAI + memory) → optional SerpAPI web search → optional internal tool calls (e.g., Dad Jokes) → chat response.