Career
Command
/generate-pdf
Generate PDF documents (resume, cover letter, or both) with automatic validation and theme selection | argument-hint: company-name [resume|cover-letter|both]
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/generate-pdf
Context preview
What this command does when you run it.
Generate PDF documents (resume, cover letter, or both) with automatic validation and theme selection | argument-hint: company-name [resume|cover-letter|both]
Command definition
generate-pdf.mdallowed-tools: Bash(bun run generate-pdf:*) description: Generate PDF documents (resume, cover letter, or both) with automatic validation and theme selection | argument-hint: company-name [resume|cover-letter|both]
Generate PDF documents for company: $1
Document type: ${2:-both}
Run PDF generation with company-specific tailored data:
if [ -z "$1" ]; then
echo "Error: Company name is required"
echo "Usage: /generate-pdf company-name [resume|cover-letter|both]"
exit 1
fi
COMPANY_NAME="$1"
DOCUMENT_TYPE="${2:-both}"
echo "Generating PDF documents for company: $COMPANY_NAME"
echo "Document type: $DOCUMENT_TYPE"
if [ "$DOCUMENT_TYPE" = "both" ]; then
bun run generate-pdf -C "$COMPANY_NAME"
else
bun run generate-pdf -C "$COMPANY_NAME" -D "$DOCUMENT_TYPE"
fi Ships withclaude-code-job-tailor
AI-powered resume optimization system that analyzes job postings, ranks requirements by importance, and generates tailored PDFs in under 60 seconds.
Get the whole plugin
Stats
167
Stars
42
Forks
Quiet
Maintenance
TypeScript
Language
9mo ago
Last commit
11mo ago
Created
Repo: javiera-vasquez/claude-code-job-tailor
In this plugin
See everything inside 
