recruit-report-pdf

recruit-report-pdf is a skill for Claude Code, Codex from tal7aouy/RecruitKit. It costs 45 tokens per session (1,478 once invoked), scanned A, a copy of recruit-report-pdf, MIT.

A tool that reads recruiting analysis files and turns them into a client-ready PDF report. It looks for files named RECRUIT-*.md, which are Markdown text files containing recruiting findings and scores.

In plain words
What is it for?
Use it to compile hiring-readiness scores, candidate or role findings, recommendations, and pipeline information into a PDF.
Why use it?
It collects information spread across recruiting notes into one report with a cover, score display, summary dashboard, and prioritized action plan. The generated report still needs review before it is sent to a client.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths.

Good fit Use it to compile hiring-readiness scores, candidate or role findings, recommendations, and pipeline information into a PDF.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tal7aouy/recruitkit/recruit-report-pdf
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add tal7aouy/RecruitKit --skill recruit-report-pdf
Clone the repo
git clone --depth 1 https://github.com/tal7aouy/RecruitKit

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for recruit-report-pdf

README.md
[![agentmods](https://agentmods.dev/badge/skills/tal7aouy/recruitkit/recruit-report-pdf/github.svg)](https://agentmods.dev/skills/tal7aouy/recruitkit/recruit-report-pdf)
Your own site
<a href="https://agentmods.dev/skills/tal7aouy/recruitkit/recruit-report-pdf"><img src="https://agentmods.dev/badge/skills/tal7aouy/recruitkit/recruit-report-pdf/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for recruit-report-pdf

Your own site · 80×15
<a href="https://agentmods.dev/skills/tal7aouy/recruitkit/recruit-report-pdf"><img src="https://agentmods.dev/badge/skills/tal7aouy/recruitkit/recruit-report-pdf.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,478 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 95% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00045 $0.01478
Opus 5 $0.00023 $0.00739
Sonnet 5 $0.00009 $0.00296
Haiku 4.5 $0.00005 $0.00148

Measured 10d ago against content hash 4250d6965bab, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

recruit-report-pdf scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

95% identical to recruit-report-pdf — 4 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/recruit-report-pdf/SKILL.md · 213 lines

How it starts

The opening of the file, as written. The whole thing — 213 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Professional PDF Report Generator

You are the PDF Report engine for the RecruitKit. When invoked with /recruit report-pdf, you scan the current directory for RECRUIT-*.md files, extract scores and structured data, and generate a polished, client-ready PDF report. The goal: a deliverable that justifies retainer fees and looks like it came from a top-tier recruiting agency.

DISCLAIMER: For educational/research purposes only. PDF reports must be reviewed before sending to clients.


TRIGGER

  • /recruit report-pdf — scan + generate
  • Also: "generate PDF", "create recruiting report", "compile findings"

INPUT PROCESSING

  1. Scan current working directory for files matching RECRUIT-*.md
  2. Read and parse each file for:
    • Role title / candidate name / company
    • Hiring Readiness Score
    • Sub-scores by category
    • Key findings
    • Recommendations
    • Pipeline data
  3. If no RECRUIT-*.md files found, ask whether to generate a sample/demo PDF
  4. If user wants a specific role's PDF, accept role name as argument

EXECUTION PIPELINE

STEP 1: Discover Source Files

ls RECRUIT-*.md 2>/dev/null

If files exist:

  • RECRUIT-ANALYSIS-*.md → main data source (highest priority)
  • RECRUIT-JOB-*.md → JD details
  • RECRUIT-SCREEN-*.md → candidate pipeline
  • RECRUIT-INTERVIEW-*.md → interview framework
  • RECRUIT-SALARY-*.md → comp benchmarks
  • RECRUIT-OFFER-*.md → offer details
  • RECRUIT-EMPLOYER-*.md → employer brand
  • RECRUIT-ONBOARD-*.md → 30/60/90 plan
  • RECRUIT-PIPELINE.md → pipeline status

If no files: run with --demo flag for sample PDF.

STEP 2: Extract Structured Data

For each markdown file, extract:

  • Headline score(s)
  • Sub-scores
  • Tables (parse markdown tables into rows)
  • Bulleted findings (top 5-10 per section)
  • Recommendations (top 5-10)
  • Action items

Build a structured JSON object:

{
  "role_title": "...",
  "company": "...",
  "date": "...",
  "overall_score": ...,
  "categories": {...},
  "executive_summary": "...",
  "jd_analysis": {...},
  "screening": {...},
  "interview": {...},
  "salary": {...},
  "employer": {...},
  "action_plan": {...},
  ...
}

Read the full file on GitHub · 213 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 213 lines · 45 tokens per session scan A 4250d6965bab

Subscribe to this mod's changes

recruit-report-pdf is a skill published in the GitHub repository tal7aouy/RecruitKit (3 stars, last pushed 1mo ago), licensed MIT. It adds 45 tokens to every session and 1,478 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 95% identical to recruit-report-pdf, differing in 4 lines, and is treated as a copy.

Related

Other skills, from other repositories

recruit-report-pdf

Professional PDF Report Generator — scans current directory for RECRUIT-.md files, extracts scores and data, generates polished client-ready PDF with cover, score gauge, dashboard, and prioritized action plan.

zubair-trabzada/ai-recruiter-claude · 45 tokens

restaurant-report-pdf

Generate a professional PDF restaurant report by scanning RESTAURANT-.md files in current directory and running the bundled Python ReportLab generator.

zubair-trabzada/ai-restaurant-claude · 32 tokens

geo-report-pdf

Generate a professional PDF report from a GEO audit using pandoc + Chrome headless. Converts GEO-AUDIT-REPORT.md into a styled, client-ready PDF with a cover page, color-coded score tables, severity-tagged findings, and a 90-day roadmap.

zubair-trabzada/geo-seo-claude · 59 tokens

html-report

Nested swiss-knife reference for standalone HTML deliverables. Produce polished, self-contained HTML deliverables (research memos, literature maps, dashboards, audit reports, side-by-side comparisons) that humans open in a browser or receive as Telegram/email attachments. Covers a standalone HTML skeleton, math…

Lingtai-AI/lingtai · 119 tokens

paper-fetch

Use whenever the user wants to obtain, download, or fetch a paper's PDF — given a DOI, an arXiv id, a paper title, a citation, or a list of DOIs. Trigger on phrases like "download this paper", "find the PDF for [DOI]", "grab me the [Nature/bioRxiv/arXiv] paper on X", "get the open-access version", "I need this…

Agents365-ai/paper-fetch · 162 tokens

document-skills

Professional document creation, editing, and analysis for Office formats (docx, pdf, pptx, xlsx). Use when working with Word documents, PDFs, PowerPoint presentations, or Excel spreadsheets.

travisjneuman/.claude · 44 tokens