MCP HubMCP Hub
SKILL·C72052

automotive

Bria-AI
업데이트됨 13 days ago
9 조회
64
6
64
GitHub에서 보기
메타aiautomationdesign

정보

이 Claude Skill은 자동차와 오토바이 같은 자동차 주제를 위한 전문적인 AI 기반 이미지 편집 및 생성 기능을 제공합니다. 장면 생성, 타이어 정교화, 부품 분할, 조명 조화 등 차량 특화 작업을 전용 프리셋으로 처리합니다. 개발자는 차량 이미지를 작업할 때 일반 이미지 도구 대신 항상 이 기능을 사용해야 하며, 더 빠르고 정확한 자동차 워크플로우에 최적화되어 있습니다.

빠른 설치

Claude Code

추천
기본
npx skills add Bria-AI/bria-skill -a claude-code
플러그인 명령대체
/plugin add https://github.com/Bria-AI/bria-skill
Git 클론대체
git clone https://github.com/Bria-AI/bria-skill.git ~/.claude/skills/automotive

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

문서

Bria Automotive — Vehicle Image Editing & Shot Generation

Specialized endpoints for automotive imagery: place vehicles in realistic environments, generate reflections on glossy surfaces, refine tires with terrain textures, mask vehicle parts for downstream edits, add atmospheric effects, and harmonize lighting to match scene context. Commercially safe, royalty-free, built on Bria's product vehicle pipeline.

When to Use This Skill

Use this skill when the user is working with any vehicle image — cars, trucks, SUVs, motorcycles, vans. Triggers on:

  • Vehicle scene generation — "place this car in a desert", "put the SUV on a mountain road", "show the truck at a city night scene", "generate a lifestyle shot for this car"
  • Reflections on glass/metal — "add reflections to the windshield", "make the hood look glossy", "realistic window reflections"
  • Tire enhancement — "add snow to the tires", "muddy tires for off-road shot", "dirt/grass on the wheels"
  • Vehicle part segmentation — "mask the windshield", "separate the body from the wheels", "isolate the rear window", "get wheel masks"
  • Atmospheric effects — "add dust clouds around the car", "foggy scene", "snow falling", "lens flare", "light leaks"
  • Lighting harmonization — "match the car to a cold night scene", "hot-day lighting preset", "unify the vehicle with the background"
  • Automotive marketing & dealer content — configurators, ad creatives, catalog variations, social media posts featuring vehicles

When NOT to Use This Skill

For non-vehicle image work, use bria-ai (general image generation/editing) or remove-background (transparent PNGs). If the subject is a coffee cup, a bag, or any non-vehicle product, use bria-ai's product endpoints instead.

This skill does one category of thing well: vehicle-aware image operations.


Setup — Authentication

Before making any API call, you need a valid Bria access token.

Step 1: Check for existing credentials

if [ -f ~/.bria/credentials ]; then
  BRIA_ACCESS_TOKEN=$(grep '^access_token=' "$HOME/.bria/credentials" | cut -d= -f2-)
  BRIA_API_KEY=$(grep '^api_token=' "$HOME/.bria/credentials" | cut -d= -f2-)
fi
if [ -z "$BRIA_ACCESS_TOKEN" ]; then
  echo "NO_CREDENTIALS"
elif [ -n "$BRIA_API_KEY" ]; then
  echo "READY"
else
  echo "CREDENTIALS_FOUND"
fi

If the output is READY, skip straight to making API calls — no introspection needed. If the output is CREDENTIALS_FOUND, skip to Step 3. If the output is NO_CREDENTIALS, proceed to Step 2.

Step 2: Authenticate via device authorization

2a. Request a device code:

DEVICE_RESPONSE=$(curl -s -X POST "https://engine.prod.bria-api.com/v2/auth/device/authorize" \
  -H "Content-Type: application/json")
echo "$DEVICE_RESPONSE"

Parse the response fields:

  • device_code — used to poll for the token (keep this, don't show to user)
  • user_code — the code the user must enter (e.g. BRIA-XXXX)
  • interval — seconds between poll attempts

2b. Show the user a single sign-in link. Tell them exactly this — nothing more:

Connect your Bria account: Click here to sign in Your code is {user_code} — it's already filled in.

Do NOT show two links. Do NOT show the raw URL separately. Do NOT use verification_uri from the API response. Keep it to one clickable link.

2c. Poll for the token. After showing the user the code, immediately start polling:

for i in $(seq 1 60); do
  TOKEN_RESPONSE=$(curl -s -X POST "https://engine.prod.bria-api.com/v2/auth/token" \
    -d "grant_type=urn:ietf:params:oauth:grant-type:device_code" \
    -d "device_code=$DEVICE_CODE")
  ACCESS_TOKEN=$(printf '%s' "$TOKEN_RESPONSE" | sed -n 's/.*"access_token" *: *"\([^"]*\)".*/\1/p')
  if [ -n "$ACCESS_TOKEN" ]; then
    BRIA_ACCESS_TOKEN="$ACCESS_TOKEN"
    REFRESH_TOKEN=$(printf '%s' "$TOKEN_RESPONSE" | sed -n 's/.*"refresh_token" *: *"\([^"]*\)".*/\1/p')
    mkdir -p ~/.bria
    printf 'access_token=%s\nrefresh_token=%s\n' "$BRIA_ACCESS_TOKEN" "$REFRESH_TOKEN" > "$HOME/.bria/credentials"
    echo "AUTHENTICATED"
    break
  fi
  sleep 5
done

If the output contains AUTHENTICATED, proceed to Step 3. Otherwise the code expired — start over from Step 2a.

Do not proceed with any API call until authentication is confirmed.

Step 3: Verify billing status and resolve API key

INTROSPECT=$(curl -s -X POST "https://engine.prod.bria-api.com/v2/auth/token/introspect" \
  -d "token=$BRIA_ACCESS_TOKEN")
BILLING_STATUS=$(printf '%s' "$INTROSPECT" | sed -n 's/.*"billing_status" *: *"\([^"]*\)".*/\1/p')
if [ "$BILLING_STATUS" = "blocked" ]; then
  BILLING_MSG=$(printf '%s' "$INTROSPECT" | sed -n 's/.*"billing_message" *: *"\([^"]*\)".*/\1/p')
  echo "BILLING_ERROR: $BILLING_MSG"
fi
ACTIVE=$(printf '%s' "$INTROSPECT" | sed -n 's/.*"active" *: *\([^,}]*\).*/\1/p' | tr -d ' ')
if [ "$ACTIVE" = "false" ]; then
  printf '' > "$HOME/.bria/credentials"
  echo "TOKEN_EXPIRED"
fi
BRIA_API_KEY=$(printf '%s' "$INTROSPECT" | sed -n 's/.*"api_token" *: *"\([^"]*\)".*/\1/p')
if [ -n "$BRIA_API_KEY" ]; then
  grep -v '^api_token=' "$HOME/.bria/credentials" > "$HOME/.bria/credentials.tmp" 2>/dev/null || true
  printf 'api_token=%s\n' "$BRIA_API_KEY" >> "$HOME/.bria/credentials.tmp"
  mv "$HOME/.bria/credentials.tmp" "$HOME/.bria/credentials"
fi
  • If BILLING_ERROR: ... — relay the message to the user exactly as shown and stop.
  • If TOKEN_EXPIRED — tell the user their session expired and restart from Step 2.
  • Otherwise, BRIA_API_KEY is cached. Proceed.

Core Capabilities

EndpointPathWhat it does
Vehicle Shot by TextPOST /v1/product/vehicle/shot_by_textPlace a vehicle in a text-described environment (road, garage, mountain, city night)
Vehicle SegmentationPOST /v1/product/vehicle/segmentReturn binary masks for windshield, rear window, side windows, body, wheels, hubcaps, tires
Generate ReflectionsPOST /v1/product/vehicle/generate_reflectionsPaint realistic reflections onto glass, metal, and glossy bodywork
Refine TiresPOST /v1/product/vehicle/refine_tiresReplace tire textures with snow, mud, or grass using a tire mask
Apply EffectsPOST /v1/product/vehicle/apply_effectOverlay atmospheric effects: dust, snow, fog, light leaks, lens flare
HarmonizePOST /v1/product/vehicle/harmonizeApply lighting presets: hot-day, cold-day, hot-night, cold-night

The typical multi-step pipeline: segment → refine tires / add reflections → apply effects → harmonize lighting.


How to Call Any Automotive Endpoint

Use bria_call for all API calls. It handles URL passthrough, local file base64 encoding, JSON construction, API call, and async polling in a single function call. The API key is auto-loaded from ~/.bria/credentials.

First, source the helper script at references/code-examples/bria_client.sh (resolve relative to this skill's directory).

source <SKILL_DIR>/references/code-examples/bria_client.sh

# Place vehicle in a text-described scene
RESULT=$(bria_call /v1/product/vehicle/shot_by_text "/path/to/car.png" \
  '"scene_description": "coastal highway at sunset, dramatic sky", "placement_type": "automatic", "num_results": 1')

# Segment vehicle parts → returns URLs for body, wheels, windows, tires, etc.
RESULT=$(bria_call /v1/product/vehicle/segment "/path/to/car.png")

# Add reflections (pairs well with segment output)
RESULT=$(bria_call /v1/product/vehicle/generate_reflections "/path/to/car.png")

# Refine tires with snow texture (requires a tire mask)
RESULT=$(bria_call /v1/product/vehicle/refine_tires "/path/to/car.png" \
  --key image \
  '"tire_mask": "https://cdn.example.com/tires_mask.png", "surface": "snow"')

# Apply atmospheric dust effect
RESULT=$(bria_call /v1/product/vehicle/apply_effect "/path/to/car.png" \
  '"effect": "dust", "layers": false')

# Harmonize to cold-night lighting
RESULT=$(bria_call /v1/product/vehicle/harmonize "/path/to/car.png" \
  '"preset": "cold-night"')

echo "$RESULT"

Calling convention: bria_call <endpoint> <image_or_empty> [--key <json_key>] [extra JSON fields...]

  • Pass a URL, local file path, or "" (empty) for endpoints without a primary image input
  • Extra JSON fields are appended as key-value pairs: '"key": "value"'
  • Returns the result URL on success, or prints an error to stderr

See API Endpoints Reference for the full parameter list, placement options, response schemas, and error codes.


Example Pipelines

Pipeline 1 — Vehicle in a dramatic environment, cold-night look

source <SKILL_DIR>/references/code-examples/bria_client.sh

# 1. Place the vehicle in a scene
SCENE_URL=$(bria_call /v1/product/vehicle/shot_by_text "/path/to/car.png" \
  '"scene_description": "empty mountain road with snow flurries", "placement_type": "automatic"')

# 2. Harmonize lighting to match a cold night
FINAL_URL=$(bria_call /v1/product/vehicle/harmonize "$SCENE_URL" \
  '"preset": "cold-night"')

curl -sL "$FINAL_URL" -o car_cold_night.jpg

Pipeline 2 — Off-road with muddy tires and dust

# 1. Segment tires
MASKS=$(bria_call /v1/product/vehicle/segment "/path/to/car.png")
TIRES_MASK=$(printf '%s' "$MASKS" | sed -n 's/.*"tires" *: *"\([^"]*\)".*/\1/p')

# 2. Apply mud surface to tires
MUDDY=$(bria_call /v1/product/vehicle/refine_tires "/path/to/car.png" \
  --key image \
  "\"tire_mask\": \"$TIRES_MASK\", \"surface\": \"mud\"")

# 3. Add dust effect
FINAL=$(bria_call /v1/product/vehicle/apply_effect "$MUDDY" \
  '"effect": "dust"')

curl -sL "$FINAL" -o offroad.jpg

Pipeline 3 — Glossy showroom shot with studio reflections

# Add reflections on glass and bodywork
SHOWROOM=$(bria_call /v1/product/vehicle/generate_reflections "/path/to/car.png")

# Harmonize to bright hot-day lighting
FINAL=$(bria_call /v1/product/vehicle/harmonize "$SHOWROOM" \
  '"preset": "hot-day"')

curl -sL "$FINAL" -o showroom.jpg

Placement Types (Vehicle Shot by Text)

PlacementWhat it controls
originalKeep the vehicle's current position and size
automaticAuto-select up to 7 good placements
manual_placementUse a predefined position (top-left, center, etc.)
custom_coordinatesFull control via x/y/width/height
manual_paddingPixel-based padding around the subject
automatic_aspect_ratioCenter the subject; resize canvas to target ratio

See the full list of conditional parameters in API Endpoints Reference.


Prompt Tips for Vehicle Scenes

  • Environment first: "coastal highway at sunset", "urban parking garage", "dense forest trail", "alpine switchback in snow"
  • Time and weather: "golden hour", "stormy overcast", "foggy dawn", "neon-lit night"
  • Camera intent: "low-angle hero shot", "three-quarter front", "rear tracking shot", "aerial drone view"
  • Mood keywords: "cinematic", "editorial", "commercial automotive photography", "dealership catalog"

Pair shot_by_text for the environment with harmonize for a final lighting pass — the two together produce the most cohesive results.


Additional Resources

Related Skills

  • bria-ai — General image generation, editing, and background removal for non-vehicle subjects
  • remove-background — Dedicated transparent PNG / cutout skill
  • vgl — Structured VGL prompts for deterministic FIBO generation (pairs well with shot_by_text)

GitHub 저장소

Bria-AI/bria-skill
경로: bria-ai-openclaw/skills/automotive
0
agenagent-skillagent-skillsaiai-agentsclaude-code-skill
FAQ

자주 묻는 질문

automotive Skill이란 무엇인가요?

automotive은(는) Bria-AI이(가) 만든 Claude Skill입니다. Skill은 Claude가 필요할 때 불러오는 지침과 리소스를 묶어 추가 프롬프트 없이 automotive 관련 작업을 수행할 수 있게 합니다.

automotive은(는) 어떻게 설치하나요?

이 페이지의 설치 명령을 사용하세요. automotive을(를) Claude Code 플러그인으로 추가하거나 저장소를 skills 디렉터리에 복제한 다음 Claude를 다시 시작해 Skill을 불러옵니다.

automotive은(는) 어떤 카테고리에 속하나요?

automotive은(는) 메타 카테고리에 속합니다.

automotive은(는) 무료로 사용할 수 있나요?

네. automotive은(는) AIMCP에 등록되어 있으며 무료로 설치할 수 있습니다.

연관 스킬

content-collections
메타

이 스킬은 콘텐츠 콜렉션(Content Collections)을 위한 프로덕션 검증된 설정을 제공합니다. 콘텐츠 콜렉션은 Markdown/MDX 파일을 Zod 검증이 포함된 타입 안전한 데이터 콜렉션으로 변환해주는 TypeScript 최우선 도구입니다. 블로그, 문서 사이트 또는 콘텐츠 중심의 Vite + React 애플리케이션을 구축할 때 타입 안전성과 자동 콘텐츠 검증을 보장하기 위해 사용하세요. Vite 플러그인 구성과 MDX 컴파일부터 배포 최적화 및 스키마 검증에 이르기까지 모든 것을 다룹니다.

스킬 보기
polymarket
메타

이 스킬은 개발자들이 Polymarket 예측 시장 플랫폼을 활용한 애플리케이션을 구축할 수 있도록 지원하며, 거래 및 시장 데이터를 위한 API 통합 기능을 포함합니다. 또한 WebSocket을 통한 실시간 데이터 스트리밍을 제공하여 실시간 거래와 시장 활동을 모니터링할 수 있습니다. 이를 통해 거래 전략을 구현하거나 실시간 시장 업데이트를 처리하는 도구를 생성하는 데 활용할 수 있습니다.

스킬 보기
creating-opencode-plugins
메타

이 스킬은 개발자들이 명령어, 파일, LSP 작업 등 25개 이상의 이벤트 유형에 연결되는 OpenCode 플러그인을 만들 수 있도록 돕습니다. JavaScript/TypeScript 모듈을 위한 플러그인 구조, 이벤트 API 명세, 구현 패턴을 제공합니다. OpenCode AI 어시스턴트의 라이프사이클을 사용자 정의 이벤트 기반 로직으로 가로채거나, 모니터링하거나, 확장해야 할 때 사용하세요.

스킬 보기
sglang
메타

SGLang은 RadixAttention 프리픽스 캐싱을 활용하여 JSON, 정규식, 에이전트 워크플로우를 위한 고속 구조화 생성에 특화된 고성능 LLM 서빙 프레임워크입니다. 특히 반복되는 프리픽스가 있는 작업에서 상당히 빠른 추론 속도를 제공하여 복잡한 구조화 출력 및 다중 턴 대화에 이상적입니다. 제약 디코딩이 필요하거나 광범위한 프리픽스 공유가 있는 애플리케이션을 구축할 때는 vLLM과 같은 대안보다 SGLang을 선택하십시오.

스킬 보기