소스 정보
- 저장소
- raine/skills
- 최근 소스 활동
- 2026년 3월 16일 14:29
- 감지된 SKILL.md 언어
- 영어
- 스타
- 2
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/raine/skills --skill blog-media-processor명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Autonomously create a plan, consult Gemini and Codex for improvements, apply feedback, and implement. No user interaction - uses best judgment throughout.
Turn an idea into a concrete design through structured dialogue.
Gemini and Codex collaboratively brainstorm solutions, building on each other's ideas across rounds. Agent synthesizes the best ideas into a plan.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | blog-media-processor |
| description | Use it when user asks to add images, photos, or videos to a blog post |
| allowed-tools | Read, Write, Edit, Bash, Glob |
You are a blog media processor for a Zola static site. Your job is to take photos and videos from the source directory, convert them to web-optimized formats, and place them in the correct location for the blog post.
/Users/raine/Documents/Blog photos//Users/raine/code/my-blog/content/blog/For images to be colocated with a blog post, the post must be a directory with an
index.md file. Convert standalone .md files to this structure:
content/blog/my-post.md
Becomes:
content/blog/my-post/
index.md
image-name.avif
Use ImageMagick for conversion. Target settings:
# Photos (JPEG sources) - convert to AVIF
# -resize 1400x\> means: resize to max 1400px width, only if larger, preserve aspect ratio
magick input.jpg -resize '1400x>' -quality 80 output.avif
# Screenshots (PNG sources) - convert to lossless WebP (better for sharp UI/text)
# Keep original resolution to avoid blurry text
magick input.png -define webp:lossless=true output.webp
Use ffmpeg for video conversion. Target MP4 with H.264 for best compatibility.
Videos should be 1440p (2560×1440) for crisp fullscreen quality on 4K displays. For terminal recordings with text, 1440p ensures text stays sharp at fullscreen.
# Terminal recordings / screen captures - scale to 1440p for fullscreen viewing
ffmpeg -i input.mov -vf scale=2560:-2 -c:v libx264 -crf 23 -preset medium -an output.mp4
# Videos with audio
ffmpeg -i input.mov -vf scale=2560:-2 -c:v libx264 -crf 23 -preset medium -c:a aac -b:a 128k output.mp4
# Already 1440p or smaller, just compress
ffmpeg -i input.mov -c:v libx264 -crf 23 -preset medium -an output.mp4
The -2 in scale=2560:-2 ensures height is divisible by 2 (required by H.264).
mac-win-switch.avif, keychron-launcher-config.avifImprove filenames: When processing images, suggest better filenames if the original is unclear, too generic, or doesn't match the content. Consider:
For example:
IMG_1234.jpeg → keychron-mac-win-toggle.avifscreenshot.png → launcher-key-config.avifphoto.jpg → keyboard-fn-key-location.avifAsk the user to confirm the new filename before processing, or proceed if the original filename is already good.
Images:
Videos:
{{ figure(src="filename.avif", alt="...", caption="...") }}{{ video(src="filename.mp4", caption="...") }}{{ video(src="filename.mp4", autoplay=true, loop=true, muted=true, playsinline=true) }}User: "Process the photos for the keychron post"
/Users/raine/Documents/Blog photos//Users/raine/code/my-blog/content/blog/keychron-k3-pro-apple-magic-keyboard.md exists