built intent scoring into my SaaS pipeline, changed how I think about lead quality
started with manual monitoring. checking subreddits where my target users posted, looking for threads with real buying signal. worked but did not scale. missing too much.
built a basic pipeline. Reddit API for data collection, keyword filtering for initial pass, embedding based scoring for intent classification. the output is a ranked feed of posts ordered by how likely someone is actually looking to buy something versus just talking about a problem.
the classification part is harder than it looks. short informal text is noisy. someone describing a frustration and someone actively evaluating tools can look similar on the surface. the model needs enough labeled examples to tell the difference reliably.
once the scoring was stable the quality of outreach changed. not more volume. better targeting. the conversations that came from high intent posts were different from cold outreach. context already existed, the person had described their situation, the reply could be specific.
for a solo founder the build time was reasonable. the ongoing infrastructure is lightweight. the harder part was getting the intent model precise enough to trust.
curious whether others are doing something similar or still doing this manually.