Brand health and competitive threat monitoring. Triggers: "brand health check", "how is my brand doing", "brand performance dashboard", "pricing power analysis", "days supply", "brand volume momentum", "inventory build", "operational KPIs", "brand health metrics", "self-monitoring", "brand demand trends", "competitive threat assessment", tracking brand health indicators and operational KPIs for OEM brands and monitoring competitive threats.
From manufacturernpx claudepluginhub marketcheckhub/marketcheck-cowork-plugin --plugin manufacturerThis skill uses the workspace's default tool permissions.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Calculates TAM/SAM/SOM using top-down, bottom-up, and value theory methodologies for market sizing, revenue estimation, and startup validation.
Date anchor: Today's date comes from the
# currentDatesystem context. Compute ALL relative dates from it. Example: if today = 2026-03-14, then "prior month" = 2026-02-01 to 2026-02-28, "current month" (most recent complete) = February 2026, "three months ago" = December 2025. Never use training-data dates.
Load the marketcheck-profile.md project memory file if exists. Extract: brands (operational KPIs), states, competitor_brands (competitive threats), country, user_name, company. If missing, ask brand, states, and competitors. US-only; if UK, inform not available and stop. Confirm profile.
User is an OEM regional manager, brand strategist, or distributor self-monitoring brand health and tracking competitive threats. Frame your-brand metrics as OPERATIONAL KPIs; competitor metrics as COMPETITIVE THREATS.
TOYOTA MOTOR → Toyota, Lexus
HONDA MOTOR → Honda, Acura
GM → Chevrolet, GMC, Buick, Cadillac
FORD MOTOR → Ford, Lincoln
STELLANTIS → Chrysler, Dodge, Jeep, Ram, Fiat, Alfa Romeo, Maserati
TESLA → Tesla
HYUNDAI MOTOR → Hyundai, Kia, Genesis
NISSAN MOTOR → Nissan, Infiniti
MERCEDES-BENZ → Mercedes-Benz
BMW GROUP → BMW, MINI, Rolls-Royce
VW GROUP → Volkswagen, Audi, Porsche, Lamborghini, Bentley
RIVIAN → Rivian
LUCID → Lucid
If the user provides a parent company name, map it to makes. If the user provides a make name (e.g., "Toyota"), use directly.
Use this when a user asks "How is my brand doing?" or "Brand health dashboard" or "Operational KPIs."
Map the user's input or profile brands to the list of makes. Confirm: "Analyzing brand health for [Company]: [Make1, Make2, ...]"
Determine date ranges:
For EACH make in your brands, call mcp__marketcheck__get_sold_summary with:
make: the makestate: from profile or user input (or omit for national)date_from / date_to: current monthranking_dimensions: makeranking_measure: sold_counttop_n: 1Repeat for prior month and 3-month-ago period.
-> Extract only: sold_count, average_days_on_market per make per period. Discard full response.
Sum sold_count across all your makes.
Calculate:
For each make, call mcp__marketcheck__get_sold_summary with:
make: the makestate: from profile or user inputdate_from / date_to: current monthranking_dimensions: makeranking_measure: average_sale_pricetop_n: 1Repeat for prior month.
-> Extract only: average_sale_price per make per period. Discard full response.
Also call for new vehicles specifically:
inventory_type: Newranking_measure: price_over_msrp_percentage
-> Extract only: price_over_msrp_percentage per make per period. Discard full response.Calculate:
Call mcp__marketcheck__search_active_cars with:
make: each makestate (via seller_state) or nationalcar_type: newstats: price,domrows: 0
-> Extract only: num_found, stats.dom.mean per make. Discard full response.Call mcp__marketcheck__get_sold_summary for the same make/state/period to get monthly sold volume.
-> Extract only: sold_count per make. Discard full response.
Calculate:
Call mcp__marketcheck__get_sold_summary with:
state: from profile or user inputdate_from / date_to: current monthranking_dimensions: makeranking_measure: sold_countranking_order: desctop_n: 25Repeat for prior month.
-> Extract only: make, sold_count per brand per period, plus total_sold_count. Discard full response.
Calculate your aggregate share across your makes AND each competitor's share:
From the sold data in Step 2/3, extract average_days_on_market for each period.
Calculate:
If your brands sell EVs:
Call mcp__marketcheck__get_sold_summary with:
make: your makesfuel_type_category: EVsold_count, average_sale_price per make per period. Discard full response.Calculate:
Call mcp__marketcheck__get_sold_summary with:
make: each of your makesranking_dimensions: body_typeranking_measure: sold_countbody_type, sold_count, average_sale_price per segment. Discard full response.Calculate share by segment (Pickup, SUV, Sedan, EV, etc.) and pricing trend per segment.
Present: operational KPI table (volume, price, MSRP position, days supply, share, DOM with status labels), competitive threat monitor table, EV progress (if applicable), segment mix, composite health signal (HEALTHY/STABLE/DECLINING/MIXED), and actionable recommendations citing specific data.
For the composite assessment:
If the user asks "compare my brand vs Honda" or "competitive deep dive":
Metric | Your Brand | Honda | Advantage
--------------------|------------|------------|----------
Volume MoM | +3.8% | +1.2% | You
Pricing Power | -0.9% | +0.3% | Honda
Days Supply | 72 | 58 | Honda
Market Share Change | +30 bps | -15 bps | You
EV Penetration | 4.2% | 6.1% | Honda
get_sold_summary and search_active_cars which require US market data.