<?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: XsiKOM DIGITAL Projects</title>
    <description>The latest articles on DEV Community by XsiKOM DIGITAL Projects (@xsikom).</description>
    <link>https://dev.to/xsikom</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%2F4001288%2Ffcd5763f-c5d1-437e-9ebe-659c22c32a01.png</url>
      <title>DEV Community: XsiKOM DIGITAL Projects</title>
      <link>https://dev.to/xsikom</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/xsikom"/>
    <language>en</language>
    <item>
      <title>How I Built a Job Application Bot with 3 AI Agents in One Session 🤖</title>
      <dc:creator>XsiKOM DIGITAL Projects</dc:creator>
      <pubDate>Wed, 24 Jun 2026 21:57:58 +0000</pubDate>
      <link>https://dev.to/xsikom/how-i-built-a-job-application-bot-with-3-ai-agents-in-one-session-2f22</link>
      <guid>https://dev.to/xsikom/how-i-built-a-job-application-bot-with-3-ai-agents-in-one-session-2f22</guid>
      <description>&lt;h1&gt;
  
  
  How I Built a Job Application Bot with 3 AI Agents 🤖
&lt;/h1&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Every job seeker knows the pain: writing individual &lt;br&gt;
cover letters, searching multiple job portals, &lt;br&gt;
formatting PDFs, sending emails... it takes HOURS &lt;br&gt;
for each application.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution: XsiKOM BewerbungsBOT
&lt;/h2&gt;

&lt;p&gt;I built a web app with &lt;strong&gt;3 specialized AI bots&lt;/strong&gt; &lt;br&gt;
that automate the entire process:&lt;/p&gt;

&lt;h3&gt;
  
  
  🤖 Bot 1: AALIYAH (Career Advisor)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Powered by Llama 3.3 70B via Groq API&lt;/li&gt;
&lt;li&gt;Answers career questions in real-time&lt;/li&gt;
&lt;li&gt;Salary negotiation tips&lt;/li&gt;
&lt;li&gt;Interview preparation&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  ⚡ Bot 2: AVINU (Job Search)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Searches 10+ job portals simultaneously&lt;/li&gt;
&lt;li&gt;Arbeitsagentur API (official German job agency)&lt;/li&gt;
&lt;li&gt;Indeed, StepStone, RemoteOK, Jobicy&lt;/li&gt;
&lt;li&gt;300+ professions in 14 industries&lt;/li&gt;
&lt;li&gt;Radius search 5-200 km&lt;/li&gt;
&lt;li&gt;International support (USA, UK, EU)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🤖 Bot 3: XSI (Auto-Applicant)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;AI generates personalized cover letters&lt;/li&gt;
&lt;li&gt;Automatically attaches PDF documents&lt;/li&gt;
&lt;li&gt;Sends applications via SMTP (Gmail)&lt;/li&gt;
&lt;li&gt;8 templates in DE, EN, FR&lt;/li&gt;
&lt;li&gt;One-click application!&lt;/li&gt;
&lt;/ul&gt;

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

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

&lt;p&gt;Backend: Python + Flask&lt;br&gt;
Database: SQLite&lt;br&gt;
AI: Groq API (Llama 3.3 70B)&lt;br&gt;
Frontend: HTML/CSS/JS (no framework!)&lt;br&gt;
Security: 2FA, AES-256, PBKDF2 SHA-512&lt;br&gt;
Mobile: PWA + Android (Bubblewrap)&lt;br&gt;
Hosting: Render.com (free tier!)&lt;br&gt;
Payments: Stripe&lt;/p&gt;

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

&lt;p&gt;The app follows a simple but effective architecture:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;code&gt;webapp.py&lt;/code&gt; - Main Flask application (~800 lines)&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;avinu_ki.py&lt;/code&gt; - Job search module with 6 portal scrapers&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;xsi_bot.py&lt;/code&gt; - Auto-application sender with email&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;security.py&lt;/code&gt; - 2FA, encryption, audit logging&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;auto_update.py&lt;/code&gt; - Monthly AI-powered updates&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Key Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Multi-language&lt;/strong&gt;: DE, EN, FR templates&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GDPR compliant&lt;/strong&gt;: Data export, account deletion&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;2FA&lt;/strong&gt;: QR code based authentication&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Auto-update&lt;/strong&gt;: Monthly AI analysis of trends&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Freemium&lt;/strong&gt;: 5 free apps/month, €1.99 unlimited&lt;/li&gt;
&lt;/ul&gt;

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

&lt;ol&gt;
&lt;li&gt;Flask is powerful enough for full SaaS apps&lt;/li&gt;
&lt;li&gt;Groq API is incredibly fast (&amp;lt; 1 second responses)&lt;/li&gt;
&lt;li&gt;PWA + Bubblewrap = easy Android app&lt;/li&gt;
&lt;li&gt;SQLite handles small-to-medium loads perfectly&lt;/li&gt;
&lt;li&gt;Web scraping job portals is fragile but valuable&lt;/li&gt;
&lt;/ol&gt;

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

&lt;p&gt;🌐 &lt;strong&gt;Live Demo&lt;/strong&gt;: &lt;a href="https://xsikom-bewerbungsbot.onrender.com" rel="noopener noreferrer"&gt;https://xsikom-bewerbungsbot.onrender.com&lt;/a&gt;&lt;br&gt;
📱 &lt;strong&gt;Play Store&lt;/strong&gt;: Coming soon&lt;br&gt;
💻 &lt;strong&gt;GitHub&lt;/strong&gt;: &lt;a href="https://github.com/xsikomprojects" rel="noopener noreferrer"&gt;https://github.com/xsikomprojects&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Login: admin / XsiKOM2026!&lt;/p&gt;

&lt;p&gt;I'd love your feedback! What features would you add?&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Built by Komi Tevi | XsiKOM DIGITAL Projects&lt;/em&gt;&lt;br&gt;
&lt;em&gt;Made in Germany 🇩🇪&lt;/em&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
