image-annotate

Installation
SKILL.md

Image Annotate

Mark up an existing image with shapes, text, numbered steps, blur, or solid-color redaction. Single CLI, one-off flags for simple marks, JSON spec file for compositions. Output is a flat raster image with every mark burned in - the original is never modified in place.

Core Principles

Principle Meaning
Never modify in place Always write to a new output file. Annotation is destructive - the user must keep the original to redo or refine later.
Blur is not redaction Pixelation and blur can be reversed for text content. For passwords, API keys, SSNs, payment numbers, and other security-critical strings, use solid-color redaction. Blur is acceptable only for casual privacy (faces in marketing shots, peripheral background detail). See references/redaction-safety.md.
Marks should read on any background Use stroke + fill colors that contrast with the surrounding pixels, or add a contrasting outline to text. Yellow on a yellow page is invisible. The default style stacks a thick coloured stroke over the underlying pixels, never relies on transparency alone.
Coordinate origin is top-left All (x, y) coordinates start from the top-left corner of the image. Y increases downward. Match the convention to whatever the source tool reports - browser DevTools and most screenshot tools agree on this.
One operation, one purpose A single annotation does one thing. To layer marks, repeat flags or use a JSON spec - do not try to overload one operation.
Burn into a flat image The output is a single-layer PNG or JPEG. No editable layers, no SVG re-edit path. If the user needs to iterate, they re-run the script with a new spec.

Quick Start

Installs
2
GitHub Stars
20
First Seen
14 days ago
image-annotate — krzysztofsurdy/code-virtuoso