render-incident-report-image

render-incident-report-image is a skill for Claude Code from terrylica/cc-skills. It costs 105 tokens per session (823 once invoked), scanned A, original, MIT.

A skill that turns a long text incident report into a readable PNG image sized for an iPhone notification. It uses a dark theme, fixed-width text, and wrapping to prevent lines from being cut off.

In plain words
What is it for?
Rendering incident briefings and other verbose text reports as tall images for Pushover, a push-notification service.
Why use it?
It makes detailed operational reports easier to read inside a push notification without requiring a separate document viewer.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is --in report.txt --out /tmp/report.png # or: cat report.txt | bun .../pushover_core.ts render --out /tmp/report.png.

Part of the pushover-commander plugin — 9 skills shipped together , and of cc-skills

Good fit Rendering incident briefings and other verbose text reports as tall images for Pushover, a push-notification service.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/terrylica/cc-skills
agentmods
npx agentmods add skills/terrylica/cc-skills/render-incident-report-image

Made for: Claude Code.

Or install pushover-commander, the plugin that ships this one along with the rest of its 9 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 render-incident-report-image

README.md
[![agentmods](https://agentmods.dev/badge/skills/terrylica/cc-skills/render-incident-report-image/github.svg)](https://agentmods.dev/skills/terrylica/cc-skills/render-incident-report-image)
Your own site
<a href="https://agentmods.dev/skills/terrylica/cc-skills/render-incident-report-image"><img src="https://agentmods.dev/badge/skills/terrylica/cc-skills/render-incident-report-image/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 render-incident-report-image

Your own site · 80×15
<a href="https://agentmods.dev/skills/terrylica/cc-skills/render-incident-report-image"><img src="https://agentmods.dev/badge/skills/terrylica/cc-skills/render-incident-report-image.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 105 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 823 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00105 $0.00823
Opus 5 $0.00053 $0.00411
Sonnet 5 $0.00021 $0.00165
Haiku 4.5 $0.00011 $0.00082

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

Security

Grade A, and why

render-incident-report-image 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 7d 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.

plugins/pushover-commander/skills/render-incident-report-image/SKILL.md · 52 lines

How it starts

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

render-incident-report-image

Self-Evolving Skill: This skill improves through use. If instructions are wrong, parameters drifted, or a workaround was needed — fix this file immediately, don't defer. Only update for real, reproducible issues.

Render a clean monospace report PNG via the TS core pushover_core.ts render (Satori → vector SVG → @resvg/resvg-js → PNG).

Device-calibrated facts (verified on a physical iPhone 13 mini, 2026-05-30)

  • 72-column hard wrap is comfortably legible inline without pinch-zoom (40/56/72 all tested; 72 confirmed fine).
  • Pushover fits images to width — it never crops horizontally. Earlier "right-edge trimmed" images were a renderer bug (no wrapping), not Pushover.
  • No practical pixel-height ceiling: a 30,000 px-tall image scrolls/zooms fine, far under the 5 MB attachment cap → render the whole report in one tall image, never paginate.
  • Auto-fit width (2026-06-01): 72 cols is the MAX wrap, not a fixed canvas width. The canvas is sized to the longest actual line (maxChars × 18px advance + 48px pad, monospace ⇒ exact/deterministic), so short reports don't waste right-margin whitespace — Pushover scales the snug image up, rendering text larger. (e.g. a 43-char digest: 1344 → 822 px, ~1.6× bigger on screen.) No image post-processing needed.

Usage

env -u HTTPS_PROXY -u HTTP_PROXY bun "$(cc-plugin-root pushover-commander)/skills/_lib/pushover_core.ts" render \
  --in report.txt --out /tmp/report.png            # or: cat report.txt | bun .../pushover_core.ts render --out /tmp/report.png
# then attach with send-notification --attach /tmp/report.png

Line markup (first 2 chars)

Prefix Style
# heading (green)
! subheading (amber)
> accent (cyan)
. dim/muted
(none) body (light grey)

Wrapping is word-aware (greedy, fold -s semantics): lines break at spaces and NEVER mid-word. Only a single token that ALONE exceeds the column width (paths, hashes, URLs) is hard-broken so nothing overflows the canvas. Lines already within the width keep their exact spacing (aligned tables stay aligned). Greedy is the correct algorithm for left-aligned monospace — Knuth-Plass optimizes justified paragraphs and adds nothing to ragged-right fixed-width text.

Read the full file on GitHub · 52 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. 7d ago First seen · 52 lines · 105 tokens per session scan A 45655d012adb

Subscribe to this mod's changes

render-incident-report-image is a skill published in the GitHub repository terrylica/cc-skills (73 stars, last pushed today), licensed MIT. It adds 105 tokens to every session and 823 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-09-05.