run-app

run-app is a skill for Claude Code, Codex from WtotdeD/agentic-resume-builder. It costs 49 tokens per session (844 once invoked), scanned A, original, MIT.

A local test routine for a resume app that starts the app, opens each resume view, exports a PDF, and checks screenshots.

In plain words
What is it for?
Use it when starting the resume app, checking a content, template, or configuration change, taking resume screenshots, or confirming PDF output.
Why use it?
It catches rendering and configuration problems that a successful web request might miss, such as missing sections or PDF export using the wrong server.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/wtotded/agentic-resume-builder/run-app
Any agent
npx skills add WtotdeD/agentic-resume-builder --skill run-app
Clone the repo
git clone --depth 1 https://github.com/WtotdeD/agentic-resume-builder

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 run-app

README.md
[![agentmods](https://agentmods.dev/badge/skills/wtotded/agentic-resume-builder/run-app.svg)](https://agentmods.dev/skills/wtotded/agentic-resume-builder/run-app)
Your own site
<a href="https://agentmods.dev/skills/wtotded/agentic-resume-builder/run-app"><img src="https://agentmods.dev/badge/skills/wtotded/agentic-resume-builder/run-app.svg" alt="Measured on agentmods" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 844 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00049 $0.00844
Opus 5 $0.00024 $0.00422
Sonnet 5 $0.00010 $0.00169
Haiku 4.5 $0.00005 $0.00084

Measured 5d ago against content hash 59ce87772041, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

run-app scanned grade A with 1 finding 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 5d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

code=$(curl -s http://localhost:3111/render/$c -o /tmp/$c.html -w '%{http_code}')
.claude/skills/run-app/SKILL.md · 78 lines

How it starts

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

Run the app

Launch the Next.js dev server, then drive it. A 200 from a render route proves almost nothing here — see step 2.

1. Launch

PORT=3111 pnpm dev -p 3111 > /tmp/dev.log 2>&1 &
sleep 10 && tail -3 /tmp/dev.log

PORT must match -p. The export route builds its own base URL from process.env.PORT (src/app/api/export-pdf/route.ts) rather than from the incoming request, so leaving it unset makes PDF export fetch localhost:3000 — either nothing, or some other project's server.

Stop it with pkill -f 'ne[x]t dev'. The bracket is load-bearing: a plain next dev pattern matches the invoking shell's own command line and kills it.

2. Drive the render routes

sections: in a config matches ## headings by exact string and fails silently, so check the HTML body, not the status code:

for c in $(ls resumes/*.yaml | xargs -n1 basename | sed 's/.yaml//'); do
  code=$(curl -s http://localhost:3111/render/$c -o /tmp/$c.html -w '%{http_code}')
  echo "$c $code: $(grep -oE '<h2[^>]*>[^<]+' /tmp/$c.html | sed 's/.*>//' | paste -sd' ')"
done
grep -ilE 'non-existent ID|Failed to' /tmp/*.html   # expand: errors surface as an error box

grep -o, not grep -c — the HTML is minified onto two lines, so a line count reports "2 sections" for every config regardless of what rendered.

Note this lists only top-level sections. The per-entry ## headings (Achievements, Architecture, …) render as <h4>; to check those, grep <h4 the same way or read a screenshot. Compare against the config's sections: list — a section listed there but missing from the page is a heading string mismatch, not a render failure.

3. Export a PDF

curl -s -D /tmp/hdr.txt -o /tmp/out.pdf -X POST http://localhost:3111/api/export-pdf \
  -H 'Content-Type: application/json' -d '{"configName":"tech-lead"}'
file /tmp/out.pdf   # expect: PDF document, 2-4 pages

Page count is the signal worth reading — a template or content change that pushes a resume from 3 pages to 5 is a regression nothing else catches.

Read the full file on GitHub · 78 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. 5d ago First seen · 78 lines · 49 tokens per session scan A 59ce87772041

Subscribe to this mod's changes

run-app is a skill published in the GitHub repository WtotdeD/agentic-resume-builder (2 stars, last pushed 10d ago), licensed MIT. It adds 49 tokens to every session and 844 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

verify

Build/launch/drive recipe for verifying apps/docs changes at runtime (demos, docs pages, llms.txt).

meursyphus/ssgoi · 26 tokens

e2e-tests-studio

REQUIRED when modifying any file in packages/playground-ui or packages/playground. Triggers on: React component creation/modification/refactoring, UI changes, new playground features, bug fixes affecting studio UI. Generates Playwright E2E tests that validate PRODUCT BEHAVIOR, not just UI states.

mastra-ai/mastra · 67 tokens

mastra-smoke-test

Smoke test Mastra projects locally or deploy to staging/production. Tests Studio UI, agents, tools, workflows, traces, memory, and more. Supports both local development and cloud deployments.

mastra-ai/mastra · 44 tokens

smoke-test

Create a Mastra project using create-mastra and smoke test the studio in Chrome using Chrome MCP server.

mastra-ai/mastra · 24 tokens

nextjs-ssr

Tag server-side fetches with the x-test-rcrd-id session header so SSR is recorded under the correct Playwright test session. Lead with registerProxyFetch (patch global fetch in the root layout, any runtime) and registerProxyAxios (per-axios-instance interceptor); createHeadersWithRecordingId is the patch-free per-call…

asmyshlyaev177/test-proxy-recorder · 166 tokens

proxy-setup

Set up test-proxy-recorder for any Playwright project. Covers the proxy CLI (test-proxy-recorder --port --dir), package.json scripts for the three-service architecture (UI app → proxy → backend API), playwright.config.ts webServer block pointing to /control, per-test fixtures using playwrightProxy.before(page…

asmyshlyaev177/test-proxy-recorder · 201 tokens