<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Aman</title>
    <description>The latest articles on DEV Community by Aman (@aman_social).</description>
    <link>https://dev.to/aman_social</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4114981%2F93d1361a-1220-49ec-943a-30eb4e945ad2.jpg</url>
      <title>DEV Community: Aman</title>
      <link>https://dev.to/aman_social</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/aman_social"/>
    <language>en</language>
    <item>
      <title>I Built an Autonomous GitHub Trending Tracker with Star Velocity &amp; MCP Topic Radars 🚀</title>
      <dc:creator>Aman</dc:creator>
      <pubDate>Tue, 08 Sep 2026 06:10:59 +0000</pubDate>
      <link>https://dev.to/aman_social/i-built-an-autonomous-github-trending-tracker-with-star-velocity-mcp-topic-radars-1eff</link>
      <guid>https://dev.to/aman_social/i-built-an-autonomous-github-trending-tracker-with-star-velocity-mcp-topic-radars-1eff</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1pc8cry05g8k5pkg6ame.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1pc8cry05g8k5pkg6ame.png" alt=" " width="800" height="376"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ffy6fr19boa482om2v0vy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ffy6fr19boa482om2v0vy.png" alt=" " width="799" height="376"&gt;&lt;/a&gt;Hey DEV Community! 👋&lt;/p&gt;

&lt;p&gt;Today I'm excited to open-source &lt;strong&gt;GitTrends Intelligence&lt;/strong&gt; — an autonomous engine and interactive web dashboard designed to track breakout GitHub projects, viral star velocities, and cutting-edge open-source tools.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧐 Why I Built This
&lt;/h2&gt;

&lt;p&gt;GitHub's native trending page is great, but it has significant limitations for developers trying to catch breakout tech early:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;No Star Velocity&lt;/strong&gt;: You can't see the exact velocity (+stars gained in the last 24h) directly on an interactive interface.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Missing AI &amp;amp; MCP Taxonomies&lt;/strong&gt;: 
There are no dedicated topic filters for the fastest-growing ecosystems right now — like &lt;strong&gt;Model Context Protocol (#MCP)&lt;/strong&gt;, &lt;strong&gt;Coding Agents&lt;/strong&gt;, &lt;strong&gt;Local LLMs&lt;/strong&gt;, and &lt;strong&gt;AI Video Generation&lt;/strong&gt;.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I wanted a zero-maintenance, automated system that gives developers real-time intelligence on what is truly going viral across GitHub.&lt;/p&gt;




&lt;h2&gt;
  
  
  🛠️ Tech Stack &amp;amp; How It Works
&lt;/h2&gt;

&lt;p&gt;I built the entire project with zero external server costs using a fully automated architecture:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Python Intelligence Engine (&lt;code&gt;engine.py&lt;/code&gt;)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Scrapes trending repos across 6 major ecosystems (Overall, Python, JavaScript, TypeScript, Go, Rust).&lt;/li&gt;
&lt;li&gt;Uses connection pooling, rotating headers, and fallback heuristics to extract repo metrics safely.&lt;/li&gt;
&lt;li&gt;Classifies projects using description semantic scanning for tags like &lt;code&gt;#MCP&lt;/code&gt;, &lt;code&gt;#Coding-Agents&lt;/code&gt;, &lt;code&gt;#AI-Video&lt;/code&gt;, and &lt;code&gt;#Security&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  2. Zero-Maintenance Cloud Automation
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Scheduled &lt;strong&gt;GitHub Actions&lt;/strong&gt; runs automatically every 12 hours (at 00:00 UTC and 12:00 UTC).&lt;/li&gt;
&lt;li&gt;Automatically executes the engine in GitHub's cloud, generates daily historical archives (&lt;code&gt;YYYY-MM/&lt;/code&gt;), generates an RSS 2.0 feed (&lt;code&gt;feed.xml&lt;/code&gt;), and commits updates autonomously.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  3. Lightweight Client-Side Web Dashboard
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Pure &lt;strong&gt;Vanilla HTML, CSS &amp;amp; JavaScript&lt;/strong&gt; — no heavy frameworks or complicated build steps.&lt;/li&gt;
&lt;li&gt;Features real-time search, category tabs, star velocity sorting, table vs card view modes, and 1-click clone command copy.&lt;/li&gt;
&lt;li&gt;Deployed directly on &lt;strong&gt;GitHub Pages&lt;/strong&gt; with automatic cache-busting.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🌐 Live Demo &amp;amp; Source Code
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🚀 &lt;strong&gt;Live Interactive Dashboard:&lt;/strong&gt; &lt;a href="https://jastfan.github.io/github-trending/" rel="noopener noreferrer"&gt;https://jastfan.github.io/github-trending/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ &lt;strong&gt;GitHub Repository:&lt;/strong&gt; &lt;a href="https://github.com/jastfan/github-trending" rel="noopener noreferrer"&gt;https://github.com/jastfan/github-trending&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;📡 &lt;strong&gt;RSS 2.0 Feed:&lt;/strong&gt; &lt;a href="https://github.com/jastfan/github-trending/blob/main/feed.xml" rel="noopener noreferrer"&gt;feed.xml&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  💬 Looking for Your Feedback!
&lt;/h2&gt;

&lt;p&gt;Since this is an active open-source project, I'd love to hear from the community:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What additional language categories or data metrics would you like to see tracked?&lt;/li&gt;
&lt;li&gt;If you find this helpful for discovering new open-source projects, consider dropping a ⭐ on &lt;a href="https://github.com/jastfan/github-trending" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;!&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Happy building! 💻&lt;/p&gt;

</description>
      <category>ai</category>
      <category>python</category>
      <category>github</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
