Blog
My Claude Skills
npx -y skills add Srltas/claude-skills --skill blogAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Draft a Korean IT/tech blog post for velog, minimal prose and visuals-first. Give it a slug (and topic) and it scaffolds work-docs/blog/<date>-<slug>/index.md, writes a tight Korean post (요약/들어가며/핵심/정리/참고), and renders every concept as an IMAGE because velog does NOT render Mermaid: diagram-as-code via Kroki, data charts via matplotlib, optional Excalidraw. Grounded in real code and manuals. Saves the draft to the public work-docs repo; you publish on velog. Triggers on phrases like '블로그 초안 작성', 'velog 글 써줘', '이거 블로그로 정리', 'write a tech blog draft', 'blog post about'.
SKILL.md
4.2 KB, as published. Nobody here has run it
Draft a tech blog post (velog, work-docs)
Write a tight, visuals-first Korean tech blog post for velog, saved as a draft in the public work-docs repo. velog does not render Mermaid, so every diagram becomes an image here (you upload those images to velog when publishing).
Step 0: Prereqs
- work-docs cloned at
${WORK_DOCS_REPO:-$HOME/Devel/work-docs}(shared with note/worklog). curl(for Kroki diagram rendering). For data charts, the report skill's venv +figures.py. Optional: an Excalidraw skill for hand-drawn diagrams.
Step 1: Scaffold the post folder
bash <skill-base-dir>/assets/new_blog.sh <slug>
Creates blog/<YYYY-MM-DD>-<slug>/index.md + an assets/ folder, and prints the draft's GitHub URL.
Step 2: Ground it (do not write from memory)
Verify facts before writing: cubrid-manual, cmt-manual, Understand-Anything (if installed), and the real code. A tech post must be correct. Cite sources in 참고.
Step 3: Write the post (minimal text, visuals-first)
Korean. Structure: 제목 → 요약(1~2줄) → 들어가며(왜 읽나, 무슨 문제) → 핵심 섹션들 → 정리 → 참고.
- 핵심 텍스트만: 짧은 문단, 개조식.
- 개념 설명은 글보다 그림으로 (다음 단계에서 이미지로).
- 표는 비교·수치, 코드블록은 코드·로그.
- em-dash(
—)는 쓰지 않는다: 쉼표·콜론·괄호·마침표로 대체.
Step 4: Make visuals as IMAGES (velog cannot render Mermaid)
Put each source in assets/, render it to an image, and embed with .
- Diagram-as-code (Mermaid / Graphviz / D2 / PlantUML): write
assets/diagram-N.mmd, then render to PNG for velog:
Keep thebash <skill-base-dir>/assets/render.sh assets/diagram-N.mmd assets/diagram-N.png.mmdsource so the diagram stays editable and reproducible. (velog accepts PNG uploads; SVG upload is often blocked, so render PNG for velog.) - Data charts: build a chart JSON and render it with the report skill's
figures.pytoassets/chart-N.png(see the report skill for thefigures.py <block.json> <out.png>command). - Hand-drawn / architecture: if an Excalidraw skill is installed, use it to produce
assets/*.png. - Keep diagrams simple (roughly 10-15 nodes); dense graphs render poorly.
- Prefer Mermaid for structured visuals (flow/sequence/state/ER/class): nodes auto-size to their text, so labels never clip.
Verify every image (render → look → fix → repeat): after rendering, Read the PNG and check it: is every label fully inside its node, nothing clipped or overlapping, the whole figure readable at blog width? If a diagram is wrong, fix the .mmd (switch LR↔TB, shorten labels, or split it) and re-render, then look again. Repeat until each image is clean. Never embed a diagram you have not looked at.
Note: Kroki (https://kroki.io) is a public service, so the diagram source is sent there. That is fine for public blog content. Point KROKI_URL at a self-hosted instance if you prefer.
Step 5: Commit (never push)
REPO="${WORK_DOCS_REPO:-$HOME/Devel/work-docs}"
git -C "$REPO" add "blog/<YYYY-MM-DD>-<slug>/"
git -C "$REPO" commit -m "blog: <제목>"
Give the user the draft path and GitHub URL. Pushing is the user's responsibility.
Step 6: Publish on velog (manual)
velog 에디터에 index.md 본문을 붙이고, assets/의 이미지를 드래그해 업로드하면 velog가 CDN URL로 바꿔 삽입합니다. 다이어그램이 이미지라 velog에서 정상 표시됩니다.