スキル一覧に戻る
CaceresCallieri

update-cottage-images

by CaceresCallieri

0🍴 0📅 2026年1月15日
GitHubで見るManusで実行

SKILL.md


Update Cottage Images Skill

This skill guides the process of updating gallery images for any cottage in the Cabañas Bariloche website.

Prerequisites

  • ImageMagick must be installed (magick command)
  • New photos should be placed in a subdirectory within the cottage folder

Directory Structure

Each cottage has images organized as:

src/assets/cottages/cottage-{code}/
├── main-images/
│   ├── 01.Descriptive Name.webp
│   ├── 02.Another Name.webp
│   └── ...
└── thumbnails/
    ├── 01.Descriptive Name_thumbnail.webp
    ├── 02.Another Name_thumbnail.webp
    └── ...

Image Specifications

PropertyValue
FormatWebP
Quality75 (for ~250KB-800KB file size)
ResolutionKeep original (typically 3024x4032)
Thumbnail width150px (proportional height)

Workflow Steps

Step 1: Create Feature Branch

git checkout -b feature/update-{cottage-code}-images

Step 2: Convert Source Images to WebP

For HEIC files:

cd "src/assets/cottages/cottage-{code}/new-photos/"
for f in *.HEIC; do
  magick "$f" -quality 75 "../converted_${f%.HEIC}.webp"
done

For other formats (JPG, PNG):

for f in *.jpg *.png; do
  magick "$f" -quality 75 "../converted_${f%.*}.webp"
done

Step 3: Review and Name Images

  1. View each converted image using the Read tool
  2. Assign descriptive names based on content:
    • Living areas: "Sala de Estar", "Cocina", "Comedor"
    • Bedrooms: "Dormitorio Principal", "Dormitorio Secundario"
    • Bathroom: "Baño"
    • Exterior: "Exterior Verano", "Exterior Invierno", "Estacionamiento"
    • Other: "Escalera", "Planta Baja", "Terraza"

Step 4: Rename with Sequential Numbers

Use format: ##.Descriptive Name.webp

Examples:

  • 01.Sala de Estar.webp
  • 02.Dormitorio Principal.webp
  • 03.Cocina.webp

Step 5: Handle Reordering (if needed)

To avoid filename conflicts when reordering:

# First: rename all to temp names
for f in *.webp; do mv "$f" "temp_$f"; done

# Then: rename to final sequential names
mv temp_old07.webp "01.New Name.webp"
# ... continue for all files

Step 6: Update main-images Folder

# Remove old images (if replacing)
rm src/assets/cottages/cottage-{code}/main-images/*.webp

# Move new images
mv converted_*.webp src/assets/cottages/cottage-{code}/main-images/

Step 7: Generate Thumbnails

cd src/assets/cottages/cottage-{code}

# Clear old thumbnails
rm -f thumbnails/*.webp

# Generate new thumbnails (150px width)
for f in main-images/*.webp; do
  name=$(basename "$f" .webp)
  magick "$f" -resize 150x "thumbnails/${name}_thumbnail.webp"
done

Step 8: Verify

  1. Run npm run dev to start the development server
  2. Navigate to http://localhost:5173/cottage/{code}
  3. Verify all images load correctly in the carousel
  4. Check that thumbnails display properly

Step 9: Commit Changes

Use conventional commit format:

feat(cottage-{code}): update gallery with new photos

- Brief description of changes
- Number of images added/replaced
- Any reordering done

Common Issues

Filename Encoding (ñ, accents)

Use single quotes for filenames with special characters:

rm '08.Baño.webp'

Large File Sizes

If converted files are too large (>1MB), reduce quality:

magick input.webp -quality 65 output.webp

Missing Thumbnails

Ensure thumbnail naming includes _thumbnail suffix:

main-images/01.Name.webp → thumbnails/01.Name_thumbnail.webp

Quick Reference

TaskCommand
Convert HEICmagick input.HEIC -quality 75 output.webp
Generate thumbnailmagick input.webp -resize 150x output_thumbnail.webp
Check file sizesls -lh main-images/
Count imagesls main-images/*.webp | wc -l

Cottage Codes Reference

CottageCode
Cabaña Mascardimascardi
Cabaña Ottootto
Cabaña Freyfrey
Cabaña Huapihuapi
Cabaña Morenomoreno
Espacio Comúnespacio-comun-belgrano
Cabaña Catedralcatedral

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です