<?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: Vadym Shramko</title>
    <description>The latest articles on DEV Community by Vadym Shramko (@vadym_shramko_eafa79e6ca9).</description>
    <link>https://dev.to/vadym_shramko_eafa79e6ca9</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3966306%2F3985dfb3-a489-4085-b343-e1d103a5e3d2.png</url>
      <title>DEV Community: Vadym Shramko</title>
      <link>https://dev.to/vadym_shramko_eafa79e6ca9</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vadym_shramko_eafa79e6ca9"/>
    <language>en</language>
    <item>
      <title>I got tired of reviewing 300+ CVs, so I built an AI Agent to do first-round interviews</title>
      <dc:creator>Vadym Shramko</dc:creator>
      <pubDate>Wed, 03 Jun 2026 10:23:25 +0000</pubDate>
      <link>https://dev.to/vadym_shramko_eafa79e6ca9/i-got-tired-of-reviewing-300-cvs-so-i-built-an-ai-agent-to-do-first-round-interviews-gg</link>
      <guid>https://dev.to/vadym_shramko_eafa79e6ca9/i-got-tired-of-reviewing-300-cvs-so-i-built-an-ai-agent-to-do-first-round-interviews-gg</guid>
      <description>&lt;p&gt;If you’ve ever been involved in hiring developers, you know the drill. You open a position, and within 48 hours, you have 300+ PDFs sitting in your inbox.&lt;/p&gt;

&lt;p&gt;Most of them are spam, heavily exaggerated, or completely irrelevant. But to find the hidden gems, your engineering team has to waste hours scanning PDFs and doing repetitive 15-minute screening calls just to check if the candidate actually knows what an API is.&lt;/p&gt;

&lt;p&gt;It was draining our team's time. So, I decided to build a system that acts as an automated "first-line" technical recruiter.&lt;/p&gt;

&lt;p&gt;Here is how I built an AI agent to parse CVs and conduct chat-based technical interviews before a human ever steps in.&lt;/p&gt;

&lt;p&gt;The Architecture&lt;br&gt;
I needed a stack that could handle file processing, real-time chat, and AI orchestration.&lt;/p&gt;

&lt;p&gt;Next.js for the frontend and API routes.&lt;/p&gt;

&lt;p&gt;PDF parsing library to extract raw text from uploaded CVs.&lt;/p&gt;

&lt;p&gt;LLM (Gemini / GPT) acting as the core brain.&lt;/p&gt;

&lt;p&gt;Supabase to store candidates, chat logs, and final scores.&lt;/p&gt;

&lt;p&gt;How the AI Interviewer Works:&lt;/p&gt;

&lt;p&gt;Context Loading: The candidate uploads their CV. The backend parses the PDF and feeds it into the LLM's context window.&lt;/p&gt;

&lt;p&gt;System Prompting: The AI is given a strict persona: "You are a Senior Engineering Manager. Review this candidate's CV. Ask them 3-5 technical questions based specifically on the stack they claimed to know. Do not ask generic questions."&lt;/p&gt;

&lt;p&gt;The Chat: The candidate enters a chat interface. The AI greets them and asks a specific question (e.g., "I see you used React and Redux at your last job. Can you explain how you handled state normalization?").&lt;/p&gt;

&lt;p&gt;Dynamic Follow-ups: Unlike a static form, the AI analyzes the candidate's answer. If they give a vague ChatGPT-like response, it pushes deeper.&lt;/p&gt;

&lt;p&gt;The Handoff: Once the chat is done, the AI generates a short summary and a "Match Score" for the human hiring manager.&lt;/p&gt;

&lt;p&gt;The Result&lt;br&gt;
Now, instead of jumping on 20 calls, our team only talks to the top 3 candidates who actually proved their knowledge in the AI chat.&lt;/p&gt;

&lt;p&gt;It worked so well internally that I polished the UI and launched it as a standalone tool called Ghost-assistant (you can check it out at &lt;a href="https://ghost-assistant-app.vercel.app/" rel="noopener noreferrer"&gt;https://ghost-assistant-app.vercel.app/&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Building AI agents that actually interact dynamically instead of just summarizing text has been a super fun challenge. Has anyone else experimented with building AI interviewers or HR automation? Would love to hear how you handle prompt injection in these scenarios!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>productivity</category>
      <category>beginners</category>
    </item>
    <item>
      <title>How I stopped begging for structured bug reports (and automated it with AI)</title>
      <dc:creator>Vadym Shramko</dc:creator>
      <pubDate>Wed, 03 Jun 2026 10:18:31 +0000</pubDate>
      <link>https://dev.to/vadym_shramko_eafa79e6ca9/how-i-stopped-begging-for-structured-bug-reports-and-automated-it-with-ai-5hed</link>
      <guid>https://dev.to/vadym_shramko_eafa79e6ca9/how-i-stopped-begging-for-structured-bug-reports-and-automated-it-with-ai-5hed</guid>
      <description>&lt;p&gt;If you work in a software team, you know the pain. You ask Product Managers or Designers to fill out a detailed Jira template for bugs (Steps to reproduce, Expected, Actual). They do it for a week, and then go back to dropping a raw screenshot in the team chat with the caption: "checkout is broken".&lt;/p&gt;

&lt;p&gt;As an engineer, you're left guessing the platform, the state, and the steps.&lt;/p&gt;

&lt;p&gt;I got tired of fighting human nature, so I decided to build a bridge between the lazy chat screenshots and our strict Jira boards. Here is how I built a bot that does the translation automatically.&lt;/p&gt;

&lt;p&gt;The Tech Stack&lt;br&gt;
I wanted to build this fast, so I went with my go-to stack:&lt;/p&gt;

&lt;p&gt;Next.js (App Router) for the API webhooks.&lt;/p&gt;

&lt;p&gt;Supabase for keeping track of chat IDs and Jira connections.&lt;/p&gt;

&lt;p&gt;Google Gemini Vision API for the heavy lifting (reading the screenshots).&lt;/p&gt;

&lt;p&gt;Jira REST API for creating the actual tickets.&lt;/p&gt;

&lt;p&gt;How the workflow actually looks now:&lt;/p&gt;

&lt;p&gt;A PM finds a bug and forwards a screenshot to our Telegram bot with a minimal caption (e.g., "login button does nothing on iOS").&lt;/p&gt;

&lt;p&gt;The Telegram webhook hits my Next.js endpoint.&lt;/p&gt;

&lt;p&gt;I pass the image and the caption to Gemini Vision with a strict prompt: "Analyze this UI screenshot. Generate a bug report title, steps to reproduce, expected result, and actual result."&lt;/p&gt;

&lt;p&gt;Gemini returns a perfectly formatted JSON.&lt;/p&gt;

&lt;p&gt;The backend fires a request to the Jira API, creating a new Bug issue, attaching the original image, and applying the AI-generated text to the description.&lt;/p&gt;

&lt;p&gt;The bot replies in the Telegram thread with the BUG-123 link.&lt;/p&gt;

&lt;p&gt;Total time: ~15 seconds.&lt;/p&gt;

&lt;p&gt;The Result&lt;br&gt;
Devs get their perfectly structured tickets, and non-technical folks don't have to change their habits. The "garbage in, garbage out" problem is completely solved.&lt;/p&gt;

&lt;p&gt;I realized this is a universal pain point, so I actually packaged this workflow into a small micro-SaaS called BotBridge (link in my profile).&lt;/p&gt;

&lt;p&gt;Have you guys tried using Vision models for QA or triage workflows yet? Would love to hear how other teams are handling the "lazy bug report" problem!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>ai</category>
      <category>productivity</category>
      <category>automation</category>
    </item>
  </channel>
</rss>
