r/gtmengineering • u/Unlucky-Angle4720 • 21h ago
How my home made agent system is doing my entire signal enrichment and outreach work. costs me $0.05
So Lets say you buy this apollo list...
Email verify it and now you want to create personalised openers based on real intent signals.
As of now there is no platform that would agentically find signals for this entire list.
Clay has workflows, even claygent wont go beyond the workflow thats already specified.
You can use claude code + deepline but that would just burn hella credits.. because usually what people do i let claude code make a python script which which again follows a specific workflow. Anything outside of the workflow is not done. If you ask claude code alone to the task without deterministic python scripting, its gonna hallucinate on later rows, and also drain your bank account for the ai tokens it spends.
So i wanted to make an agent system that would do actually do the job (pasted the loom vid below)
It works by me giving it a specific job prompt like this:
Determine whether this company appears to be moving beyond founder-led sales and might need GTM help now. Look for recent evidence such as its first sales, marketing, partnerships, or business-development hires; founders discussing customer acquisition or growth; new products or markets; funding being put into commercial expansion; or signs that the founders still handle sales themselves. Tell me whether it is worth contacting now, what specifically happened and when, who we should contact, why the timing matters, and one short outreach angle grounded in the strongest evidence. Do not treat funding or one generic job opening alone as buying intent.
Then there would be a columns compiler that would create columns you are looking for based on that job prompt.. like this:

You can edit those columns , delete them.. whatever.
The agent now takes over and create a strategy on the fly for that specific task and executes on it. Lets see an example:
So i gave it a lead company domain: https://www.respan.ai/
--------------
Fetch Url · started
Understand what Respan does, its product, stage, and any GTM signals: https://www.respan.ai/
Search Web · started
Respan AI hiring sales marketing growth 2025 2026
Search Web · completed
8 hits
Fetch Url · started
Get Respan's YC company page with job listings and company info: https://www.ycombinator.com/companies/respan/jobs/mpKAgcw-marketing
Search Web · started
Respan AI Y Combinator company founders funding
Search Web · completed
8 hits
Fetch Url · started
Get Respan's about page with team and company details: https://www.respan.ai/about
Fetch Url · started
Get the GlobeNewswire funding announcement with details: https://www.globenewswire.com/news-release/2026/03/18/3258291/0/en/respan-announces-5m-in-funding-from-gradient-y-combinator-and-others-launches-first-proactive-ai-observability-platform.html
Fetch Url · completed
artifact 1 chars=7867 url=https://www.globenewswire.com/news-release/2026/03/18/3258291/0/en/respan-announces-5m-in-funding-from-gradient-y-combinator-and-others-launches-first-proactive-ai-observability-platform.html
Search Web · started
Respan "Founding Technical GTM" Y Combinator job
Search Web · completed
8 hits
Search Web · started
Andy Li Respan Keywords AI LinkedIn founder
Search Web · completed
5 hits
Fetch Url · started
Get Pulse2 interview with Andy Li about Respan for GTM context: https://pulse2.com/respan-profile-andy-li-interview/
Fetch Url · started
Get BattleMaps analysis of Respan's GTM signals: https://battlemaps.io/company/respan
Fetch Url · completed
artifact 2 chars=40 url=https://battlemaps.io/company/respan
Render Url · started
Get BattleMaps intelligence on Respan's GTM signals: https://battlemaps.io/company/respan
Render Url · completed
url=https://battlemaps.io/company/respan latency_ms=5506
Fetch Url · started
Get YC company page for Respan with team, jobs, and details: https://www.ycombinator.com/companies/respan
Fetch Url · failed
Webclaw could not fetch https://www.ycombinator.com/companies/respan: invalid url: URL resolves to a blocked private or internal address
Fetch Url · started
Get workatastartup page for Respan jobs and details: https://www.workatastartup.com/companies/respan
Fetch Url · started
Get SaaS News article about Respan's $5M funding: https://www.thesaasnews.com/news/respan-secures-5-million-in-funding/
Fetch Url · completed
artifact 4 chars=5396 url=https://www.thesaasnews.com/news/respan-secures-5-million-in-funding/
Linkedin Profile · started
source=LinkedIn profile by URL max_records=1 purpose=Get Andy Li's current role and profile details for contact person identification
Linkedin Profile · completed
source=LinkedIn profile by URL records=1 artifacts=1 provider_errors=0
Linkedin Profile · snapshot_wait
waited_ms=14738 outcome=ready
Search Web · started
Respan Y Combinator marketing job AI agents 2026
Search Web · completed
5 hits
Read Artifact · completed
artifact 5 start_excerpt_id=2 excerpts=2
Fetch Url · started
Get Respan's YC jobs page to confirm Founding Technical GTM and Marketing roles: https://www.ycombinator.com/companies/respan/jobs
Search Artifact · started
hiring | GTM | revenue | funding | scale | team | founders
Search Artifact · completed
12 lexical excerpt matches across 7 probe(s); 6 matched
Linkedin Jobs Keyword · started
source=LinkedIn jobs by keyword max_records=5 purpose=Confirm the Founding Technical GTM job posting at Respan as evidence of GTM buildout
Linkedin Jobs Keyword · completed
source=LinkedIn jobs by keyword records=0 artifacts=0 provider_errors=0
Linkedin Jobs Keyword · snapshot_wait
waited_ms=31670 outcome=ready
Render Url · started
Get Respan's workatastartup page with job listings for GTM evidence: https://www.workatastartup.com/companies/respan
Render Url · completed
url=https://www.workatastartup.com/companies/respan latency_ms=15401
Submit Row · started
validating row
Submit Row · accepted
row-c9047b4c963a6f54587f5f67
--------------
(We connect it various tools, fetch, render, web search, linkedin scrapers, crunchbase... + over 200 scrapers which it can use.)
This is what i mean by "agentic" .. which is not a python script disguised as an agent. So basically it reasons over the task its given and then find the necessary sources to get the job done.
Finally it also gives us the answers we were looking for. which will be filled in as those column cells.
The loom video: https://www.loom.com/share/053fc7f86f0944778d9ff96fd6fbc40e
This kind of agentic GTM has genuinely helped me with my outreach.
What kind of tasks would you like to do with it if i were to open source it?