recruit-report-pdf

recruit-report-pdf is a skill for Claude Code, Codex from zubair-trabzada/ai-recruiter-claude. It costs 45 tokens per session (1,482 once invoked), scanned A, original, MIT.

A PDF report generator turns RECRUIT-*.md files—Markdown documents containing recruiting findings—into a formatted report with scores, summaries, and an action plan.

In plain words
What is it for?
Use it to compile recruiting analyses, hiring-readiness scores, pipeline information, recommendations, and other findings into a PDF.
Why use it?
It gathers information from several analysis files into one document suitable for review or sharing with 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 recruiting analyses, hiring-readiness scores, pipeline information, recommendations, and other findings into a PDF.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zubair-trabzada/ai-recruiter-claude/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 zubair-trabzada/ai-recruiter-claude --skill recruit-report-pdf
Clone the repo
git clone --depth 1 https://github.com/zubair-trabzada/ai-recruiter-claude

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/zubair-trabzada/ai-recruiter-claude/recruit-report-pdf/github.svg)](https://agentmods.dev/skills/zubair-trabzada/ai-recruiter-claude/recruit-report-pdf)
Your own site
<a href="https://agentmods.dev/skills/zubair-trabzada/ai-recruiter-claude/recruit-report-pdf"><img src="https://agentmods.dev/badge/skills/zubair-trabzada/ai-recruiter-claude/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/zubair-trabzada/ai-recruiter-claude/recruit-report-pdf"><img src="https://agentmods.dev/badge/skills/zubair-trabzada/ai-recruiter-claude/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,482 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 original No closer match found 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.01482
Opus 5 $0.00023 $0.00741
Sonnet 5 $0.00009 $0.00296
Haiku 4.5 $0.00005 $0.00148

Measured 12d ago against content hash 923948289ac7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, 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 12d 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

Copies of this mod

1 near-identical copy found in the catalogue:

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 AI Recruiter Team. 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. 12d ago First seen · 213 lines · 45 tokens per session scan A 923948289ac7

Subscribe to this mod's changes

recruit-report-pdf is a skill published in the GitHub repository zubair-trabzada/ai-recruiter-claude (26 stars, last pushed 3mo ago), licensed MIT. It adds 45 tokens to every session and 1,482 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

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.

tal7aouy/RecruitKit · 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

realestate-report-pdf

Professional PDF Property Report Generator — compiles all PROPERTY-.md analysis files into a polished, client-ready PDF with score gauges, comparison tables, financial projections, and investment recommendations.

zubair-trabzada/ai-realestate-claude · 41 tokens

ads-report-pdf

Professional PDF Ad Strategy Report Generator.

zubair-trabzada/ai-ads-claude · 11 tokens