restaurant-report-pdf

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

A tool that turns existing restaurant audit Markdown files into one polished PDF report. Markdown is a plain-text format commonly used for structured notes and documents.

In plain words
What is it for?
Scanning RESTAURANT-*.md files, combining audits about reviews, menus, pricing, online presence, social media, SEO, advertising, and competitors, and generating a PDF.
Why use it?
It combines separate analysis files into a client-ready document instead of requiring the reports to be assembled by hand.

Skill for Claude CodeCodex

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

Good fit Scanning RESTAURANT-*.md files, combining audits about reviews, menus, pricing, online presence, social media, SEO, advertising, and competitors, and generating a PDF.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/zubair-trabzada/ai-restaurant-claude/restaurant-report-pdf/github.svg)](https://agentmods.dev/skills/zubair-trabzada/ai-restaurant-claude/restaurant-report-pdf)
Your own site
<a href="https://agentmods.dev/skills/zubair-trabzada/ai-restaurant-claude/restaurant-report-pdf"><img src="https://agentmods.dev/badge/skills/zubair-trabzada/ai-restaurant-claude/restaurant-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 restaurant-report-pdf

Your own site · 80×15
<a href="https://agentmods.dev/skills/zubair-trabzada/ai-restaurant-claude/restaurant-report-pdf"><img src="https://agentmods.dev/badge/skills/zubair-trabzada/ai-restaurant-claude/restaurant-report-pdf.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,350 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.00032 $0.01350
Opus 5 $0.00016 $0.00675
Sonnet 5 $0.00006 $0.00270
Haiku 4.5 $0.00003 $0.00135

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

Security

Grade A, and why

restaurant-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.

skills/restaurant-report-pdf/SKILL.md · 170 lines

How it starts

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

Restaurant PDF Report Generator

You compile all the markdown analyses produced by other /restaurant skills (RESTAURANT-AUDIT-.md, RESTAURANT-REVIEWS-.md, RESTAURANT-MENU-*.md, etc.) in the current working directory into a single polished, client-ready PDF report using the bundled ReportLab Python script.

DISCLAIMER: AI-generated report. Owner should review before sending to clients.


When to use

  • /restaurant report-pdf — generate PDF from existing markdown analyses
  • "make a PDF of the restaurant audit"
  • "client-ready report for [name]"

Execution Pipeline

Step 1: Scan Current Directory

List all RESTAURANT-*.md files in the cwd:

ls RESTAURANT-*.md

Recognize these files:

  • RESTAURANT-AUDIT-[Name].md — main audit (highest priority)
  • RESTAURANT-REVIEWS-[Name].md
  • RESTAURANT-MENU-[Name].md
  • RESTAURANT-PRICING-[Name].md
  • RESTAURANT-ONLINE-[Name].md
  • RESTAURANT-PHOTOS-[Name].md
  • RESTAURANT-SOCIAL-[Name].md
  • RESTAURANT-SEO-[Name].md
  • RESTAURANT-ADS-[Name].md
  • RESTAURANT-EMAIL-[Name].md
  • RESTAURANT-COMPETITORS-[Name].md
  • RESTAURANT-RESPONSES-[Name].md

Step 2: Extract Key Data

From each markdown file, extract:

  • Restaurant name (from filename or top-of-file)
  • Date
  • Score (if applicable)
  • Top findings
  • Top recommendations
  • Tables of data

Assemble into a single JSON payload like:

{
  "restaurant_name": "Bella Italia Trattoria",
  "city": "Austin, TX",
  "cuisine": "Italian",
  "date": "2026-05-20",
  "overall_score": 64,
  "categories": {
    "Reviews & Reputation": {"score": 68, "weight": "25%"},
    "Menu & Pricing": {"score": 72, "weight": "20%"},
    "Online Presence": {"score": 55, "weight": "20%"},
    "Marketing & Engagement": {"score": 48, "weight": "15%"},
    "Local Competition": {"score": 70, "weight": "20%"}
  },
  "reviews": {...},
  "menu": {...},
  "online": {...},
  "competitors": [...],
  "action_plan": [...]
}

Step 3: Write Temp JSON

Save extracted data to /tmp/restaurant_data.json.

Read the full file on GitHub · 170 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 · 170 lines · 32 tokens per session scan A 705ff3010369

Subscribe to this mod's changes

restaurant-report-pdf is a skill published in the GitHub repository zubair-trabzada/ai-restaurant-claude (26 stars, last pushed 3mo ago), licensed MIT. It adds 32 tokens to every session and 1,350 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.

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

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

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

template-pitch-deck

Pitch-deck generation exemplar — short/medium/long PDF+PPTX decks from one token-resolved, diligence-cited content source.

docxology/template · 35 tokens

template-newspaper

Newspaper layout engine exemplar — 12-page tabloid/broadsheet PDF from structured YAML via pure-Python ReportLab.

docxology/template · 29 tokens