<?xml version="1.0" encoding="UTF-8"?>
<!-- GENERATED by scripts/build-blog.ts — edit that script, not this file. -->
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
  <title>The ChatBotCV blog</title>
  <subtitle>Notes on job-searching, CVs, and how recruiters actually read them.</subtitle>
  <id>https://chatbotcv.com/blog</id>
  <link rel="alternate" type="text/html" href="https://chatbotcv.com/blog" />
  <link rel="self" type="application/atom+xml" href="https://chatbotcv.com/blog/feed.xml" />
  <updated>2026-08-28T00:00:00.000Z</updated>
  <author>
    <name>Spencer Stern</name>
    <uri>https://chatbotcv.com/about</uri>
  </author>
  <rights>© 2026 ChatBotCV</rights>
  <entry>
    <title>How to Turn Your CV Into a Chatbot (and Whether You Should)</title>
    <link rel="alternate" type="text/html" href="https://chatbotcv.com/blog/turn-your-cv-into-a-chatbot" />
    <id>https://chatbotcv.com/blog/turn-your-cv-into-a-chatbot</id>
    <published>2026-08-28T00:00:00.000Z</published>
    <updated>2026-08-28T00:00:00.000Z</updated>
    <summary type="text">You can build a CV chatbot in a weekend, or use one in a minute. Here&apos;s what the build actually involves, and what separates a good one from a bad one.</summary>
    <content type="html">&lt;p&gt;Search for &amp;quot;turn your CV into a chatbot&amp;quot; and you&amp;#39;ll mostly find build tutorials. Wire up an LLM, chunk the PDF, stick it behind a retrieval layer, deploy it somewhere. They&amp;#39;re good tutorials, and the thing they describe genuinely does work — you can have something answering questions about your CV in an afternoon.&lt;/p&gt;
&lt;p&gt;What almost none of them cover is the part that decides whether it&amp;#39;s any use: what the bot does when your CV &lt;em&gt;doesn&amp;#39;t&lt;/em&gt; say something. That&amp;#39;s not a footnote. For a document whose entire job is being trusted by a stranger, it&amp;#39;s the whole product.&lt;/p&gt;
&lt;h2&gt;What does it mean to turn your CV into a chatbot?&lt;/h2&gt;
&lt;p&gt;Mechanically: your CV becomes searchable text, and a language model answers questions using only the passages it retrieves from it. A recruiter opens a link, types &amp;quot;has she managed a budget?&amp;quot;, and gets an answer drawn from your document rather than from the model&amp;#39;s general knowledge.&lt;/p&gt;
&lt;p&gt;The pitch is that a CV is a one-way format. You write it once, guessing what matters to a reader you&amp;#39;ve never met, and they read between the lines or email you. A conversational version lets them ask the question they actually have — which is often not the one your CV was optimised for.&lt;/p&gt;
&lt;p&gt;The counter-pitch, which is fair, is that this only helps if the answers can be trusted. A CV that answers questions confidently and wrongly is worse than a PDF.&lt;/p&gt;
&lt;h2&gt;Why would a recruiter use it instead of just reading the CV?&lt;/h2&gt;
&lt;p&gt;They mostly won&amp;#39;t, for the first pass. A recruiter screening forty applications is skimming for a job title, a couple of core skills, and recency. Nothing beats a well-written CV for that, and a chatbot doesn&amp;#39;t change it.&lt;/p&gt;
&lt;p&gt;Where it earns its place is the second pass — the point where a CV has survived the skim and the reader has a specific question. In practice that&amp;#39;s:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Ambiguity.&lt;/strong&gt; &amp;quot;Senior Analyst&amp;quot; at a company they don&amp;#39;t recognise. Was that four people or forty?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;A gap or a jump&lt;/strong&gt; the CV doesn&amp;#39;t explain.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;A named requirement&lt;/strong&gt; the CV is quiet on. Rather than reject-or-email, they can just ask.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Verification.&lt;/strong&gt; Not &amp;quot;is this person lying,&amp;quot; but &amp;quot;does the CV actually say what my colleague thinks it says.&amp;quot;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Those questions currently cost an email and two days, or they cost you the interview because nobody bothered. That&amp;#39;s the gap being filled. It&amp;#39;s narrower than &amp;quot;replace the CV,&amp;quot; and it&amp;#39;s real.&lt;/p&gt;
&lt;h2&gt;Can I build one myself?&lt;/h2&gt;
&lt;p&gt;Yes, and if you&amp;#39;re technical you probably should try it once — it&amp;#39;s the fastest way to understand what&amp;#39;s hard about it.&lt;/p&gt;
&lt;p&gt;The straightforward parts are genuinely straightforward. Extracting text from a PDF, splitting it into chunks, embedding those chunks, retrieving the nearest few for a question, and passing them to a model with &amp;quot;answer using this context&amp;quot; is a well-trodden path with good libraries. A weekend gets you something that demos well.&lt;/p&gt;
&lt;p&gt;The parts that bite come after:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Refusal is the hard part.&lt;/strong&gt; Ask a naive build &amp;quot;how does she handle conflict?&amp;quot; when the CV says nothing about it, and it will usually produce a plausible, flattering, entirely invented answer. It&amp;#39;s doing what models do — being helpful. Getting reliable &amp;quot;the CV doesn&amp;#39;t say&amp;quot; behaviour takes explicit instruction, and then testing against questions designed to bait it, because you won&amp;#39;t find these failures by trying the questions you hope people ask.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Leading questions are worse than open ones.&lt;/strong&gt; &amp;quot;Confirm she managed a team of 50&amp;quot; is the dangerous input, not &amp;quot;did she manage a team?&amp;quot; A bot that reads the assertion as context and agrees with it has just fabricated a reference on your behalf.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Retrieval quietly fails.&lt;/strong&gt; A CV is short but dense, and the chunk containing the answer isn&amp;#39;t always the one that scores highest. When retrieval misses, the model answers from nothing — and unless you&amp;#39;ve handled the case above, it answers anyway.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Then there&amp;#39;s the boring half.&lt;/strong&gt; Hosting it somewhere with a URL you can put on an application. Keeping it up when someone opens it three weeks later. A sane mobile layout, because plenty of recruiters read on a phone. Doing something sensible when the file is a scanned PDF. Handling a CV update without re-deploying. None of it is interesting, all of it is required.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;And the one people skip: whose data is it.&lt;/strong&gt; Your CV is a document full of personal information about you, and possibly about employers who&amp;#39;d rather not be named. Where it&amp;#39;s stored, which API it&amp;#39;s sent to, and whether that provider trains on it are questions you have to answer for yourself in a DIY build.&lt;/p&gt;
&lt;h2&gt;What makes a CV chatbot good or bad?&lt;/h2&gt;
&lt;p&gt;Whether you build one or use one, the same short list decides it. Ask any of them:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;What does it do when the CV doesn&amp;#39;t say?&lt;/strong&gt; It should say so plainly. If it hedges, generalises, or reaches for something adjacent, it will eventually invent something in front of a recruiter, and you won&amp;#39;t be there to correct it.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Can it be led?&lt;/strong&gt; Assert something false in the question and see whether it agrees.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Does it cite?&lt;/strong&gt; An answer that points back to where in the CV the fact came from is checkable. One that doesn&amp;#39;t is asking for trust it hasn&amp;#39;t earned.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Does it stay inside the document?&lt;/strong&gt; Ask it something general — &amp;quot;is this a good candidate?&amp;quot; — and see whether it starts writing a reference rather than reporting what&amp;#39;s written.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Who controls the link?&lt;/strong&gt; You should be able to update, unpublish, or delete it, and have that take effect immediately.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Notice that four of the five are about restraint. That&amp;#39;s not an accident. The value isn&amp;#39;t that it can talk about your CV — anything can do that now. It&amp;#39;s that a recruiter can believe what it says.&lt;/p&gt;
&lt;h2&gt;Where do you actually put the link?&lt;/h2&gt;
&lt;p&gt;Worth thinking about before you build anything, because it determines whether the thing gets opened at all.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;In the CV itself&lt;/strong&gt;, near your contact details. This is the highest-value spot by a distance — it&amp;#39;s in front of the person at the exact moment they have a question about the document they&amp;#39;re holding.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Your LinkedIn featured section or headline.&lt;/strong&gt; Reaches people who found you rather than people you applied to.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Your email signature&lt;/strong&gt;, if you&amp;#39;re job-searching actively. Costs nothing and catches referrals.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;The application form&amp;#39;s &amp;quot;portfolio&amp;quot; or &amp;quot;website&amp;quot; field&lt;/strong&gt;, which is otherwise wasted for most non-designers.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;What matters more than placement is what the link says about itself. &amp;quot;Ask my CV questions&amp;quot; invites use. A bare URL doesn&amp;#39;t, and a novelty framing actively repels the kind of reader you want. And the link has to survive contact with a phone, because a good share of recruiters will open it on one, between other things.&lt;/p&gt;
&lt;h2&gt;Should you build one or use something ready-made?&lt;/h2&gt;
&lt;p&gt;Build it if you want to understand the problem, if you enjoy the work, or if you want something genuinely bespoke and you&amp;#39;re prepared to keep it running.&lt;/p&gt;
&lt;p&gt;Use something ready-made if what you actually want is the link. The honest framing is that the interesting engineering is a weekend and the unglamorous 90% — refusal behaviour that survives adversarial questions, retrieval that doesn&amp;#39;t quietly miss, hosting, mobile, updates, deletion, a privacy position you can defend — is the part that keeps costing you time after the demo works.&lt;/p&gt;
&lt;p&gt;That&amp;#39;s what I built &lt;a href=&quot;https://chatbotcv.com/&quot;&gt;ChatBotCV&lt;/a&gt; to be: your CV, answering questions, strictly grounded in what you wrote, saying &amp;quot;the CV doesn&amp;#39;t say&amp;quot; when it doesn&amp;#39;t, citing where each answer came from, on a link you control and can delete. Free to set up.&lt;/p&gt;
&lt;p&gt;The same grounding gets used for something the DIY version rarely does: it can point the questions back at &lt;em&gt;you&lt;/em&gt;. Before you share anything, it runs the questions a recruiter is likely to ask against your own CV and shows you &lt;a href=&quot;https://chatbotcv.com/blog/interview-questions-based-on-your-cv&quot;&gt;the ones it can&amp;#39;t answer well&lt;/a&gt; — which is usually more immediately useful than the chatbot itself.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://chatbotcv.com/&quot;&gt;Turn your CV into a chatbot — free →&lt;/a&gt;&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>How to Check Your CV Against a Job Description (Without Faking It)</title>
    <link rel="alternate" type="text/html" href="https://chatbotcv.com/blog/check-cv-against-job-description" />
    <id>https://chatbotcv.com/blog/check-cv-against-job-description</id>
    <published>2026-07-18T00:00:00.000Z</published>
    <updated>2026-07-18T00:00:00.000Z</updated>
    <summary type="text">Tailoring your CV to the job often slides into quiet embellishment. Here&apos;s the honest way to check it against a job advert — and what&apos;s worth adding.</summary>
    <content type="html">&lt;p&gt;&amp;quot;Tailor your CV to the job.&amp;quot; You&amp;#39;ve heard it a hundred times. It&amp;#39;s good advice. It&amp;#39;s also where a lot of people quietly cross a line.&lt;/p&gt;
&lt;p&gt;Because &amp;quot;tailor&amp;quot; often gets read as &amp;quot;make it match.&amp;quot; You see a requirement in the advert, and if your CV doesn&amp;#39;t obviously cover it, the temptation is to reword something until it looks like it does. Stretch a responsibility. Borrow a phrase from the advert. Nudge a &amp;quot;familiar with&amp;quot; up to &amp;quot;experienced in.&amp;quot;&lt;/p&gt;
&lt;p&gt;That&amp;#39;s not tailoring. That&amp;#39;s writing a cheque your interview can&amp;#39;t cash. Whatever you inflate to get past the screen, you then have to &lt;a href=&quot;https://chatbotcv.com/blog/strong-cv-but-failing-interviews&quot;&gt;defend out loud to someone whose whole job is spotting the seams&lt;/a&gt;. The honest version of tailoring is more useful anyway... and it starts from the opposite instinct.&lt;/p&gt;
&lt;h2&gt;What does it mean to tailor a CV to a job description?&lt;/h2&gt;
&lt;p&gt;Honest tailoring isn&amp;#39;t editing the CV to fit the advert. It&amp;#39;s checking the CV against the advert to see where you genuinely fall short... and then deciding, requirement by requirement, what to do about each gap.&lt;/p&gt;
&lt;p&gt;That reframe matters more than it sounds. If the goal is &amp;quot;make the document match,&amp;quot; every gap is a writing problem, and the answer is always more words. If the goal is &amp;quot;find out where I actually stand,&amp;quot; then some gaps are writing problems and some aren&amp;#39;t, and telling them apart is the entire exercise.&lt;/p&gt;
&lt;h2&gt;What&amp;#39;s the difference between tailoring and embellishing?&lt;/h2&gt;
&lt;p&gt;The gaps split into two kinds, and they need opposite responses:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Real but unwritten.&lt;/strong&gt; The advert wants stakeholder management. You&amp;#39;ve done loads of it... you just never spelled it out on the CV because it felt obvious. This is a real match that&amp;#39;s simply missing from the page. Add it. That&amp;#39;s not embellishment, it&amp;#39;s correction... you&amp;#39;re making the CV tell the truth it left out.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Genuinely absent.&lt;/strong&gt; The advert wants five years of something you have two of, or a skill you&amp;#39;ve never touched. No amount of rewording fixes this honestly. Here the honest move is to decide whether it&amp;#39;s a dealbreaker, whether adjacent experience is worth framing plainly, or whether you &lt;a href=&quot;https://chatbotcv.com/blog/strong-cv-but-failing-interviews&quot;&gt;prepare to address it head-on in the interview&lt;/a&gt; rather than paper over it.&lt;/p&gt;
&lt;p&gt;The whole value is in telling those two apart. Faking blurs them together... you end up defending inflated claims &lt;em&gt;and&lt;/em&gt; still exposed on the real gaps. Checking honestly separates them, so you fix what&amp;#39;s fixable and prepare for what isn&amp;#39;t.&lt;/p&gt;
&lt;p&gt;There&amp;#39;s a practical test for which kind you&amp;#39;re looking at. Ask: &lt;em&gt;if an interviewer asked me for a specific example of this right now, could I give one?&lt;/em&gt; If yes, it&amp;#39;s real but unwritten — the evidence exists, it just isn&amp;#39;t on the page. If you&amp;#39;d have to reach, invent, or talk around it, it&amp;#39;s genuinely absent, and putting it on the CV only moves the problem to a room where you can&amp;#39;t edit.&lt;/p&gt;
&lt;h2&gt;How do you check your CV against a job description?&lt;/h2&gt;
&lt;p&gt;By hand, the method is simple and a bit tedious:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Pull the requirements out of the advert.&lt;/strong&gt; Every skill, experience level, responsibility, tool and qualification it states or implies. Ignore the rest — salary, benefits, culture paragraphs and &amp;quot;we&amp;#39;re a fast-paced team&amp;quot; filler aren&amp;#39;t things a CV can evidence.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Find the evidence for each one in your CV.&lt;/strong&gt; Not &amp;quot;could I argue this?&amp;quot; — where on the page does a reader see it?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Mark each requirement&lt;/strong&gt; covered, missing-but-real, or genuinely absent.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Act on each one honestly&lt;/strong&gt;, per the split above.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Here&amp;#39;s what that looks like on a real advert. Say it asks for a data analyst with advanced SQL, experience running experiments, line-management responsibility, and five years in the field. Your CV says you were a Senior Data Analyst for six years, lists SQL and Python, and describes &amp;quot;improving reporting across the commercial team.&amp;quot;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Advanced SQL&lt;/em&gt; — &lt;strong&gt;covered.&lt;/strong&gt; It&amp;#39;s listed and the seniority backs it up.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Five years in the field&lt;/em&gt; — &lt;strong&gt;covered.&lt;/strong&gt; Six years, stated plainly.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Running experiments&lt;/em&gt; — &lt;strong&gt;missing but real.&lt;/strong&gt; You ran A/B tests constantly. The CV never says so, because &amp;quot;improving reporting&amp;quot; was the tidier summary. Add it, with an example.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Line management&lt;/em&gt; — &lt;strong&gt;genuinely absent.&lt;/strong&gt; You mentored two juniors; you never had reports. Don&amp;#39;t write &amp;quot;managed a team.&amp;quot; Either frame the mentoring plainly as what it was, or go in ready to answer the question directly.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Two of those four are fixable in ten minutes without a word of exaggeration. One isn&amp;#39;t fixable at all, and knowing that before you apply is worth more than a cleverly-worded bullet point.&lt;/p&gt;
&lt;h2&gt;Should you apply if you don&amp;#39;t meet every requirement?&lt;/h2&gt;
&lt;p&gt;Usually yes — but the honest check is what tells you &lt;em&gt;which&lt;/em&gt; kind of shortfall you&amp;#39;re looking at, and they aren&amp;#39;t equal.&lt;/p&gt;
&lt;p&gt;Most adverts are a wish list assembled by several people, and a good chunk of it is aspirational. Missing two or three of a dozen &amp;quot;requirements&amp;quot; is normal and rarely decisive, particularly when they&amp;#39;re tools rather than experience. Tools are learnable and everyone knows it.&lt;/p&gt;
&lt;p&gt;What&amp;#39;s worth taking seriously is a gap in the &lt;em&gt;shape&lt;/em&gt; of the role rather than its contents. Never having managed anyone, when the job is fundamentally about managing people. No exposure to the domain, when the domain is most of the difficulty. Missing a hard credential — a licence, a qualification, the legal right to work somewhere. Those aren&amp;#39;t gaps you talk around; they&amp;#39;re the job.&lt;/p&gt;
&lt;p&gt;So the decision isn&amp;#39;t &amp;quot;do I meet everything,&amp;quot; it&amp;#39;s:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Is the gap central or peripheral?&lt;/strong&gt; Peripheral gaps are worth a plainly-worded sentence and nothing more. Central ones need a real answer before you apply, not during the interview.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Do I have adjacent evidence?&lt;/strong&gt; Mentoring isn&amp;#39;t line management, but it&amp;#39;s honest neighbouring evidence and it&amp;#39;s much better framed as what it is than dressed up as what it isn&amp;#39;t.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Can I close it before the interview, truthfully?&lt;/strong&gt; Sometimes the answer is a weekend with the documentation and a small project you can actually talk about. That&amp;#39;s a real fix. Adding the skill to your CV without doing that isn&amp;#39;t.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The point of checking honestly is that you end up making this decision deliberately, once, with the requirements in front of you — instead of discovering it in the third round.&lt;/p&gt;
&lt;h2&gt;What makes this hard to do on your own?&lt;/h2&gt;
&lt;p&gt;Two things, and they&amp;#39;re both about objectivity rather than effort.&lt;/p&gt;
&lt;p&gt;The first is that you know what you meant. When you read &amp;quot;improving reporting across the commercial team,&amp;quot; you see the six months of experiment design behind it, so it reads as covered. A stranger sees a sentence about reporting. You&amp;#39;re not checking your CV — you&amp;#39;re checking your memory, with the CV as a prompt.&lt;/p&gt;
&lt;p&gt;The second is that you want the job. Every ambiguous requirement gets the benefit of the doubt, because marking it a gap means more work or, worse, deciding not to apply. That pressure runs one way, and it runs quietly.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s the same discipline as &lt;a href=&quot;https://chatbotcv.com/blog/interview-questions-based-on-your-cv&quot;&gt;finding the questions your CV can&amp;#39;t answer&lt;/a&gt;, just pointed at a specific advert instead of a general interviewer — both are versions of the same underlying problem, which is &lt;a href=&quot;https://chatbotcv.com/what-your-cv-doesnt-say&quot;&gt;everything your CV doesn&amp;#39;t say&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;Can a tool check your CV against a job description?&lt;/h2&gt;
&lt;p&gt;Most tools in this category will do it by counting. They compare the advert&amp;#39;s words against your CV&amp;#39;s words, give you a match percentage, and tell you which keywords to add. That&amp;#39;s a string comparison dressed up as advice, and it optimises for exactly the wrong thing: it rewards you for pasting in language you can&amp;#39;t back up.&lt;/p&gt;
&lt;p&gt;ChatBotCV&amp;#39;s &lt;a href=&quot;https://chatbotcv.com/cv-job-description-check&quot;&gt;job-advert cross-check&lt;/a&gt; works the other way round. It reads the advert for what it actually requires, turns each requirement into the question an interviewer would ask about it, and checks whether your CV can answer that question — so a requirement you genuinely cover in different words counts as covered, and a keyword you&amp;#39;ve pasted in without evidence doesn&amp;#39;t help you.&lt;/p&gt;
&lt;p&gt;It won&amp;#39;t reword your CV to match the advert. That&amp;#39;s the one thing it deliberately won&amp;#39;t do, because that&amp;#39;s the line between honest tailoring and faking it. It shows you the real gaps against the real target. What you add back is up to you... and stays true.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://chatbotcv.com/cv-job-description-check&quot;&gt;Cross-check your CV against a job advert →&lt;/a&gt;&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Strong CV, Failing Interviews: Why the Offers Don&apos;t Come</title>
    <link rel="alternate" type="text/html" href="https://chatbotcv.com/blog/strong-cv-but-failing-interviews" />
    <id>https://chatbotcv.com/blog/strong-cv-but-failing-interviews</id>
    <published>2026-07-16T00:00:00.000Z</published>
    <updated>2026-07-16T00:00:00.000Z</updated>
    <summary type="text">A strong CV gets you in the room, then no offer comes. Usually the gap isn&apos;t your experience — it&apos;s saying out loud what&apos;s written down.</summary>
    <content type="html">&lt;p&gt;There&amp;#39;s a particular kind of frustrating. Your CV works. You get the interviews. And then... the offers don&amp;#39;t come. Not once. Not twice. Enough times that you stop blaming luck and start wondering what&amp;#39;s actually wrong.&lt;/p&gt;
&lt;p&gt;Most job-search advice can&amp;#39;t help you here, because almost all of it is about the &lt;em&gt;earlier&lt;/em&gt; problem: getting past the screen, beating the ATS, getting into the room at all. You&amp;#39;re already in the room. Your problem is what happens next.&lt;/p&gt;
&lt;p&gt;And often it&amp;#39;s not your experience. It&amp;#39;s that you can&amp;#39;t say out loud what&amp;#39;s written down — one of &lt;a href=&quot;https://chatbotcv.com/what-your-cv-doesnt-say&quot;&gt;the three ways a CV leaves you exposed&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;Why do I get interviews but no job offers?&lt;/h2&gt;
&lt;p&gt;Start by reading the pattern correctly, because it&amp;#39;s unusually informative.&lt;/p&gt;
&lt;p&gt;Getting interviews consistently means your CV, your experience and your positioning all work. Those are the things most candidates struggle with, and they&amp;#39;re not your problem. Something is filtering you out &lt;em&gt;after&lt;/em&gt; the document has done its job — which narrows the possibilities enormously.&lt;/p&gt;
&lt;p&gt;Realistically it&amp;#39;s one of four things:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;You&amp;#39;re consistently the second-choice candidate.&lt;/strong&gt; Nothing is wrong; you&amp;#39;re losing narrow decisions to people with a slightly closer match. This shows up as good feedback and no offer, repeatedly.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Something specific keeps coming up badly.&lt;/strong&gt; One predictable question — a gap, a short stint, a missing skill — that you answer defensively every time.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;You&amp;#39;re being read as a weaker candidate than you are.&lt;/strong&gt; The experience is there, but it isn&amp;#39;t landing in conversation.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;You&amp;#39;re getting into rooms you don&amp;#39;t actually want.&lt;/strong&gt; Ambivalence reads clearly, and interviewers price it in.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The second and third are the common ones, and they&amp;#39;re both fixable. The rest of this is about the third, because it&amp;#39;s the one people rarely diagnose in themselves.&lt;/p&gt;
&lt;h2&gt;What is the paper-to-spoken gap?&lt;/h2&gt;
&lt;p&gt;A CV rewards one kind of thinking. Tight, edited, headline-first. You get to draft it, cut it, polish it, sit with it. Every line is the finished version of a thought.&lt;/p&gt;
&lt;p&gt;An interview rewards the opposite. Live, unedited, first-take. Someone asks a question and you have seconds, not drafts.&lt;/p&gt;
&lt;p&gt;Some people are naturally good at the second thing. They talk in headlines, land the point first, sound confident even when they&amp;#39;re improvising. Others... aren&amp;#39;t. Especially people who think in full context... who want to explain the whole situation before they get to the result, because to them the situation &lt;em&gt;is&lt;/em&gt; the point.&lt;/p&gt;
&lt;p&gt;On paper that carefulness reads as strength. Out loud, under pressure, it reads as rambling. Same person, same experience, opposite impression. That&amp;#39;s the gap. It has nothing to do with how good you actually are, and everything to do with which format you&amp;#39;re being judged in.&lt;/p&gt;
&lt;p&gt;It shows up in recognisable ways. You answer the question you find interesting rather than the one you were asked. You give the full chronology when they wanted the outcome. You qualify a strong claim into a weak one, because the honest version has caveats and you can&amp;#39;t bear to leave them out. Every one of those is a good instinct in writing and a liability in conversation.&lt;/p&gt;
&lt;h2&gt;Why doesn&amp;#39;t &amp;quot;just be more confident&amp;quot; work?&lt;/h2&gt;
&lt;p&gt;Because the problem isn&amp;#39;t confidence, it&amp;#39;s retrieval. Under interview pressure, you&amp;#39;re trying to &lt;em&gt;compose&lt;/em&gt; an answer in real time... find the story, structure it, lead with the right part, keep it short... all while being watched. That&amp;#39;s a lot of live processing, and it&amp;#39;s exactly what falls apart when you&amp;#39;re nervous.&lt;/p&gt;
&lt;p&gt;The people who seem effortless aren&amp;#39;t composing. They&amp;#39;re playing back. They&amp;#39;ve told the story enough times that saying it isn&amp;#39;t work anymore. The words are already there.&lt;/p&gt;
&lt;p&gt;That&amp;#39;s the actual skill, and it&amp;#39;s trainable. Not &amp;quot;be more confident.&amp;quot; Rehearse the specific answers enough that retrieval becomes playback instead of composition.&lt;/p&gt;
&lt;p&gt;It also explains why interviews often go better once you&amp;#39;ve had a few — and why that improvement doesn&amp;#39;t transfer as well as you&amp;#39;d hope. You&amp;#39;re not getting braver. You&amp;#39;re accumulating rehearsed answers. Which means you can get the same effect on purpose, in advance, instead of paying for it with the first three interviews you actually wanted.&lt;/p&gt;
&lt;h2&gt;How do you get better at interviews when your CV is already strong?&lt;/h2&gt;
&lt;p&gt;Three things, roughly in order.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Know which questions are coming.&lt;/strong&gt; Most interview questions aren&amp;#39;t a mystery... they&amp;#39;re &lt;a href=&quot;https://chatbotcv.com/blog/interview-questions-based-on-your-cv&quot;&gt;built from your CV&lt;/a&gt;. The claims, the gaps, the obvious &amp;quot;why you.&amp;quot; If you know which questions your CV invites, you can rehearse the ones that matter instead of preparing for everything and nailing nothing.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Practise compressing, not just answering.&lt;/strong&gt; Take your best story and force it into fifteen seconds. Then into one sentence. The point isn&amp;#39;t to memorise a script... it&amp;#39;s to find the headline, so that under pressure you lead with the result and fill in the context only if they want it.&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s what that actually looks like. Start with the version you&amp;#39;d give unprompted:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;quot;So when I joined, the billing system was on a legacy stack that nobody really owned, and there&amp;#39;d been two previous attempts to migrate it that stalled, partly because the finance team wasn&amp;#39;t bought in. I spent the first couple of months just mapping dependencies, and then we...&amp;quot;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;That&amp;#39;s ninety seconds in and the interviewer still doesn&amp;#39;t know what happened. Now the fifteen-second version:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;quot;I led the billing migration that two previous attempts had failed to land. Took eight months, cut month-end close from five days to one. The unlock was getting finance to co-own the plan rather than sign it off.&amp;quot;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;And the one-sentence version:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;quot;I landed a billing migration that had failed twice before, and it cut month-end close from five days to one.&amp;quot;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Same material. The last two lead with the result and leave the interviewer somewhere to go — they&amp;#39;ll ask about the failed attempts, or the finance politics, or the eight months, and now you&amp;#39;re answering a question they chose rather than narrating. Leading with the point is the single habit that most changes how &amp;quot;strong on paper&amp;quot; people come across.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Rehearse out loud, repeatedly.&lt;/strong&gt; Silently rehearsing isn&amp;#39;t the same. The gap is a spoken one, so the practice has to be spoken. Recording yourself is unpleasant and unusually effective — most people discover that what felt like a crisp answer ran two minutes, or that they buried the result in a subordinate clause halfway through.&lt;/p&gt;
&lt;p&gt;Repetition is what turns composing into playback. Five run-throughs of one answer beats one run-through of five.&lt;/p&gt;
&lt;h2&gt;How do I know which questions to rehearse?&lt;/h2&gt;
&lt;p&gt;Not from a generic list. From your own CV, because that&amp;#39;s where the interviewer is getting them.&lt;/p&gt;
&lt;p&gt;Go through it line by line and mark every claim you couldn&amp;#39;t immediately back with a specific example, every number that isn&amp;#39;t written down, and every gap or move the page doesn&amp;#39;t explain. That&amp;#39;s your rehearsal list, and it&amp;#39;s usually shorter than you expect and much more pointed.&lt;/p&gt;
&lt;p&gt;You can do all of this alone, with a voice recorder and your own CV. It&amp;#39;s just tedious and hard to be honest with yourself about — you know what you meant by every line, so every line reads as well-supported.&lt;/p&gt;
&lt;p&gt;That&amp;#39;s the direction I&amp;#39;m building ChatBotCV toward. The free version already shows you &lt;a href=&quot;https://chatbotcv.com/blog/interview-questions-based-on-your-cv&quot;&gt;which questions your CV can&amp;#39;t answer well&lt;/a&gt;... your own list of likely weak spots, pulled straight from what&amp;#39;s on the page, without inventing anything to flatter you. If you&amp;#39;re preparing for one specific role, you can also &lt;a href=&quot;https://chatbotcv.com/cv-job-description-check&quot;&gt;check your CV against that job advert&lt;/a&gt; and get the same treatment for that advert&amp;#39;s requirements.&lt;/p&gt;
&lt;p&gt;Either way it&amp;#39;s the starting point for the exact rehearsal above: know the questions, then drill them until saying them out loud is playback, not panic.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://chatbotcv.com/&quot;&gt;See which questions your CV leaves you exposed on →&lt;/a&gt;&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Interview Questions Based on Your CV: The Ones You Can&apos;t Answer</title>
    <link rel="alternate" type="text/html" href="https://chatbotcv.com/blog/interview-questions-based-on-your-cv" />
    <id>https://chatbotcv.com/blog/interview-questions-based-on-your-cv</id>
    <published>2026-07-14T00:00:00.000Z</published>
    <updated>2026-07-14T00:00:00.000Z</updated>
    <summary type="text">Interviewers build their questions from your CV — and a strong CV still leaves predictable gaps. Here&apos;s how to find yours before the interview.</summary>
    <content type="html">&lt;p&gt;Most interviewers don&amp;#39;t come with a generic script. They read your CV and build their questions straight from it... your roles, your claims, the gaps between the lines. Which means the single best way to prepare isn&amp;#39;t memorising a list of &amp;quot;common interview questions.&amp;quot; It&amp;#39;s working out which questions &lt;em&gt;your&lt;/em&gt; CV invites... and which ones it can&amp;#39;t back up.&lt;/p&gt;
&lt;p&gt;Because a CV can look strong and still leave you exposed. Not because you&amp;#39;re a weak candidate. Because a CV is a summary, and a summary leaves things out — &lt;a href=&quot;https://chatbotcv.com/what-your-cv-doesnt-say&quot;&gt;which is the whole problem&lt;/a&gt;, and this is one of the three shapes it takes.&lt;/p&gt;
&lt;p&gt;You usually find out where in the worst possible place. Mid-interview. Someone asks about a line on the page, and you realise the detail they want isn&amp;#39;t actually there... so now you&amp;#39;re &lt;a href=&quot;https://chatbotcv.com/blog/strong-cv-but-failing-interviews&quot;&gt;improvising under pressure&lt;/a&gt; instead of answering something you&amp;#39;d already thought through.&lt;/p&gt;
&lt;h2&gt;What questions do interviewers ask from your CV?&lt;/h2&gt;
&lt;p&gt;They cluster into five recognisable types. Read each list with your own CV open, and mark the ones you couldn&amp;#39;t answer well in the next thirty seconds.&lt;/p&gt;
&lt;h3&gt;Questions about leadership and influence&lt;/h3&gt;
&lt;p&gt;Your CV says &amp;quot;led a team of six.&amp;quot; Fine. But can it back up &lt;em&gt;how&lt;/em&gt;? The one-line claim is on the page. The story behind it usually isn&amp;#39;t... and that&amp;#39;s exactly what gets probed.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Tell me about a time you led a project that went wrong. What did you do?&lt;/li&gt;
&lt;li&gt;How did you bring round someone who disagreed with your approach?&lt;/li&gt;
&lt;li&gt;What did you change about how the team worked?&lt;/li&gt;
&lt;li&gt;Describe a time you had to give someone difficult feedback.&lt;/li&gt;
&lt;li&gt;Who have you developed, and where did they end up?&lt;/li&gt;
&lt;li&gt;What would your team say was hardest about working with you?&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Questions about impact and numbers&lt;/h3&gt;
&lt;p&gt;A lot of CVs describe what someone was responsible for without saying what changed because they were there. &amp;quot;Managed the migration&amp;quot; versus &amp;quot;cut processing time by a third.&amp;quot; If the number isn&amp;#39;t written down, you&amp;#39;ll get asked for it live... and &amp;quot;I don&amp;#39;t remember exactly&amp;quot; is a weak answer to give in the room.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;What was the measurable outcome of that project?&lt;/li&gt;
&lt;li&gt;How much did that save, or make, or speed up?&lt;/li&gt;
&lt;li&gt;How did you know it worked? What were you measuring?&lt;/li&gt;
&lt;li&gt;What was the situation before you arrived?&lt;/li&gt;
&lt;li&gt;Which part of that result was actually yours?&lt;/li&gt;
&lt;li&gt;What would have happened if you hadn&amp;#39;t done it?&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Questions about gaps and jumps in the timeline&lt;/h3&gt;
&lt;p&gt;A six-month break, a short stint, a move that looks odd from outside. If the CV doesn&amp;#39;t account for it, an interviewer will. Silence on the page becomes a question across the table.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Talk me through the gap between these two roles.&lt;/li&gt;
&lt;li&gt;Why did you leave after eight months?&lt;/li&gt;
&lt;li&gt;What made you move from that industry into this one?&lt;/li&gt;
&lt;li&gt;You&amp;#39;ve had three roles in four years — what are you looking for now?&lt;/li&gt;
&lt;li&gt;Why are you leaving your current role?&lt;/li&gt;
&lt;li&gt;This role is a step sideways on paper. Why?&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Questions about the skills you listed&lt;/h3&gt;
&lt;p&gt;Every tool, language and methodology on your CV is a standing invitation. Listing something you touched once is the cheapest possible claim to make and the easiest to catch.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;You&amp;#39;ve listed Python — what&amp;#39;s the most complex thing you&amp;#39;ve built with it?&lt;/li&gt;
&lt;li&gt;How would you rate yourself on that, honestly, against someone who does it daily?&lt;/li&gt;
&lt;li&gt;When did you last use it, and what for?&lt;/li&gt;
&lt;li&gt;What&amp;#39;s a mistake you&amp;#39;ve made with it?&lt;/li&gt;
&lt;li&gt;Walk me through how you&amp;#39;d approach [a standard problem in that tool].&lt;/li&gt;
&lt;li&gt;Which of these skills would you say is your strongest, and which is thinnest?&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Questions about fit — the &amp;quot;why you?&amp;quot;&lt;/h3&gt;
&lt;p&gt;The most predictable question there is, and the one most CVs are quietly unprepared for... because a CV lists what you&amp;#39;ve done without ever making the case for why it adds up to &lt;em&gt;this&lt;/em&gt; role. If you&amp;#39;re pointing the same CV at a specific advert, it&amp;#39;s worth &lt;a href=&quot;https://chatbotcv.com/blog/check-cv-against-job-description&quot;&gt;checking it against that job description&lt;/a&gt; so you know exactly which of its requirements you can and can&amp;#39;t speak to.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Why this role, and why now?&lt;/li&gt;
&lt;li&gt;What makes you a better fit than someone who&amp;#39;s done this exact job before?&lt;/li&gt;
&lt;li&gt;Which part of the job description are you weakest on?&lt;/li&gt;
&lt;li&gt;What do you want to be doing in three years?&lt;/li&gt;
&lt;li&gt;What&amp;#39;s the thing you&amp;#39;d need most help with in your first six months?&lt;/li&gt;
&lt;li&gt;What do you know about us that isn&amp;#39;t on the website?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;None of these mean your CV is bad. They mean it&amp;#39;s a document, and documents stay quiet on things that were true but never got written down.&lt;/p&gt;
&lt;h2&gt;Why does a strong CV still leave you exposed?&lt;/h2&gt;
&lt;p&gt;Because the qualities that make a CV good to read are the same ones that make it thin under questioning.&lt;/p&gt;
&lt;p&gt;A good CV is compressed. It says &amp;quot;led the migration of a legacy billing system&amp;quot; instead of four paragraphs. That compression is what gets it read at all — but everything compressed out of it is still fair game in the room, and you&amp;#39;re now reconstructing it live rather than reading it back.&lt;/p&gt;
&lt;p&gt;A good CV is also &lt;em&gt;finished&lt;/em&gt;. Every line is the polished version of a thought you had weeks ago. So the claims sound settled and specific, which invites specific follow-ups: an interviewer reads &amp;quot;cut onboarding time by 40%&amp;quot; and quite reasonably asks how it was measured. The more confident the line, the sharper the question it draws.&lt;/p&gt;
&lt;p&gt;That&amp;#39;s why &amp;quot;my CV is strong&amp;quot; and &amp;quot;I&amp;#39;m prepared&amp;quot; are different statements. A strong CV generates &lt;em&gt;more&lt;/em&gt; pointed questions, not fewer.&lt;/p&gt;
&lt;h2&gt;How do I find the questions my own CV can&amp;#39;t answer?&lt;/h2&gt;
&lt;p&gt;You can do this by hand, and the method is straightforward. Reread your CV line by line, and for each claim ask two questions:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;If an interviewer pushed on this, could I answer for it right now?&lt;/strong&gt; Not eventually — now, out loud, with a specific example.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Is the evidence actually on the page,&lt;/strong&gt; or am I filling it in from memory?&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Any line where the answer to either is no goes on a list. That list is your prep, and it&amp;#39;s usually much shorter and much more specific than a generic &amp;quot;50 common interview questions&amp;quot; article.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s slow, and the hard part is objectivity. You know what you meant when you wrote each line, so every claim reads as well-supported to you. Reading your own CV as a stranger is genuinely difficult.&lt;/p&gt;
&lt;p&gt;Or you can have it done for you. That&amp;#39;s what I built ChatBotCV to do. You upload your CV, and it runs the questions an interviewer is likely to ask straight against it... then shows you the ones it can&amp;#39;t answer well from what&amp;#39;s actually written. It won&amp;#39;t invent detail to fill a gap. If the CV doesn&amp;#39;t say it, it tells you the CV doesn&amp;#39;t say it. That&amp;#39;s the whole point... an honest read of where you&amp;#39;re exposed, not a flattering one.&lt;/p&gt;
&lt;p&gt;Takes about a minute. You end up with a short list of your own weak spots, in your own words, before anyone else gets to ask.&lt;/p&gt;
&lt;h2&gt;Should I add the missing detail to my CV?&lt;/h2&gt;
&lt;p&gt;Sometimes, and the test is the same one that applies to &lt;a href=&quot;https://chatbotcv.com/blog/check-cv-against-job-description&quot;&gt;tailoring a CV to a specific advert&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If the detail is real and you simply never wrote it down — the number existed, the example happened, the responsibility was yours — then adding it isn&amp;#39;t embellishment, it&amp;#39;s correction. Do it.&lt;/p&gt;
&lt;p&gt;If it isn&amp;#39;t real, adding it just moves the problem somewhere worse. A gap on paper is a question you can prepare for. A fabricated line is a question you have to survive. Prepare for the question instead, and answer it plainly when it comes: interviewers are far more forgiving of a clearly-stated limitation than of a claim that comes apart under two follow-ups.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://chatbotcv.com/&quot;&gt;Check your CV for free →&lt;/a&gt;&lt;/p&gt;
</content>
  </entry>
</feed>
