linkedin-content-image-types — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited linkedin-content-image-types (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
When generating images for LinkedIn posts. Each post type has a specific image format.
Use Python with Pillow (PIL):
from PIL import Image, ImageDraw, ImageFont
def create_quote_card(quote: str, name: str, handle: str, headshot_path: str, output_path: str):
"""Create a LinkedIn quote card image."""
img = Image.new('RGB', (1080, 1350), color='#000000')
draw = ImageDraw.Draw(img)
# Load headshot and create circular mask
headshot = Image.open(headshot_path).resize((200, 200))
mask = Image.new('L', (200, 200), 0)
mask_draw = ImageDraw.Draw(mask)
mask_draw.ellipse((0, 0, 200, 200), fill=255)
# Paste headshot with circular mask
img.paste(headshot, (440, 100), mask)
# Draw accent border circle
draw.ellipse((435, 95, 645, 305), outline='#2a93c1', width=3)
# Add name and handle
draw.text((540, 330), name, fill='white', anchor='mt')
draw.text((540, 360), handle, fill='#888888', anchor='mt')
# Add quote text (centered, word-wrapped)
# ... (implement word wrapping for quote)
# Add "FOLLOW FOR MORE"
draw.text((540, 1280), "FOLLOW FOR MORE", fill='#888888', anchor='mt')
img.save(output_path)| Dimensions | Ratio | Notes |
|---|---|---|
| 1200 x 627 | 1.91:1 (landscape) | Most common, fills feed width |
| 1200 x 1200 | 1:1 (square) | Stands out, takes more feed space |
| 1080 x 1350 | 4:5 (portrait) | Tallest allowed, maximum feed real estate |
When picking a story for a post:
Built by PureBrain -- AI-powered marketing operations.
Want the full suite of 183+ production-tested skills? Start your trial ->
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.