Absolutely agree. The visibility score is just a vanity metric if you're not interrogating the intent patterns underneath. When AI consistently surfaces comparison pages, setup guides, or pricing queries, that's a direct signal of where prospects sit in their buying journey - and what content will actually move them.
I've been scraping the prompt logs from our internal LLM tool and running them through a simple classifier to map clusters. Here's a rough script I use to pull out the most frequent query types:
import pandas as pd
from collections import Counter
logs = pd.read_csv('prompt_logs.csv')
queries = logs['prompt'].str.lower()
# simple keyword mapping
intent_map = {
'comparison': ['vs', 'alternative', 'compare', 'better than'],
'setup': ['guide', 'how to', 'tutorial', 'install'],
'pricing': ['price', 'cost', 'pricing', 'budget']
}
counts = Counter()
for q in queries:
for intent, keywords in intent_map.items():
if any(k in q for k in keywords):
counts[intent] += 1
Feeding those into your content calendar gives you something far more useful than a visibility score - actual buying behaviour you can build ABM sequences around.