Profound Data Nodes: Agent nodes that pull your live AEO metrics (visibility scores, citation share, citation pages) directly from Answer Engine Insights into an agent workflow. These are the same numbers you see in the dashboard, but now they're inputs to an automated chain rather than something you read manually.
The Detection-Analysis-Delivery-Update Pattern: A reusable agent architecture: pull a stored baseline from the knowledge base, pull live data, compare them in an LLM, compose and deliver the output, then overwrite the baseline for next time. This is the same pattern used in the competitive pricing agent - different data source, same structure.
Before building the agent, create its first memory snapshot:
baseline.txtThis becomes "last week" for the agent's first run. Every subsequent run overwrites it automatically.
Visibility Score node:
Citation Domains node:
Node 1 - Knowledge Base Read: Pull baseline.txt from your performance knowledge base. Output label: baseline
Node 2 - Visibility Score (Profound Data node): Weekly interval, filtered to your platforms and topics. Captures current visibility across all topic/platform combinations.
Node 3 - Citation Domains (Profound Data node): Same filters. Captures current citation share data.
Node 4 - Diagnosis (Prompt LLM node): Receives three inputs: the baseline, this week's visibility scores, and this week's citation domains. Prompt instructs the LLM to compare week over week across visibility score and citation share, connect the dots between them, and diagnose what moved. No structured output needed here - this is a qualitative sense check, not a data pipeline. No recommendations, just diagnosis. Use a strong reasoning model (e.g., GPT-5) at low temperature.
Node 5 - Slack Writer (Prompt LLM node): Receives the diagnosis. Composes a single Slack message a marketer can read in 30 seconds. Should answer: did performance change, in which direction, driven by what, and is anything worth investigating? Use a writing-oriented model (e.g., Opus) with slightly higher creativity.
Node 6 - Slack Integration node: Sends the Slack message to your designated channel.
Node 7 - Upload to Knowledge Base: Takes this week's live visibility and citation data and overwrites the baseline file. Next week's run compares against this week's data.
Profound runs two types of prompts:
Sentiment prompts will always mention your brand, which inflates citation data. When pulling AEO data into agents, always filter to visibility prompts unless you're specifically analyzing sentiment.