Leading indicators for automotive OEM stocks. Triggers: "OEM stock signal", "how is Ford doing", "Toyota demand trends", "brand health check", "investment signal for [OEM]", "pricing power analysis", "days supply", "OEM market share trends", "brand volume momentum", "inventory build", tracking leading indicators for publicly traded automotive OEMs to support equity research and investment decisions.
From analystnpx claudepluginhub marketcheckhub/marketcheck-cowork-plugin --plugin analystThis 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.
Builds 3-5 year financial models for startups with cohort revenue projections, cost structures, cash flow, headcount plans, burn rate, runway, and scenario analysis.
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: tracked_tickers, tracked_makes, tracked_states, benchmark_period_months, country. If missing, ask for OEM/ticker and geography. US-only. Confirm profile.
Financial analyst (equity researcher, hedge fund analyst, portfolio manager) needing leading indicators for investment decisions on publicly traded automotive OEMs. Each metric includes BULLISH/BEARISH/NEUTRAL/CAUTION signal tied to stock tickers.
OEM TICKERS:
F → Ford, Lincoln
GM → Chevrolet, GMC, Buick, Cadillac
TM → Toyota, Lexus
HMC → Honda, Acura
STLA → Chrysler, Dodge, Jeep, Ram, Fiat, Alfa Romeo, Maserati
TSLA → Tesla
RIVN → Rivian
LCID → Lucid
HYMTF → Hyundai, Kia, Genesis
NSANY → Nissan, Infiniti
MBGAF → Mercedes-Benz
BMWYY → BMW, MINI, Rolls-Royce
VWAGY → Volkswagen, Audi, Porsche, Lamborghini, Bentley
DEALER GROUP TICKERS:
AN → AutoNation
LAD → Lithia Motors
PAG → Penske Automotive
SAH → Sonic Automotive
GPI → Group 1 Automotive
ABG → Asbury Automotive
KMX → CarMax
CVNA → Carvana
If the user provides a ticker, map it to makes using this table. If the user provides a make name (e.g., "Ford"), reverse-map to the ticker. For dealer group tickers, redirect to the dealer-group-health-monitor skill.
Use this when a user asks "How is Ford doing?" or "Investment signal for GM" or "Toyota demand trends."
Map the user's input (ticker or brand name) to the list of makes using the built-in mapping. Confirm: "Analyzing [Ticker] ([Company Name]): [Make1, Make2, ...]"
Determine date ranges:
analyst.benchmark_period_months or default 3For EACH make in the ticker's mapping, 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 per make per period. Discard full response.
Sum sold_count across all makes for the ticker.
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 to get MSRP positioning:
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: 0This gives total active NEW inventory count and average DOM.
→ Extract only: num_found, dom stats 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 period. Discard full response.
Calculate the OEM's aggregate share across its makes:
From the sold data in Step 2/3, extract average_days_on_market for each period.
Calculate:
If the OEM sells EVs (Tesla, Rivian, Lucid, or legacy OEMs with EV models):
Call mcp__marketcheck__get_sold_summary with:
make: the OEM's makesfuel_type_category: EVsold_count, average_sale_price per period. Discard full response.Calculate:
For EV pure-plays (TSLA, RIVN, LCID), this IS the entire analysis. For legacy OEMs, it shows transition progress.
Call mcp__marketcheck__get_sold_summary with:
make: each of the OEM's 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: composite investment thesis headline (BULLISH/BEARISH/MIXED/NEUTRAL) with ticker, leading indicators table (volume, ASP, MSRP positioning, days supply, market share, DOM), EV transition metrics if applicable, segment mix, and ticker impact statement connecting data to earnings implications.
For the composite thesis:
Always provide the specific data that drives each signal — analysts need to verify the reasoning, not just the conclusion. Always tie the conclusion back to the stock ticker and expected earnings impact.
If the user asks "compare Ford vs GM" or "which OEM is winning":
Metric | Ford (F) | GM (GM) | Advantage
--------------------|----------|---------|----------
Volume MoM | +3.8% | +1.2% | Ford
Pricing Power | -0.9% | +0.3% | GM
Days Supply | 72 | 58 | GM
Market Share Change | +30 bps | -15 bps | Ford
EV Penetration | 4.2% | 6.1% | GM
get_sold_summary and search_active_cars which require US market data.