MCP HubMCP Hub
스킬 목록으로 돌아가기

media-asset-management

rampstackco
업데이트됨 2 days ago
5 조회
239
27
239
GitHub에서 보기
기타automationdesign

정보

이 스킬은 개발자가 이미지, 비디오, 다운로드 가능 에셋을 위한 미디어 파이프라인을 설계하고 최적화하는 데 도움을 줍니다. 저장소 관리, 현대적 형식 선택(WebP/AVIF 등), 반응형 이미지, 비디오 호스팅, 에셋 라이브러리 구성에 대한 지침을 제공합니다. 특히 성능이나 구성 관련 문제가 있을 때 미디어 전송 시스템을 구축, 감사 또는 개선하는 경우에 사용하세요.

빠른 설치

Claude Code

추천
기본
npx skills add rampstackco/claude-skills -a claude-code
플러그인 명령대체
/plugin add https://github.com/rampstackco/claude-skills
Git 클론대체
git clone https://github.com/rampstackco/claude-skills.git ~/.claude/skills/media-asset-management

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

Media Asset Management

Design how images, video, and downloadable files get stored, processed, organized, and served. Stack-agnostic. The principles apply whether you're running a custom pipeline or using a hosted service.


When to use

  • Designing or redesigning the image and media pipeline
  • Choosing a media CDN or image service
  • Setting up responsive image delivery
  • Planning a digital asset management (DAM) system
  • Auditing media performance issues
  • Picking video hosting and embedding strategy
  • Setting up workflows for designers and writers to upload assets
  • Migrating media from one platform to another

When NOT to use

  • Performance optimization beyond media (use performance-optimization)
  • Brand identity or photography direction (use brand-identity, art-direction)
  • Content production strategy (use content-strategy)
  • Single-image optimization (covered in performance-optimization)

Required inputs

  • Current media inventory: where assets live, in what formats
  • Volume: how many assets, how much storage, how much traffic
  • Sources: who creates and uploads media (designers, writers, automated tools)
  • Platforms: where media is consumed (web, email, app, partners)
  • Performance baseline: current image sizes, load times
  • Budget reality: hosted services have monthly costs

The framework: 4 stages

The media pipeline has four stages. Each has its own decisions.

Stage 1: Source

Where assets enter the system.

Sources:

  • Designers (Figma exports, Photoshop, Illustrator)
  • Photographers (RAW or JPEG from camera)
  • Stock photo libraries
  • AI-generated images
  • User-generated content (uploads)
  • Automated systems (e.g., screenshots, generated thumbnails)

At source, decide:

  • File formats accepted (RAW, TIFF, PSD, AI vs delivered formats)
  • Naming conventions
  • Required metadata (alt text, captions, credits, rights)
  • Maximum source resolution (high enough to derive any size; not so high it's wasteful)
  • Where source files live (separate from delivered assets)

Anti-pattern: sources and delivered assets in the same place. Hard to find masters. Hard to regenerate. Hard to audit usage.

Stage 2: Process

Transforming source files into delivery formats.

Processing decisions:

  • Resize to standard sizes (e.g., a fixed set of widths: 320, 640, 960, 1280, 1920, 2560)
  • Compress (lossy or lossless, with quality targets)
  • Convert formats (JPEG, WebP, AVIF for raster; SVG for vector)
  • Generate thumbnails and previews
  • Strip metadata (EXIF, GPS) unless intentionally retained
  • Color profile management (sRGB for web)

Process options:

  • Build-time: Static assets processed during deploy. Predictable, fast at runtime, hard to vary.
  • On-demand: A service generates the right format/size when requested. Flexible, requires a processing layer.
  • Hybrid: Static processed sizes plus on-demand for edge cases.

For sites with many image variants and ongoing change, on-demand wins. For tightly controlled marketing sites, build-time can be simpler.

Stage 3: Deliver

Getting assets to users efficiently.

Delivery decisions:

  • CDN: required for any non-trivial volume. Edge caching, global distribution.
  • Format negotiation: serve AVIF to browsers that support it, WebP otherwise, JPEG as fallback. Use the <picture> element or content negotiation.
  • Responsive images: srcset and sizes attributes so browsers pick the right size for the viewport.
  • Lazy loading: loading="lazy" for below-the-fold images.
  • Async decoding: decoding="async" for non-critical images.
  • Width and height attributes: always set, prevents layout shift.

Modern HTML pattern:

<img 
  src="/image-1280.jpg" 
  srcset="/image-640.jpg 640w, /image-960.jpg 960w, /image-1280.jpg 1280w, /image-1920.jpg 1920w" 
  sizes="(max-width: 768px) 100vw, 50vw"
  width="1280"
  height="720"
  loading="lazy"
  decoding="async"
  alt="Descriptive alt text">

Or for format negotiation:

<picture>
  <source type="image/avif" srcset="/image.avif">
  <source type="image/webp" srcset="/image.webp">
  <img src="/image.jpg" alt="Descriptive alt text" width="1280" height="720">
</picture>

Stage 4: Manage

Keeping the system organized and useful over time.

Management decisions:

  • Asset library or DAM (digital asset management): centralized place for the team to find assets
  • Tagging and search
  • Version control (designers updating an asset, old version still in use)
  • Rights and licensing tracking
  • Audit and cleanup (what's not used anymore?)
  • Permissions (who can upload, edit, delete)

A simple shared folder works at low scale. A real DAM is necessary above a few thousand assets or with multiple teams.


Format reference

For typical web use:

FormatUse forAvoid for
AVIFPhotographs, complex images. Best compression.Browser support edge cases (rare in 2026, ubiquitous now)
WebPPhotographs, illustrations. Good compression. Wide support.Print, archival
JPEGPhotographs (fallback). Universal support.Sharp-edged graphics, transparent backgrounds
PNGSharp-edged graphics, transparent backgrounds, screenshots. Lossless.Photographs (file size)
SVGLogos, icons, simple illustrations. Scalable.Photographs, complex art
GIFEffectively obsolete. Use video formats for animation.Anything modern
MP4 (H.264)Video, universal support.Static content
WebM (VP9 / AV1)Video, better compression.Older browsers

For most sites: serve AVIF/WebP for modern browsers, JPEG/PNG fallback. SVG for vector. MP4 for video.


Workflow

Step 1: Inventory

What assets exist? Where? In what state?

  • Image count and total storage
  • Average sizes (KB) per format
  • Image-related performance metrics
  • Number of pages with broken or missing images
  • Source files vs delivered files

Step 2: Audit performance

For a sample of pages:

  • Image weight per page (target: under 500KB total for marketing pages)
  • Number of image requests
  • Are responsive images used?
  • Are modern formats served?
  • Is there layout shift from missing dimensions?

Tools: Lighthouse, WebPageTest, your CDN's analytics.

Step 3: Pick the pipeline

Three reasonable patterns:

Pattern A: Static, build-time

  • Assets in repo or storage bucket
  • Build process generates sizes and formats
  • Served via CDN
  • Good for: static sites, low asset churn, tight performance control

Pattern B: Image CDN with on-demand

  • Source uploads to a bucket or service
  • An image CDN (Cloudinary, imgix, Cloudflare Images, Bunny, etc.) processes on-demand via URL parameters
  • Good for: mid-to-large sites, frequent asset changes, multiple variants

Pattern C: Headless CMS with built-in image API

  • CMS holds source assets
  • CMS provides image API for resizing, format conversion
  • Good for: content-heavy sites, non-technical content uploaders, when CMS is already chosen

The patterns aren't mutually exclusive. Big sites often use Pattern A for design assets, Pattern B for content images.

Step 4: Define standards

Document:

  • Naming conventions
  • Required metadata (alt text, attribution)
  • Maximum source dimensions
  • Minimum source dimensions per use case
  • Approved formats
  • File size targets

Make these enforceable through tooling where possible (CI checks on file sizes, alt text required by CMS).

Step 5: Set up workflows

For each source type:

SourceWorkflow
DesignerExport from Figma, drop into bucket, automated processing handles the rest
WriterUpload through CMS, CMS prompts for alt text
PhotographerRAW into source bucket, designer or automation creates web variants
User uploadPass through the image service, automatic moderation if applicable

Document who does what. Workflows that aren't documented break.

Step 6: Build the asset library

For all but the smallest sites:

  • Centralized DAM or shared library
  • Tag taxonomy (subject, style, brand, campaign, etc.)
  • Search across tags and metadata
  • Documented rights for each asset (stock license, custom commission, work-for-hire, etc.)
  • Sunset workflow (rights expire, asset retires)

Step 7: Monitor and audit

  • Performance metrics on image-heavy pages
  • Storage costs
  • CDN costs
  • Broken image alerts (404 on referenced media)
  • Unused asset cleanup (storage costs accumulate)

Step 8: Document the pipeline

A pipeline document covers:

  • Diagram of source → process → deliver → manage
  • Tools used at each stage
  • Standards and naming conventions
  • Workflows for common cases
  • Escalation when something breaks

Failure patterns

Source files in the delivery bucket. 50MB RAW files served to users. Fix: separate sources from delivered.

Single image format for every browser. JPEG-only when AVIF could be 30-50% smaller. Use format negotiation.

Missing width and height attributes. Causes layout shift, hurts CLS metric. Set always.

Lazy loading hero images. Above-the-fold images shouldn't be lazy-loaded. Lazy below the fold.

Eager loading everything. All images load on page load. Use loading="lazy" for below-fold.

No responsive images. Mobile gets the desktop image. Wasteful, slow. Use srcset and sizes.

One source resolution. Source is the delivery resolution. Can't generate retina or larger. Source should be 2-3x the largest delivered size.

Stripping all metadata. Removes alt text, removes attribution. Strip GPS and personal EXIF; keep semantic metadata.

Random naming. IMG_4823.jpg, Screenshot 2024-03-15.png. Hard to find later. Use a naming convention.

No alt text. Accessibility failure, SEO failure. Make alt text required at upload.

Storage growing unbounded. Old, unused assets pile up. Quarterly cleanup or automated lifecycle policies.

One person knows the pipeline. When they're out, no one can fix issues or onboard new sources. Document.


Output format

A media pipeline document includes:

  • Inventory: current asset count, formats, storage
  • Pipeline diagram: source → process → deliver → manage with tools at each stage
  • Format and size standards: what gets generated, when
  • Naming and metadata conventions: with examples
  • Workflows by source type: designer, writer, photographer, user
  • Performance baseline and targets: weight per page, format adoption, etc.
  • Asset library: tool, taxonomy, search, rights tracking
  • Monitoring: performance, costs, broken assets
  • Roadmap: improvements over the next 1-2 quarters

Reference files

GitHub 저장소

rampstackco/claude-skills
경로: skills/media-asset-management
0
agent-skillsai-agentsanthropicclaudeclaude-aiclaude-code

연관 스킬

security-baseline

기타

보안-베이스라인 스킬은 개발자가 필수 웹 보안 구성을 수립하고 감사하는 데 도움을 줍니다. HTTPS/TLS 설정, 보안 헤더, CSP, 비밀 관리, 출시 전 강화에 대한 지침을 제공합니다. 컴플라이언스 검토, 취약점 평가, 정기적인 보안 감사에 활용하세요.

스킬 보기

monitoring-and-alerting

기타

이 스킬은 개발자가 모니터링 시스템을 설계하고 구현하는 데 도움을 주며, SLO 정의, 가동 시간 확인, 오류 추적을 다룹니다. 실행 가능한 알림 구성, 당직 순번 설정, 알림 피로도 해결 방법을 안내합니다. 가시성 확보를 시작할 때나 사고 발생으로 모니터링 공백이 드러났을 때 사용하세요.

스킬 보기

email-deliverability

기타

이 Claude Skill은 개발자가 SPF, DKIM, DMARC와 같은 인증 프로토콜을 구현하고 문제를 해결하여 이메일이 수신함에 도달하도록 지원합니다. 스팸 배치 문제 진단, 발신자 평판 모니터링, 도메인 스푸핑 방지 강화를 도와줍니다. 이메일 시스템을 설정할 때나 마케팅/거래 이메일이 사용자에게 전달되지 않는 경우에 사용하세요.

스킬 보기

backup-and-disaster-recovery

기타

이 스킬은 개발자가 백업 전략과 재해 복구 절차를 계획하고 구현하는 데 도움을 줍니다. RPO/RTO 목표 정의, 백업 아키텍처 설계, 복원 훈련 수행을 지원합니다. 백업 설정, 중단 사태 대비 계획 수립, 또는 복구 격차를 드러내는 사고 대응 시에 활용하세요.

스킬 보기