<?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: Shashwat Srivastava</title>
    <description>The latest articles on DEV Community by Shashwat Srivastava (@shashwat1319).</description>
    <link>https://dev.to/shashwat1319</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%2F4001613%2F9459e4e6-8e11-4bbf-b009-71f50dd4c103.jpg</url>
      <title>DEV Community: Shashwat Srivastava</title>
      <link>https://dev.to/shashwat1319</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/shashwat1319"/>
    <language>en</language>
    <item>
      <title>How I Built a Telegram Affiliate Bot That Posts Deals 24/7 — Full Python Source</title>
      <dc:creator>Shashwat Srivastava</dc:creator>
      <pubDate>Fri, 24 Jul 2026 14:54:16 +0000</pubDate>
      <link>https://dev.to/shashwat1319/how-i-built-a-telegram-affiliate-bot-that-posts-deals-247-full-python-source-1an3</link>
      <guid>https://dev.to/shashwat1319/how-i-built-a-telegram-affiliate-bot-that-posts-deals-247-full-python-source-1an3</guid>
      <description>&lt;p&gt;I wanted a Telegram channel that posts Amazon deals automatically. No manual work. Just set it and forget it.&lt;/p&gt;

&lt;p&gt;So I built one.&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;p&gt;The system takes a JSON file with products and does everything:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Converts each product into &lt;strong&gt;3 promotional formats&lt;/strong&gt; (pain-fix, deal-alert, short-urgency)&lt;/li&gt;
&lt;li&gt;Posts to Telegram &lt;strong&gt;every 4 hours&lt;/strong&gt; via GitHub Actions CI/CD&lt;/li&gt;
&lt;li&gt;Runs an &lt;strong&gt;interactive bot&lt;/strong&gt; with 7 commands&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tracks every affiliate click&lt;/strong&gt; per product via Netlify serverless&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Detects new members&lt;/strong&gt; and sends welcome DMs with referral rewards&lt;/li&gt;
&lt;li&gt;Sends &lt;strong&gt;daily admin reports&lt;/strong&gt; with member count and referral stats&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All on autopilot. No VPS needed.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Layer&lt;/th&gt;
&lt;th&gt;Technology&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Language&lt;/td&gt;
&lt;td&gt;Python 3.12&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Bot Framework&lt;/td&gt;
&lt;td&gt;python-telegram-bot v20&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MTProto Client&lt;/td&gt;
&lt;td&gt;Telethon&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;CI/CD&lt;/td&gt;
&lt;td&gt;GitHub Actions (every 4h)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Click Tracking&lt;/td&gt;
&lt;td&gt;Netlify Edge Functions&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Storage&lt;/td&gt;
&lt;td&gt;JSON files + Netlify Blobs&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Architecture
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;GitHub Actions (schedule: every 4h)
  ├── feeder.py     → Products → 3 content formats
  ├── poster.py     → Post to Telegram channel
  ├── referral.py   → Referral stats
  ├── reporting.py  → Daily admin report
  └── Netlify Deploy → Click tracker

Local Orchestrator (auto-start)
  ├── bot.py        → Interactive bot (7 commands)
  └── referral.py   → Join detection + welcome DMs
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Why I Built It
&lt;/h2&gt;

&lt;p&gt;I was running a Telegram deal channel manually. Finding products, writing posts, formatting links, tracking clicks. It took 1-2 hours daily and I kept missing posting schedules.&lt;/p&gt;

&lt;p&gt;I wanted a system that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Posts consistently (humans forget, machines don't)&lt;/li&gt;
&lt;li&gt;Tracks every click to know what works&lt;/li&gt;
&lt;li&gt;Grows itself via referrals&lt;/li&gt;
&lt;li&gt;Costs nothing to run&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Product Feed (&lt;code&gt;product_home.json&lt;/code&gt;)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"products"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Wipro 10W Smart RGBW LED Bulb"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"price"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"₹599"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"mrp"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"₹1799"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"discount_percent"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"67%"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"link"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://amzn.to/your-link"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"category"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Home &amp;amp; Kitchen"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"rating"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"4.2"&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  2. Content Generation (&lt;code&gt;feeder.py&lt;/code&gt;)
&lt;/h3&gt;

&lt;p&gt;Each product becomes 3 posts optimized for different reader psychology:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Pain-Fix&lt;/strong&gt;: "Tired of dark rooms? Here's the fix."&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Deal-Alert&lt;/strong&gt;: "67% OFF — Wipro Smart LED Bulb"&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Short-Urgency&lt;/strong&gt;: "Limited stock. Grab it now."&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  3. Automated Posting (&lt;code&gt;poster.py&lt;/code&gt;)
&lt;/h3&gt;

&lt;p&gt;Posts to Telegram with inline buttons — "Buy on Amazon", "Share Deal", "Join Channel". Dedup logic prevents reposting the same product.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Click Tracking (Netlify)
&lt;/h3&gt;

&lt;p&gt;Every click goes through &lt;code&gt;go.js&lt;/code&gt; — a Netlify Edge Function that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Records the product ID, timestamp, and referrer&lt;/li&gt;
&lt;li&gt;Redirects to Amazon with your affiliate tag&lt;/li&gt;
&lt;li&gt;Returns stats via &lt;code&gt;stats.js&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  5. Referral System (&lt;code&gt;referral.py&lt;/code&gt;)
&lt;/h3&gt;

&lt;p&gt;When someone joins via a referral link:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;They get a welcome DM with bot commands&lt;/li&gt;
&lt;li&gt;The referrer earns points (tiered: 1x, 1.5x, 2x)&lt;/li&gt;
&lt;li&gt;/referral shows progress bars toward next tier&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Bot Commands
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Command&lt;/th&gt;
&lt;th&gt;What it does&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;/start&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Welcome + channel link&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;/deal&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Random unposted deal&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;/topdeal&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Best discount&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;/search &amp;lt;kw&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Search products&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;/referral&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Get invite link + stats&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;/about&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Bot info&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;/contact&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Channel link&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  CI/CD Pipeline
&lt;/h2&gt;

&lt;p&gt;GitHub Actions runs every 4 hours:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;code&gt;feeder.py&lt;/code&gt; → regenerate content from products&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;poster.py&lt;/code&gt; → post 1 deal to channel&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;referral.py --oneshot&lt;/code&gt; → log referral stats&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;reporting.py --daily&lt;/code&gt; → send admin report&lt;/li&gt;
&lt;li&gt;Netlify deploy → update click tracker&lt;/li&gt;
&lt;li&gt;Commit updated state back to repo&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Zero infrastructure cost. GitHub Actions free tier is enough for months.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Learned
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. Consistency beats volume.&lt;/strong&gt; Posting 1 deal every 4 hours outperformed 5 random posts daily. The audience knows when to expect content.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Hinglish content works.&lt;/strong&gt; Mixing Hindi and English hooks ("Ghar ki deal chahiye?") increased engagement 3x compared to English-only posts.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Progress bars drive referrals.&lt;/strong&gt; Showing users "3/5 friends toward 1.5x points" in /referral increased referral link generation significantly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Serverless click tracking is cheap.&lt;/strong&gt; Netlify's free tier handles thousands of redirects monthly. No database needed — Blob store is enough.&lt;/p&gt;

&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;The full source code is available on Gumroad with a complete setup guide (SETUP.md).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Includes:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;10 Python modules (1,500+ lines)&lt;/li&gt;
&lt;li&gt;30 sample products with 90 pre-generated content items&lt;/li&gt;
&lt;li&gt;Netlify click tracker with per-product analytics&lt;/li&gt;
&lt;li&gt;GitHub Actions CI/CD workflow&lt;/li&gt;
&lt;li&gt;Setup scripts for Windows (setup.bat) and Linux/Mac (setup.sh)&lt;/li&gt;
&lt;li&gt;30-minute deploy guide&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://shaswat7.gumroad.com/l/tg-affiliate-system" rel="noopener noreferrer"&gt;https://shaswat7.gumroad.com/l/tg-affiliate-system&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Built with Python 3.12, python-telegram-bot v20, Telethon, GitHub Actions, and Netlify.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>telegram</category>
      <category>automation</category>
      <category>githubactions</category>
    </item>
    <item>
      <title>GitHub Profile README Generator — Free Tool, 3 Templates, 10 Seconds</title>
      <dc:creator>Shashwat Srivastava</dc:creator>
      <pubDate>Thu, 25 Jun 2026 06:42:24 +0000</pubDate>
      <link>https://dev.to/shashwat1319/github-profile-readme-generator-free-tool-3-templates-10-seconds-3chm</link>
      <guid>https://dev.to/shashwat1319/github-profile-readme-generator-free-tool-3-templates-10-seconds-3chm</guid>
      <description>&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Every developer knows the feeling: you click on someone's GitHub profile and see a clean, well-organized README with stats, pinned repos, and activity — then you look at yours. Empty.&lt;/p&gt;

&lt;p&gt;You &lt;em&gt;know&lt;/em&gt; you should make one, but:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Writing markdown from scratch is tedious&lt;/li&gt;
&lt;li&gt;You don't know what to include&lt;/li&gt;
&lt;li&gt;Keeping it updated feels like a chore&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So I built something to fix that.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution: AutoDev README Generator
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://autodev-kappa.vercel.app/readme-generator" rel="noopener noreferrer"&gt;AutoDev README Generator&lt;/a&gt; is a completely free tool that takes your GitHub username, fetches your public data, and generates a beautiful profile README in seconds.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;No login. No signup. No payments. Just type your username and go.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://autodev-kappa.vercel.app/readme-generator" rel="noopener noreferrer"&gt;https://autodev-kappa.vercel.app/readme-generator&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Three Styles to Choose From
&lt;/h2&gt;

&lt;p&gt;You get three different templates depending on your use case:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Professional (Default)
&lt;/h3&gt;

&lt;p&gt;Clean, well-structured layout with stats bar, about me section, language badges, top repos, and recent activity.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gh"&gt;# Your Name&lt;/span&gt;

&lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;align=&lt;/span&gt;&lt;span class="s"&gt;"center"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://img.shields.io/badge/Repos-30-blue?style=flat-square"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://img.shields.io/badge/Stars-1k-yellow?style=flat-square"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://img.shields.io/badge/Forks-100-orange?style=flat-square"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;

&lt;span class="gu"&gt;## 👨‍💻 About Me&lt;/span&gt;
&lt;span class="gt"&gt;
&amp;gt; Full-stack developer building scalable APIs&lt;/span&gt;
&lt;span class="p"&gt;
-&lt;/span&gt; 🌍 Location: India
&lt;span class="p"&gt;-&lt;/span&gt; 🔗 Website: example.com
&lt;span class="p"&gt;-&lt;/span&gt; 📊 GitHub: @username
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  2. Minimal
&lt;/h3&gt;

&lt;p&gt;Simple and lightweight — just the essentials. Name, bio, stats bar, and language badges. Perfect if you want a clean, no-fluff profile.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Recruiter
&lt;/h3&gt;

&lt;p&gt;Recruiter-ready format with tables, pinned repository cards, and a comprehensive stats table. Includes a score badge that recruiters can click to see your full analysis.&lt;/p&gt;

&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;

&lt;p&gt;Behind the scenes, it's pretty straightforward:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Enter your GitHub username&lt;/li&gt;
&lt;li&gt;Choose a style (Professional, Minimal, or Recruiter)&lt;/li&gt;
&lt;li&gt;Click Generate&lt;/li&gt;
&lt;li&gt;Preview the README in browser&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Copy or download — both free&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The tool fetches:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Your profile data (name, bio, location, company)&lt;/li&gt;
&lt;li&gt;Repository statistics (stars, forks, languages)&lt;/li&gt;
&lt;li&gt;Recent public activity&lt;/li&gt;
&lt;li&gt;Top repositories by stars&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It then compiles everything into a ready-to-use markdown file.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Makes It Different?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. It's part of a bigger platform.&lt;/strong&gt; This isn't just a standalone tool — it's part of &lt;a href="https://autodev-kappa.vercel.app" rel="noopener noreferrer"&gt;AutoDev&lt;/a&gt;, which also includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A GitHub profile scoring system (score out of 100)&lt;/li&gt;
&lt;li&gt;A developer leaderboard to compare with others&lt;/li&gt;
&lt;li&gt;A shareable badge for your README&lt;/li&gt;
&lt;li&gt;A local git automation agent (&lt;code&gt;npx autodev-agent&lt;/code&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;2. 100% free, no strings attached.&lt;/strong&gt; Preview, copy, and download are all free. No account needed. No data stored. No paid tier.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Three distinct styles.&lt;/strong&gt; Most generators give you one template. AutoDev gives you three — Professional, Minimal, and Recruiter — each optimized for a different audience.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It Now
&lt;/h2&gt;

&lt;p&gt;Here's what you need to do:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Go to &lt;a href="https://autodev-kappa.vercel.app/readme-generator" rel="noopener noreferrer"&gt;autodev-kappa.vercel.app/readme-generator&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Type your GitHub username&lt;/li&gt;
&lt;li&gt;Click Generate&lt;/li&gt;
&lt;li&gt;Pick your favorite style&lt;/li&gt;
&lt;li&gt;Copy or download the markdown&lt;/li&gt;
&lt;li&gt;Paste it in your GitHub profile repo&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That's it. Your profile goes from blank to beautiful in under 10 seconds.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Next?
&lt;/h2&gt;

&lt;p&gt;I'm building this in public and would love feedback. Here's what's coming:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;More README templates (dark theme, devops-focused, student-focused)&lt;/li&gt;
&lt;li&gt;README auto-update (syncs with your GitHub activity)&lt;/li&gt;
&lt;li&gt;Team/org profiles&lt;/li&gt;
&lt;li&gt;Custom sections&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you have ideas, &lt;a href="https://linkedin.com" rel="noopener noreferrer"&gt;DM me on LinkedIn&lt;/a&gt; or &lt;a href="https://github.com/Shashwat1319/autodev-agent" rel="noopener noreferrer"&gt;open an issue on GitHub&lt;/a&gt;.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Built with Next.js and Sharp. Deployed on Vercel. Open source on &lt;a href="https://github.com/Shashwat1319/autodev-agent" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>github</category>
      <category>webdev</category>
      <category>showdev</category>
      <category>markdown</category>
    </item>
  </channel>
</rss>
