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.
npx skills add Tygb99/threads-writing-skills --skill threads-brand-cardgit clone --depth 1 https://github.com/Tygb99/threads-writing-skillsWrote 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.
[](https://agentmods.dev/skills/tygb99/threads-writing-skills/threads-brand-card)<a href="https://agentmods.dev/skills/tygb99/threads-writing-skills/threads-brand-card"><img src="https://agentmods.dev/badge/skills/tygb99/threads-writing-skills/threads-brand-card/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.
<a href="https://agentmods.dev/skills/tygb99/threads-writing-skills/threads-brand-card"><img src="https://agentmods.dev/badge/skills/tygb99/threads-writing-skills/threads-brand-card.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00145 | $0.02100 |
| Opus 5 | $0.00072 | $0.01050 |
| Sonnet 5 | $0.00029 | $0.00420 |
| Haiku 4.5 | $0.00015 | $0.00210 |
Grade A, and why
threads-brand-card 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.
How it starts
The opening of the file, as written. The whole thing — 134 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Threads 브랜드 카드
Threads에 올리는 카드 이미지는 매번 다시 디자인하지 않는다. 브랜드 바와 크기를 고정하고 안쪽 내용만 바꾼다. 피드에서 스크롤로 지나가는 이미지라, 같은 계정의 카드가 매번 다르게 생기면 누가 만든 것인지 읽히지 않는다.
이미지 생성 모델을 쓰지 않는다. 한국어 글자와 숫자가 들어가는 카드는 HTML로 만들고 브라우저로 렌더해야 글자가 깨지지 않고 재현된다. 상세 렌더 절차는 threads-html-image 스킬을 쓴다.
브랜드 값은 로컬 파일에 있다
표시 이름, 한 줄 소개, 핸들, 링크, 마크 이미지 경로는 이 폴더의 **brand.local.md**에서 읽는다. 그 파일은 .gitignore에 있어 공개 저장소에 올라가지 않는다. 개인 식별 정보를 공개 이력에 남기지 않기 위한 분리다.
값을 직접 옮겨 적지 않는다. scripts/fill_brand.py가 brand.local.md를 파싱해 템플릿의 플레이스홀더를 채운다:
python3 scripts/fill_brand.py /path/to/card.html
치환되지 않은 BRAND_* 토큰이 남으면 실패로 끝내고, 마크 이미지가 실제로 없으면 그것도 실패로 끝낸다. 렌더 후에 빈 칸을 발견하는 것보다 낫다.
brand.local.md가 없으면 스크립트가 무엇을 물어야 하는지 알려주며 멈춘다. 그때는 사용자에게 값을 물어 그 파일을 먼저 만든다. 값을 추측해 채우지 않는다.
브랜드 마크
마크는 계정 프로필 사진이다. 원형(border-radius: 50%), object-fit: cover, 강조색 3px 테두리로 넣는다. 카드 크기와 무관하게 74px 고정이다.
마크 파일은 사람 얼굴이 화면 중앙에 오게 정사각으로 크롭해 두고 재사용한다. 원본 사진을 그대로 <img>에 넣으면 배경만 보인다:
python3 -c "
from PIL import Image, ImageOps
im = ImageOps.exif_transpose(Image.open('profile.jpeg'))
im.crop((left, top, right, bottom)).resize((296, 296), Image.LANCZOS).save('brand-mark.png')"
템플릿의 BRAND_MARK_ABSOLUTE_PATH.png를 그 파일의 절대 경로로 바꾼다. 상대 경로는 headless Chrome이 file:// 기준으로 해석해 빈 칸이 된다. 마크에는 alt=""를 준다. 카드 전체 alt가 이미 브랜드를 설명하므로 스크린리더가 두 번 읽을 필요가 없다.
크롭한 마크 파일은 저장소가 아니라 작업 워크스페이스의 미디어 폴더에 둔다.
색
배경 #0f1115
패널 #171b22
본문 #e9edf4
보조 #97a0b1 흐린 설명
더 흐림 #5b6478 링크·구분선급
강조 #6ee7a8 숫자, 브랜드 마크, 결론
경고 #f2708a 실패·불가 항목의 왼쪽 띠
구분선 #232a35
강조색은 한 카드에서 3곳을 넘기지 않는다. 전부 강조하면 아무것도 강조되지 않는다.
크기 — 같이 올리는 사진에 맞춘다
Threads는 한 칸에 여러 장을 올리면 비율이 다른 쪽을 잘라낸다. 그래서 카드 크기는 카드 혼자 결정하지 않는다.
| 상황 | 크기 |
|---|---|
| 카드 한 장만 올린다 | 1080x1350 (기본) |
| 실사진과 같이 올린다 | 사진 비율에 맞춘다. 아이폰·갤럭시 세로 사진이면 3:4이므로 1080x1440 |
| 정사각 카드뉴스 | 1080x1080 |
사진 비율은 EXIF 회전을 반영해서 재야 한다. sips의 pixelWidth/pixelHeight는 회전 전 값을 주므로, 세로로 찍은 사진이 가로로 보인다. 판정은 회전 태그까지 본다:
python3 -c "
from PIL import Image, ImageOps
im = ImageOps.exif_transpose(Image.open('photo.jpeg'))
print(im.size)"
What ships with it
10 files 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.
- assets/brand-card-template.html 3.9 KB
- assets/themes/theme-01-warm-paper.html 3.7 KB
- assets/themes/theme-02-neon-gradient.html 4.0 KB
- assets/themes/theme-03-mono-white.html 3.8 KB
- assets/themes/theme-04-blueprint.html 4.0 KB
- assets/themes/theme-05-forest.html 3.8 KB
- assets/themes/theme-06-forest-press.html 3.7 KB
- assets/themes/theme-07-mono-dark.html 3.7 KB
- scripts/fill_brand.py 2.2 KB runs code
- scripts/render_brand_card.py 2.8 KB runs code
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.
- 7d ago Changed 93577ab38842
- 11d ago First seen · 134 lines · 145 tokens per session scan A 2dbbc92beae2
threads-brand-card is a skill published in the GitHub repository Tygb99/threads-writing-skills (48 stars, last pushed 8d ago), licensed MIT. It adds 145 tokens to every session and 2,100 once invoked, about $0.0007 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-30.
Other skills, from other repositories
webgl-holographic-foil
A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.
general-video
Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…
html-ppt-hermes-cyber-terminal
OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.
html-ppt-taste-brutalist
16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).
chengfeng-check-updates
An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.
diagnostic-stem-delivery
Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.