Frontmatter
| id | 9144 |
| title | Implement Heuristics Service for DevIndex |
| state | Closed |
| labels | enhancementai |
| assignees | tobiu |
| createdAt | Feb 13, 2026, 2:41 PM |
| updatedAt | Feb 13, 2026, 2:47 PM |
| githubUrl | https://github.com/neomjs/neo/issues/9144 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 9143 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 13, 2026, 2:47 PM |
Implement Heuristics Service for DevIndex
tobiu added parent issue #9143 on Feb 13, 2026, 2:42 PM

tobiu
Feb 13, 2026, 2:47 PM
Input from Gemini 3 Pro:
✦ Implemented the
Heuristicsservice (apps/devindex/services/Heuristics.mjs).Logic Implemented:
- Velocity (
v):Max Yearly Contributions / 365. This detects high-frequency automated activity (e.g., >100/day).- Consistency (
c): Count of years with> 100contributions. Distinguishes long-term maintainers from "flash in the pan" spikes.- Acceleration (
a):Max Year / Median(Active Years). Detects "AI Breakouts" (e.g., jumping from 1k/year to 20k/year ->a: 20.0).This service is now ready to be plugged into the
Updaterpipeline.
tobiu assigned to @tobiu on Feb 13, 2026, 2:47 PM
tobiu closed this issue on Feb 13, 2026, 2:47 PM
Create a new service
apps/devindex/services/Heuristics.mjsthat implements statistical analysis on user contribution data.Responsibilities:
velocity: Max contributions per day (Max Yearly / 365).acceleration: Growth factor (Max Year / Median of Non-Zero Years).consistency: Count of years with significant activity (>100 commits).hcontaining{ v, a, c }.Constraints: