<?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>Forem: Logan</title>
    <description>The latest articles on Forem by Logan (@loganwlkq).</description>
    <link>https://forem.com/loganwlkq</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%2F3839713%2F2fa1347b-d460-4abb-badf-d2cd865e27c5.png</url>
      <title>Forem: Logan</title>
      <link>https://forem.com/loganwlkq</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/loganwlkq"/>
    <language>en</language>
    <item>
      <title>I built a resume tailoring tool that rewrites your bullets to match any job description</title>
      <dc:creator>Logan</dc:creator>
      <pubDate>Mon, 23 Mar 2026 09:23:56 +0000</pubDate>
      <link>https://forem.com/loganwlkq/i-built-a-resume-tailoring-tool-that-rewrites-your-bullets-to-match-any-job-description-580l</link>
      <guid>https://forem.com/loganwlkq/i-built-a-resume-tailoring-tool-that-rewrites-your-bullets-to-match-any-job-description-580l</guid>
      <description>&lt;p&gt;I built Resume Tailor over the past few weeks, and I want to share why and how.&lt;br&gt;
The problem&lt;br&gt;
I kept seeing the same pattern: someone has solid experience, but their resume doesn't match the job description. Not because they're unqualified — because the wording is off.&lt;br&gt;
A product manager applying to a "Growth" role writes about "feature delivery" when the JD says "experimentation" and "funnel optimization". A software engineer writes "built microservices" when the JD wants "designed distributed systems". Same experience, different framing.&lt;br&gt;
Manually rewriting this for every application is tedious. And most people don't do it, so they get filtered out before a human ever reads their resume.&lt;br&gt;
What Resume Tailor does&lt;br&gt;
You paste two things:&lt;br&gt;
The job description&lt;br&gt;
Your current resume&lt;br&gt;
And you get four things back:&lt;br&gt;
Tailored professional summary — rewritten to match the tone and priorities of the JD&lt;br&gt;
Improved bullet points — your existing bullets reframed using the JD's language&lt;br&gt;
Missing keywords — terms in the JD that don't appear anywhere in your resume&lt;br&gt;
Improvement suggestions — specific, actionable notes on what to change&lt;br&gt;
The one rule I refused to break&lt;br&gt;
No fabrication.&lt;br&gt;
It's tempting to let the AI invent achievements. "Increased revenue by 40%" sounds great, but if you didn't do it, it's a lie. Resume Tailor is explicitly designed to optimize framing, not facts.&lt;br&gt;
The system prompt enforces this. If the AI starts inventing specifics that weren't in the original resume, that's a bug, not a feature.&lt;br&gt;
Tech stack&lt;br&gt;
Next.js 16 (App Router, Turbopack)&lt;br&gt;
Cloudflare Workers via OpenNext adapter&lt;br&gt;
Supabase for auth and database&lt;br&gt;
Google OAuth for sign-in&lt;br&gt;
OpenAI-compatible API for the LLM calls&lt;br&gt;
Tailwind CSS v4&lt;br&gt;
PayPal for payments&lt;br&gt;
Deployed on Cloudflare Pages/Workers with GitHub Actions CI.&lt;br&gt;
Interesting technical decisions&lt;br&gt;
Streaming vs. single response&lt;br&gt;
I went with a single response (no streaming) for the MVP. Streaming adds complexity and the output is structured JSON, which is harder to stream reliably. Speed is acceptable for now — typical generation is under 30 seconds.&lt;br&gt;
Guest quota in localStorage&lt;br&gt;
Guests get one free try, stored in localStorage. It's not tamper-proof and I know it. For an MVP trying to reduce friction before sign-in, it's the right tradeoff. Logged-in quotas are enforced server-side.&lt;br&gt;
Hydration mismatch with locale&lt;br&gt;
The app supports English and Chinese. The locale is read from ?lang= URL params. This caused a hydration mismatch because the server defaulted to English while the client switched to Chinese on first render.&lt;br&gt;
The fix: the root layout reads the lang param server-side and passes initialLocale to the context provider, so SSR and CSR agree from the start.&lt;br&gt;
What's next&lt;br&gt;
Better handling of long resumes (chunking)&lt;br&gt;
More output formats (cover letter, LinkedIn summary)&lt;br&gt;
Usage analytics to understand which job categories people use it for most&lt;br&gt;
Try it&lt;br&gt;
&lt;a href="https://resumetailor.website" rel="noopener noreferrer"&gt;https://resumetailor.website&lt;/a&gt;&lt;br&gt;
No sign-in required for your first try. Would love feedback on the output quality — especially from anyone who's gone through an international job search or applied to roles in a second language.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
