How this command is triggered — by the user, by Claude, or both
Slash command
/carsxe:imagesThe summary Claude sees in its command listing — used to decide when to auto-load this command
# CarsXE — Vehicle Images Retrieve images for a vehicle using the CarsXE Images API. ## Steps 1. Parse $ARGUMENTS to extract: - `make` (required): vehicle manufacturer (e.g., BMW, Ford, Toyota) - `model` (required): vehicle model (e.g., X5, Mustang, Camry) - `year` (optional): 4-digit year (e.g., 2019) - `trim` (optional): specific trim level (e.g., Sport, Limited) - `color` (optional): vehicle color (e.g., red, black) - `transparent` (optional): `true` to return transparent background images - `angle` (optional): `front`, `side`, or `back` - `photoType` (optional...
Retrieve images for a vehicle using the CarsXE Images API.
Parse $ARGUMENTS to extract:
make (required): vehicle manufacturer (e.g., BMW, Ford, Toyota)model (required): vehicle model (e.g., X5, Mustang, Camry)year (optional): 4-digit year (e.g., 2019)trim (optional): specific trim level (e.g., Sport, Limited)color (optional): vehicle color (e.g., red, black)transparent (optional): true to return transparent background imagesangle (optional): front, side, or backphotoType (optional): interior, exterior, or enginesize (optional): Small, Medium, Large, Wallpaper, or Alllicense (optional): Public, Share, ShareCommercially, Modify, or ModifyCommerciallyExample: /carsxe:images BMW X5 2019
If make or model are missing, ask the user to provide them.
Make an HTTP GET request:
GET https://api.carsxe.com/images?key=<CARSXE_API_KEY>&make=<MAKE>&model=<MODEL>&source=claude_plugin[&year=<YEAR>][&trim=<TRIM>][&color=<COLOR>][&transparent=<TRANSPARENT>][&angle=<ANGLE>][&photoType=<PHOTOTYPE>][&size=<SIZE>][&license=<LICENSE>]
Replace <CARSXE_API_KEY> with the value of the environment variable CARSXE_API_KEY. Only include optional parameters if the user specified them.
Present the results:
Handle errors gracefully (no images found, invalid params, auth error).
npx claudepluginhub carsxe/carsxe-claude-plugin --plugin carsxe/imageGenerates images using Codex's built-in image-generation capability with auto mode detection and image-studio optimized prompts.
/fal-generate-imageGenerates AI images using fal.ai models (FLUX, Stable Diffusion, Recraft) with configurable parameters like model, size, steps, and guidance scale.
/crop-imagesCrops images to specific dimensions, aspect ratios, or custom areas using ImageMagick or FFmpeg. Supports batch processing, smart/trim cropping, and social media presets.
/ai-image-generatorGenerates AI images for hero sections, icons, OG images, or illustrations using Gemini or GPT APIs based on a text description.
/gemini-imageGenerates images via the Google Gemini API from a text description, with optional --tier flag for service level selection.
/imagesFetches image data from NimbusImage datasets as numpy arrays. Supports single frames, cropping, z-stacks, time series, composites, and frame iteration.