Perfios buying intent
18 tracked signals — top 10 topics below — Engineering and Sales are carrying most of it.
Attention by team
taxonomy_intent_rollup × social_profile.roleEvery tracked signal from a Perfios employee, placed by the team they sit in and the theme they engaged with. Darker means more concentrated attention.
Topics being researched
30-day windowAll tracked topics, ranked by signal volume. Confidence is the classifier's certainty that the signal belongs to this topic.
8d ago
22d ago
7d ago
8d ago
22d ago
22d ago
22d ago
8d ago
8d ago
22d ago
Need intent for a specific topic or industry?
We track the full taxonomy across every account in the graph — including themes not shown on this page.
Who to contact at Perfios
verified title on filePeople at Perfios whose own activity produced these signals. Names are withheld pending a consent decision; titles, seniority and topic are real and free to browse.
Top accounts researching Perfios
names withheld on the public pageCompanies whose people mention Perfios in their own activity. Account names are withheld here; not yet classified as implementation partner vs. genuine prospective buyer.
No buyer signal yet for this account
Nobody in the graph is currently discussing this company by name in a way we can attribute to a specific employer.
Buyer profile
company size · seniorityHow big those accounts are, and who inside them is senior enough to matter. Competitor products still not yet computed for this account.
What's been said
public posts mentioning PerfiosReal public activity that surfaced Perfios in a tracked topic. Not a sentiment score — just what people actually wrote.
Claude Code was reading 27,000 files to review a Next.js PR. A knowledge graph cut that to 15 files. 49x fewer tokens. Better review quality. How? Tree-sitter parses your codebase into an AST — extracting every function, class, and their relationships (CALLS, IMPORTS_FROM, INHERITS, TESTED_BY). When you change login() in auth.py , a BFS blast-radius trace answers: → What does it call? (forward) → What calls it? (backward) → Which tests cover it? Claude reads those 5 files. The other 27,000? Skipped. SQLite stores the graph locally. Incremental updates via git hooks keep it live in <2 seconds. Less noise → Claude focuses → better reviews. Open source: pip install code-review-graph (Credit: Tirth Kanani — full writeup in comments) #LLM #AIEngineering #ClaudeCode #DevTools