I Built a Job Match Agent with Hermes Agent, And It Texts Me the Results on WhatsApp A full-stack and AI engineer built a WhatsApp-integrated job match agent using the Hermes Agent framework that autonomously analyzes job postings against a user's CV and returns a scored fit analysis and tailored cover letter within two minutes. The system, called Job Match Agent, runs on a Windows machine and uses a custom Hermes skill written in markdown with YAML frontmatter to plan and execute multi-step reasoning, including fetching job descriptions, extracting CV data, and generating responses without a hardcoded pipeline. In tests against two live job postings, the agent produced scores of 64/100 and 84/100, with detailed breakdowns of required skills, experience, domain match, and verdicts. This is a submission for the Hermes Agent Challenge Job hunting is tedious. You find a posting, you open your CV, you squint at both for 20 minutes trying to figure out if you're actually a good fit, then you spend another hour writing a cover letter that probably sounds like every other cover letter. I'm a full-stack and AI engineer currently on the market. I thought: what if I could just send a job URL to my phone and get back a scored analysis and a tailored cover letter while I'm on the bus? That's what I built with Hermes Agent. Job Match Agent is a custom Hermes skill that: The whole thing runs on my Windows machine. I talk to it from my phone. One message in, full analysis back. Flow:Type "Job match this: URL " on WhatsApp → Hermes fetches the job, reads your CV, scores fit, writes cover letter → full response back on your phone in ~2 minutes. GitHub: hermes-job-match-agent https://github.com/nnoromiv/job-match This is where it gets interesting. I didn't write a script that does these steps mechanically. I wrote a skill a markdown file that teaches Hermes Agent what to do and Hermes handles all the planning and reasoning itself. When I send a job URL, here's what Hermes actually does autonomously: job-match skill from its skills directory read cv.py to extract my CV text from the PDF on disk fetch job.py to scrape the job description from the URLThat's real multi-step agentic behavior; planning, tool execution, reasoning, output , not a hardcoded pipeline. Hermes decides the order of operations, handles failures gracefully, and formats the final response for WhatsApp automatically. The memory system is what makes the WhatsApp UX smooth. I told Hermes my CV path once: "Please remember my CV is always at: C:\Users...\Christian Nnorom.pdf" Hermes saved it. Now from my phone I just send: "Job match this: URL " No repeating myself. No attaching files. Hermes already knows. The two Python scripts are focused tools. All the intelligence the planning, scoring rubric, and cover letter logic, lives in the skill's instructions, which Hermes reads and follows. Hermes skills are markdown files with YAML frontmatter. No plugin registration, no framework boilerplate. Drop a SKILL.md into the skills folder and Hermes picks it up automatically. --- name: job-match description: "Analyze a job posting against a CV/resume to score fit, explain reasoning, and generate a tailored cover letter." version: 1.0.0 author: Christian Nnorom platforms: linux, macos, windows metadata: hermes: tags: Jobs, Career, CV, Resume, Cover Letter, Recruitment --- The skill defines the four-step workflow in plain English, with scoring criteria, output format templates, and fallback handling. Hermes reads this and executes it — including deciding when to run which script and how to handle edge cases like a URL that requires JavaScript rendering. I tested it against two live job postings on the same day I built it. Role 1 — KTP Associate, AI & Computer Vision UWE Bristol / Foster + Freeman Overall Score: 64/100 Required Skills: 20/40 — Strong ML/CV experience but no PhD mandatory Experience Level: 12/20 — 3+ years industry experience, MSc distinction Domain Match: 14/20 — Applied AI/CV work relevant, forensic context less so Nice-to-haves: 18/20 — Docker, AWS, MLOps, full-stack all present Verdict: Apply. Lead with production AI pipeline experience. Address the PhD gap directly by highlighting MSc distinction and immediate readiness. Role 2 — AI Platform Engineer, KTP Associate Aston University / Modular Data Ltd Overall Score: 84/100 Required Skills: 32/40 — Strong match on cloud/microservices, MLOps, Python, ethical AI SHAP/LIME . Gaps: knowledge graphs, Go/Java. Experience Level: 18/20 — MSc Distinction + 3+ years production AI systems Domain Match: 16/20 — Modular AI platform work aligns directly Nice-to-haves: 18/20 — Open-source, AWS cert, multi-cloud, ethical AI all present Verdict: Strong fit. Emphasise modular platform delivery and MLOps expertise. Two roles, two honest scores — 64 and 84. The agent called out the PhD gap on the first role rather than inflating the score. That's exactly what you want from a tool like this. Each analysis came with a full cover letter — 248 words, keywords matched from the job description, no generic openers. read cv.py — tries pdfplumber first, falls back to pypdf , prints extracted text with a word/line count header. Fails loudly with actionable errors if extraction fails. fetch job.py — uses httpx with a real browser User-Agent, then beautifulsoup4 to extract the job container using a prioritised list of selectors covering LinkedIn, Greenhouse, Lever, Workday, and generic semantic tags. Falls back gracefully with instructions to paste text directly if the page requires JavaScript. pip install pdfplumber httpx beautifulsoup4 Full code at: github.com/nnoromiv/job-match https://github.com/nnoromiv/job-match Skills are surprisingly powerful. Writing the workflow in markdown felt almost too simple, but it works because Hermes actually reads and follows the instructions rather than vaguely gesturing at them. The memory system is the difference between a demo and a real tool. Storing the CV path once and never repeating it makes the WhatsApp UX feel like a product, not a hack. Honest agentic output requires honest prompting. The scoring rubric explicitly says "be honest in the gap analysis a useful score requires accurate assessment." Without that, agents flatter. With it, you get a 64 that's actually useful. The foundation is solid. Hermes Agent handles the orchestration; extending the skill is all it takes. job-match folder into your Hermes skills directory pip install pdfplumber httpx beautifulsoup4 Built in one day for the Hermes Agent Challenge. Running on a Windows VPS, reachable from WhatsApp.