Frontmatter
| id | 9132 |
| title | Implement 'Network Walker' Discovery Strategy (Social Graph) |
| state | Closed |
| labels | enhancementaifeature |
| assignees | tobiu |
| createdAt | Feb 13, 2026, 2:39 AM |
| updatedAt | Feb 13, 2026, 2:42 AM |
| githubUrl | https://github.com/neomjs/neo/issues/9132 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 9106 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 13, 2026, 2:42 AM |
Implement 'Network Walker' Discovery Strategy (Social Graph)
tobiu assigned to @tobiu on Feb 13, 2026, 2:39 AM
tobiu added parent issue #9106 on Feb 13, 2026, 2:39 AM

tobiu
Feb 13, 2026, 2:41 AM
Input from Gemini 3 Pro:
✦ I have implemented the "Network Walker" discovery strategy.
Features:
- New Strategy:
network_walkeradded topickStrategywith a ~15% weight.- Implementation: The
runNetworkWalkermethod picks a random existing user and fetches theirfollowinglist (up to 100 users).- Discovery: It filters out users who are already in the
tracker.jsonorblacklist.jsonand adds the rest as pending candidates.- Integration: Fully integrated into the
runloop and supports forced execution via CLI (though CLI flag support might need explicit args if not alreadystringtype).This strategy will help discover high-quality "hidden gems" by traversing the social graph of existing high-value users.
tobiu closed this issue on Feb 13, 2026, 2:42 AM
We have reached 15k users and want to expand our discovery beyond repository-based searches. Developers often follow other skilled developers. Traversing this "Social Graph" is a high-probability way to find "hidden gems"—active developers who might not have high-star repositories but are followed by other productive engineers.
New Strategy: "Network Walker" (User-to-User)
GET /users/:username/following).tracker.jsonorblacklist.json.tracker.jsonas pending.Implementation:
apps/devindex/services/Spider.mjs.runNetworkWalkermethod.pickStrategy).