Help us improve
Share bugs, ideas, or general feedback.
From carsxe
Look up vehicle information from a license plate number using the CarsXE API. Use this when a user mentions a license plate and wants to know what vehicle it belongs to.
npx claudepluginhub carsxe/carsxe-claude-plugin --plugin carsxeHow this skill is triggered — by the user, by Claude, or both
Slash command
/carsxe:plate-decoderThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When the user provides a license plate number:
Queries public CarJam NZ vehicle info (plate, VIN, chassis) via a no-login CLI. Returns make/model/year/colour/odometer snippets with structured JSON output.
Automates Platerecognizer license plate recognition operations via Composio toolkit through Rube MCP. Discovers tools, manages connections, and executes workflows.
Guides Payload CMS config (payload.config.ts), collections, fields, hooks, access control, APIs. Debugs validation errors, security, relationships, queries, transactions, hook behavior.
Share bugs, ideas, or general feedback.
When the user provides a license plate number:
Extract the following from the user's message:
plate (required): the license plate number — if not provided, alert the user:
"Please provide a license plate number."
country (required): ISO 3166-1 alpha-2 country code (e.g., US, AU, GB) — if not provided, alert the user:
"Please provide a country code (e.g., US, AU, GB)."
state (required): 2-letter state/province code (e.g., CA, NY) — if not provided, alert the user:
"Please provide a state code (e.g., CA, NY, TX)."
Do not call the API until all three fields are provided.
Call the CarsXE Plate Decoder API:
GET https://api.carsxe.com/v2/platedecoder?key={CARSXE_API_KEY}&plate={PLATE}&country={COUNTRY}&state={STATE}&source=claude_plugin
Present the results: vehicle Make, Model, Year, VIN (if returned), and registration info.
If the API key is missing, tell the user to set the CARSXE_API_KEY environment variable.