premium-resume-studio: Skill for Claude Code

.claude/skills/run-premium-resume-studio/SKILL.md

run-premium-resume-studio is a skill for Claude Code from srksourabh/premium-resume-studio. It costs 104 tokens per session (1,398 once invoked), scanned A, original, MIT.

A tool for turning a JSON profile into a designed PDF résumé and preview images, then checking the rendered pages.

In plain words
What is it for?
Use it to build, render, screenshot, preview, or score a résumé/CV from the repository, including checking changes to its renderer or templates.
Why use it?
It lets you inspect the actual résumé layout and catch design or template changes that are not obvious from code alone.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths.

This is srksourabh/premium-resume-studio's own configuration. It tells Claude Code how to work on premium-resume-studio itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything premium-resume-studio configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is node scripts/build_resume.js --profile profile/sourabh.json --out out.pdf --all.

Part of the premium-resume-studio plugin — 2 skills shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to srksourabh/premium-resume-studio. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/srksourabh/premium-resume-studio/main/.claude/skills/run-premium-resume-studio/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/srksourabh/premium-resume-studio

Made for: Claude Code.

Or install premium-resume-studio, the plugin that ships this one along with the rest of its 2 skills.

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 run-premium-resume-studio

README.md
[![agentmods](https://agentmods.dev/badge/skills/srksourabh/premium-resume-studio/run-premium-resume-studio/github.svg)](https://agentmods.dev/skills/srksourabh/premium-resume-studio/run-premium-resume-studio)
Your own site
<a href="https://agentmods.dev/skills/srksourabh/premium-resume-studio/run-premium-resume-studio"><img src="https://agentmods.dev/badge/skills/srksourabh/premium-resume-studio/run-premium-resume-studio/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 run-premium-resume-studio

Your own site · 80×15
<a href="https://agentmods.dev/skills/srksourabh/premium-resume-studio/run-premium-resume-studio"><img src="https://agentmods.dev/badge/skills/srksourabh/premium-resume-studio/run-premium-resume-studio.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 104 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,398 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.00104 $0.01398
Opus 5 $0.00052 $0.00699
Sonnet 5 $0.00021 $0.00280
Haiku 4.5 $0.00010 $0.00140

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

Security

Grade A, and why

run-premium-resume-studio 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.

The scan reads SKILL.md. This mod also ships 1 executable file (driver.mjs), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

.claude/skills/run-premium-resume-studio/SKILL.md · 114 lines

How it starts

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

Run Premium Resume Studio

This project is a CLI/library (Node + Playwright/Chromium) that turns a JSON profile into a designed PDF résumé, picking one of 138 designs by context. The interesting surface is the rendered page, so the driver renders it and writes a PNG of every page you can actually look at — that's how you verify quality and that the structure changed, not just the color.

Paths below are relative to the repo root. The driver self-locates the repo, so you can run it from anywhere.

Prerequisites (once)

./install.sh          # installs Playwright + reuses the container's Chromium

If Chromium is already provisioned (e.g. /opt/pw-browsers), install.sh reuses it; scripts/lib/browser.js finds it, no download.

Run (agent path) — render + screenshot + score

node .claude/skills/run-premium-resume-studio/driver.mjs --profile profile/sourabh.json

Writes to .claude/skills/run-premium-resume-studio/out/:

  • resume.pdf
  • resume-p1.png, resume-p2.png, … — one PNG per A4 page — open these and look
  • summary.json — design chosen, page count, council score + persona scores

Prints, e.g.:

Design : #7 Graphite Azure Executive  [executive · graphite-azure · sans]
Pages  : 2   Fit: fill 1.87
Council: 88.6/100  PASS   (Executive 85 · ATS 91 · Domain 86 · Design 97 · Hiring 87)
Look   : …/out/resume-p1.png  …/out/resume-p2.png

Prove the design actually changes (not just recolored)

node .claude/skills/run-premium-resume-studio/driver.mjs --variant 1 --out /tmp/v1   # executive (left sidebar)
node .claude/skills/run-premium-resume-studio/driver.mjs --variant 2 --out /tmp/v2   # header-band (top hero)
node .claude/skills/run-premium-resume-studio/driver.mjs --variant 3 --out /tmp/v3   # sidebar-right
node .claude/skills/run-premium-resume-studio/driver.mjs --variant 4 --out /tmp/v4   # single column

Consecutive variants are different layout families (structure), then cycle palettes/typography. Open the PNGs side by side to confirm.

Read the full file on GitHub · 114 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 114 lines · 104 tokens per session scan A 6ce0b5137674

Subscribe to this mod's changes

run-premium-resume-studio is a skill published in the GitHub repository srksourabh/premium-resume-studio (2 stars, last pushed 2mo ago), licensed MIT. It adds 104 tokens to every session and 1,398 once invoked, about $0.0005 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-31.

Related

Other skills, from other repositories

pdf-design

Designs PDF reports and proposals from HTML with previews and branding. Use to create, export, or securely upload a PDF.

jamditis/claude-skills-journalism · 28 tokens

document-design

Creates print-ready HTML that exports to PDF. Use to make a proposal, report, one-pager, newsletter, slides, or flyer.

jamditis/claude-skills-journalism · 31 tokens

solidworks-engineering-drawing

A SolidWorks skill for creating and reviewing engineering drawings, which are manufacturing documents showing views, measurements, holes, parts lists, and title-block information.

wzyn20051216/solidworks-automation-skill · 58 tokens

paperlab_book_typesetting_release

Final production review for PaperLab books across HTML, PDF, DOCX, and ODF. Use for responsive layout, page breaks, equation rendering, table overflow, caption style, running headers, figure placement, and release-candidate polish.

equinor/neqsim · 55 tokens

architectural-drawing-parser

Parse architectural drawings, floor plans, and building code compliance documents using Vision AI. Extracts building type, occupancy, floor areas, room layouts, dimensions, and code parameters. Use when: reading PDF floor plans, analyzing architectural drawings, extracting building data from images or scanned…

TerminalSkills/skills · 62 tokens

accessibility-pass

Use this skill whenever the user asks to check, review, or fix the accessibility of a PowerPoint deck, Word document, HTML page, or Markdown file, and before handing over any deck or document this agent just generated, so it does not ship with missing alt text, untitled slides, or unreadable colour contrast.

microsoft/cat-agent-skills · 69 tokens