The Problem with Generic AI Prompt Bots
Many AI prompt-of-the-day bots flood Slack channels with isolated text. These prompts are often ignored because they lack context or a tangible output. A prompt without a demonstration of its results is merely a sentence, failing to inspire or educate users on effective AI generation. This approach misses the core value proposition: demonstrating what a prompt can actually achieve.
Designing an Effective Prompt Delivery System
The goal was to create a system that delivers not just a prompt, but also the video clip produced by that prompt. This approach aims to be more engaging and informative than simply listing text. The system needed to be accessible, requiring no API keys or complex setup for the end-user, focusing instead on the quality of the prompt-output pairing.
The n8n Workflow: A Six-Node Solution
The solution leverages n8n, a workflow automation tool, to build a robust and automated system. The entire workflow consists of just six nodes, minimizing complexity while maximizing functionality. Crucially, it operates without requiring any API keys or user credentials, making it universally accessible. The workflow is designed to run once a day, ensuring a consistent stream of content.

Node 1: Schedule Trigger
The workflow begins with a Schedule trigger, set to activate once every 24 hours. This ensures that a new prompt and its corresponding video are posted daily, maintaining a regular content cadence.
Node 2: Fetch Sitemap
The second node uses an HTTP Request to fetch the public sitemap.xml of the target website. This XML file serves as an index, providing links to all the individual prompt detail pages.
Node 3: Filter and Select Prompt
A Code node follows, processing the data from the sitemap. Its primary function is to filter the URLs, identifying those that point to specific prompt detail pages. From this filtered list, it selects one prompt using a simple modulo operation: day % total. This ensures that prompts are distributed evenly over time and that each day’s selection is deterministic based on the current day and the total number of available prompts.
Node 4: Fetch Prompt Page
Once a specific prompt page URL is selected, another HTTP Request node fetches the content of that page as plain text. This step retrieves the raw HTML source of the page containing the prompt details and its associated output.
Node 5: Extract Key Information
An HTML node then parses the fetched page content. It extracts critical pieces of information: the main heading (h1), the code blocks (pre tags) which typically contain the prompt itself, and the structured data embedded in JSON-LD script tags. JSON-LD is often used to provide machine-readable metadata about the page content, including details about the AI model or the prompt's parameters.
Node 6: Post to Slack
The final node posts the extracted information to a Slack channel. This includes the h1 heading, the prompt text from the pre blocks, and the video URL, which is derived from the JSON-LD data. This structured output ensures that users see the prompt alongside its visual result, fulfilling the initial requirement of the project.
Statistical Insights from 150 Prompts
Beyond the technical implementation, the project aimed to answer a more fundamental question: what makes an AI video prompt effective? By analyzing 150 prompts and their resulting videos, the developer sought to identify statistical patterns. The core hypothesis is that effective prompts are not random but possess certain characteristics that lead to better outputs. This empirical approach moves beyond guesswork and provides data-driven insights into prompt engineering for AI video generation.
The process involved manually counting and categorizing 150 prompts from various sources. This painstaking effort laid the groundwork for understanding the landscape of AI video prompting. The distribution of these prompts across different categories and their observed success rates (though not explicitly detailed in the excerpt, implied by the desire to understand what works) forms the basis of the statistical analysis.
The Unanswered Question: What Constitutes a "Good" Prompt?
While the workflow successfully automates the delivery of prompts and their outputs, the deeper question remains: what statistical properties define a prompt that consistently yields high-quality AI-generated videos? Is it the length, the specific keywords used, the inclusion of negative prompts, the structure, or a combination of these factors? The current setup provides the data, but a comprehensive statistical breakdown of prompt features versus video quality is the next frontier. This could involve analyzing prompt length, keyword density, the presence of specific stylistic instructions, and correlating these with objective or subjective measures of video output quality. Such an analysis would be invaluable for anyone looking to master AI video generation.
Implications for AI Content Creation
This project highlights a practical application of workflow automation for content creators and AI enthusiasts. By automating the discovery and dissemination of effective prompts, it lowers the barrier to entry for experimenting with AI video generation. For founders in the AI space, understanding the data behind successful prompts can inform the development of better prompt engineering tools and models. Creators can use this as a daily learning resource, observing how different prompts translate into visual outputs and refining their own techniques. The emphasis on pairing prompts with their results is a significant step toward making AI generation more transparent and learnable.
