diff --git a/README.md b/README.md index 937a058..2f25da5 100644 --- a/README.md +++ b/README.md @@ -124,6 +124,7 @@ Long-running, exploratory research with structured outputs and citations. | --- | --- | --- | --- | --- | | [**Market Analysis Demo**](python-recipes/market-analysis-demo) | Flask app that turns a market-research prompt into a streamed report with email delivery. SSE progress + webhook completion. | `Task` `Deep Research` `SSE` `Webhooks` | Python · Flask · Postgres · Resend | [Live](https://market-analysis-demo.parallel.ai) | | [**Deep Research Notebook**](python-recipes/Deep_Research_Recipe.ipynb) | Interactive Jupyter walkthrough of Deep Research — text + JSON outputs, citations, confidence scores, webhook patterns. | `Deep Research` `Webhooks` | Jupyter · Python | – | +| [**Due Diligence Agent (Deep Agents)**](python-recipes/parallel-deepagents-due-diligence) | Multi-agent DD on LangChain Deep Agents — five Phase-1 subagents + per-competitor Phase-2 fan-out. `parse_basis` for per-field confidence, `previous_interaction_id` for chained follow-ups, disk-backed workpapers. Validated on Rivian: 14 min, 10 Task calls, 33KB cited memo. | `Task` `Search` | Python · LangChain · Deep Agents | [Sample memo](python-recipes/parallel-deepagents-due-diligence/reports/workpapers/rivian-due-diligence-report.md) | ### Identity & Entity Resolution diff --git a/python-recipes/parallel-deepagents-due-diligence/.env.example b/python-recipes/parallel-deepagents-due-diligence/.env.example new file mode 100644 index 0000000..6d72f7a --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/.env.example @@ -0,0 +1,2 @@ +ANTHROPIC_API_KEY=sk-ant-... +PARALLEL_API_KEY=... diff --git a/python-recipes/parallel-deepagents-due-diligence/.gitignore b/python-recipes/parallel-deepagents-due-diligence/.gitignore new file mode 100644 index 0000000..c1f5e69 --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/.gitignore @@ -0,0 +1,6 @@ +.venv/ +.env +__pycache__/ +*.pyc +*.log +.ipynb_checkpoints/ diff --git a/python-recipes/parallel-deepagents-due-diligence/README.md b/python-recipes/parallel-deepagents-due-diligence/README.md new file mode 100644 index 0000000..6128619 --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/README.md @@ -0,0 +1,210 @@ +# Building a due diligence agent with Deep Agents and Parallel + +**A research agent that reasons over its own confidence and chains follow-up queries when it isn't sure.** + +> Companion to the LangChain blog post: [Building a Company Due Diligence Agent with Deep Agents, LangSmith, and Parallel](https://www.langchain.com/blog/building-a-company-due-diligence-agent-with-deep-agents-langsmith-and-parallel). + +Most research agents do one search, take what they get, and move on. This recipe shows a different pattern: an agent that examines the confidence of its own findings and chains follow-up queries when a result is uncertain. Deep Agents handles the orchestration — planning, subagent delegation, virtual filesystem. Parallel's Task API returns structured findings with per-field citations and calibrated confidence via Basis. Parallel's `previous_interaction_id` lets the agent pick up where a prior query left off — context preserved, follow-up question added. + +The worked example is **company due diligence**: take a target, investigate it across five dimensions in parallel, produce a structured report where every claim has a source trail. DD shows up in PE deal screening, credit underwriting, KYB onboarding, M&A target evaluation, and vendor risk. But the pattern underneath — typed-output research with confidence-driven follow-ups — works for any multi-source research task: newsletter prep, lead generation, comparison shopping, market sizing, candidate background checks. Swap the subagents and you have a different agent. + +## Overview + +The agent runs in three phases — Phase 2 fans out a per-competitor subagent, which is where the Deep Agents harness's context-isolation pattern earns its keep. + +**Phase 1** — five subagents run in parallel: + +- **Corporate profile** — legal entity structure, key officers, founding history, headcount, office locations. +- **Financial health** — funding history, revenue signals, valuation indicators, profitability markers. +- **Litigation and regulatory** — lawsuits, SEC filings, sanctions screening, regulatory actions, settlements. +- **News and reputation** — recent press coverage, leadership changes, controversy flags, media sentiment. +- **Competitive landscape** — identifies the target's top 3–5 competitors and positioning. Does NOT investigate each competitor — that's Phase 2. + +**Phase 2 — competitor fan-out**: once `competitive-landscape` returns the named list, the orchestrator dispatches a separate `competitor-analysis` subagent **once per competitor**, in parallel. Each instance runs in its own isolated context, produces a focused profile of that competitor (corporate snapshot, revenue, positioning vs. the target, recent strategic moves, strengths/weaknesses), and writes to its own `competitor-.md` workpaper. This is the canonical Deep Agents pattern: spawning N instances of the same subagent type for N parallel investigations. + +**Phase 3** — the orchestrator reads every workpaper (the five Phase-1 files plus all `competitor-.md` files), cross-references for contradictions and low-confidence findings, runs ad-hoc lookups via `ParallelWebSearchTool` where needed, and synthesizes the final memo with a comparative competitor section. + +DD requires this multi-step architecture because earlier findings change what needs to be investigated next. If `corporate-profile` reveals the target is a subsidiary, financial analysis covers the parent. If `competitive-landscape` returns 4 competitors, Phase 2 spawns 4 parallel investigations rather than packing everything into one mega-call. Deep Agents' `write_todos` planner sequences this naturally. + +Each research call uses a `pro-fast` processor Task API call by default — deeper reasoning per call than `core-fast`, agent-loop friendly latency. See [Parallel pricing](https://docs.parallel.ai/getting-started/pricing) for current rates. + +## Run it + +```bash +# Using uv (recommended) +uv venv +uv pip install -r requirements.txt + +cp .env.example .env # then fill in your keys + +uv run python agent.py "Rivian Automotive" +``` + +Stream progress in real time: + +```python +from agent import stream + +stream("Rivian Automotive") +``` + +Or interactively in the [notebook](due_diligence.ipynb). + +To run inside LangGraph dev server: + +```bash +uv run langgraph dev +``` + +The provided `langgraph.json` exposes the agent under the graph id `due_diligence`. + +## How it works + +### The `research_task` tool + +Every subagent calls a single tool that wraps Parallel's Task API and surfaces Basis metadata for the agent to reason over: + +```python +from langchain_core.tools import tool +from langchain_parallel import ParallelTaskRunTool, parse_basis + +@tool +def research_task(query: str, output_description: str, previous_interaction_id: str | None = None) -> dict: + """Run structured web research via Parallel's Task API. + + Returns findings with per-field citations and confidence scores (Basis). + Use previous_interaction_id to chain follow-up queries that build on + prior research context. + """ + runner = ParallelTaskRunTool( + processor="pro-fast", + task_output_schema=output_description, + ) + invoke_args: dict = {"input": query} + if previous_interaction_id: + invoke_args["previous_interaction_id"] = previous_interaction_id + + result = runner.invoke(invoke_args) + parsed = parse_basis(result) + + output = result["output"] + findings = output.get("content") if isinstance(output, dict) else output + + response: dict = { + "findings": findings, + "citations_by_field": parsed["citations_by_field"], + "interaction_id": parsed["interaction_id"], + } + if parsed["low_confidence_fields"]: + response["low_confidence_warning"] = ( + "These fields came back with low confidence and should be verified, " + "ideally by chaining a follow-up query with previous_interaction_id: " + + ", ".join(parsed["low_confidence_fields"]) + ) + return response +``` + +The wrapper does three things on top of the SDK call: + +1. **Routes** through `ParallelTaskRunTool` — agent-friendly invocation that blocks until the Task completes and returns the structured result. +2. **Parses Basis** via `parse_basis`, which extracts `citations_by_field` and `low_confidence_fields` from the result. +3. **Surfaces a warning** when any field came back at low confidence, so the subagent's reasoning can decide to chain a follow-up query using the returned `interaction_id`. + +This is the canonical "use the SDK + Basis" pattern. It's small enough to read in one screen and copy into other agents. + +### Subagents and the orchestrator + +Each subagent gets a focused system prompt and the `research_task` tool. See [`agent.py`](agent.py) for the full prompts; here is the shape of one: + +```python +from deepagents import create_deep_agent + +corporate_profile_subagent = { + "name": "corporate-profile", + "description": "Research corporate structure, leadership, founding history, and headcount", + "system_prompt": """You are a corporate research analyst. + +Use the research_task tool to find: legal entity name, current CEO and key +executives, headquarters, employee headcount, corporate structure... + +If the result includes a low_confidence_warning, run a follow-up query using +the returned interaction_id to verify the flagged fields specifically.""", + "tools": [research_task], +} +``` + +The orchestrator uses Deep Agents' built-in `write_todos` planner, the `task` tool to dispatch subagents in parallel, the virtual filesystem to read each subagent's workpaper, and `ParallelWebSearchTool` for ad-hoc lookups when contradictions surface. It synthesizes the final report with explicit confidence-and-verification notes and a list of risk flags requiring further investigation. + +```python +agent = create_deep_agent( + model="anthropic:claude-sonnet-4-6", + tools=[quick_search], + subagents=[ + corporate_profile_subagent, + financial_health_subagent, + litigation_subagent, + news_reputation_subagent, + competitive_landscape_subagent, + ], + system_prompt=DILIGENCE_INSTRUCTIONS, +) +``` + +## Cost and latency + +A typical full run produces 8–12 Task API calls — five Phase-1 tracks (one packed call each plus a couple of chained follow-ups on low-confidence findings) plus three Phase-2 competitor-analysis instances. The Rivian sample in [`sample_output_rivian.md`](sample_output_rivian.md) was generated at the default `pro-fast` tier. + +| Tier | Per-run estimate | When to use | +|---|---|---| +| `core-fast` | ~$0.75–1.50, ~15–25 min | Faster draft, useful for iterating on prompts | +| `pro-fast` per subagent (default) | depends on processor pricing | Higher-stakes DD with deeper reasoning per call | +| `core` per subagent | ~$1–2, ~25–40 min | Deeper non-`-fast` variant of `core` | +| Tier-up to `pro-fast` | ~$3–6, ~25–45 min | Higher-stakes DD with richer reasoning per track | +| Tier-up to `ultra` | ~$30–80, 90–180 min | Investment-committee-grade output | + +Update the `processor` argument inside `research_task` to switch tiers, or override per-subagent if some tracks (e.g. financial-health) warrant more depth than others. The `-fast` variants of any tier are 2–5× faster at similar accuracy and are the right pick for agent-in-the-loop interaction; drop the `-fast` suffix when you want maximum quality and don't mind waiting. + +The agent uses a **disk-backed filesystem** (`FilesystemBackend(root_dir="./reports", virtual_mode=True)`) so workpapers and the long-form memo are written to your local filesystem during the run. After a run completes you'll find: + +``` +reports/ +└── workpapers/ + ├── corporate-profile.md + ├── financial-health.md + ├── litigation-regulatory.md + ├── news-reputation.md + ├── competitive-landscape.md + ├── competitor-.md (one per competitor — Phase 2 fan-out) + └── rivian-due-diligence-report.md (the full ~30KB synthesized memo) +``` + +The orchestrator's final assistant message (saved to `sample_output_rivian.md` by the runner) is a structured executive summary. The same-named file inside `reports/workpapers/` is the long-form memo with full per-section detail, inline source URLs, and references to every workpaper. + +## Adapting the agent + +The pattern doesn't care about the domain. Swap the five DD tracks for whatever you actually research: + +- **Newsletter prep:** topic-survey / contrarian-views / primary-sources / open-questions subagents. +- **Lead generation:** company-overview / decision-maker / recent-signals / outreach-hook subagents. +- **Comparison shopping:** product-spec / price-and-availability / review-summary / shipping subagents. +- **Market sizing:** TAM / competitor-landscape / growth-drivers / regulatory-tailwinds subagents. +- **Candidate research:** background / public-work / network / red-flags subagents. +- **Compliance / KYB:** beneficial-ownership / sanctions / litigation / PEP-screening subagents. +- **M&A target screening:** add an IP-portfolio subagent to the DD set. +- **VC sourcing:** swap financial-health for founder-and-team. + +Each track is another subagent dict with a system prompt and the same `research_task` tool. The orchestrator's `write_todos` planner adapts automatically — no new infrastructure needed. + +## Caveats + +This agent produces a **draft** for human review, not a final memo. Web sources can be incomplete, outdated, or conflicting. Every Parallel-sourced field carries a citation and a confidence score; the orchestrator surfaces low-confidence findings explicitly. **Use them.** Treat the output as a senior analyst's prep, not as decision-grade output. + +## Resources + +- [LangChain blog: Building a Company Due Diligence Agent with Deep Agents, LangSmith, and Parallel](https://www.langchain.com/blog/building-a-company-due-diligence-agent-with-deep-agents-langsmith-and-parallel) +- [Deep Agents documentation](https://docs.langchain.com/oss/python/deepagents/overview) +- [Parallel Task API](https://docs.parallel.ai/task-api/task-quickstart) +- [Parallel Basis and Citations](https://docs.parallel.ai/task-api/guides/basis) +- [Parallel Interactive Research](https://docs.parallel.ai/task-api/guides/interactions) +- [`langchain-parallel` SDK](https://github.com/parallel-web/langchain-parallel) +- [Get a Parallel API key](https://platform.parallel.ai) diff --git a/python-recipes/parallel-deepagents-due-diligence/agent.py b/python-recipes/parallel-deepagents-due-diligence/agent.py new file mode 100644 index 0000000..71ac728 --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/agent.py @@ -0,0 +1,410 @@ +"""Company due diligence agent built on Deep Agents and Parallel. + +The orchestrator plans the diligence as a TODO list, dispatches five research +subagents to work in parallel, reviews each subagent's findings (including +explicit low-confidence warnings surfaced by Parallel's Basis), runs targeted +follow-up queries when needed, and synthesizes a citation-grade DD memo. + +Run: + export ANTHROPIC_API_KEY="..." + export PARALLEL_API_KEY="..." + uv run python agent.py +""" + +from __future__ import annotations + +from pathlib import Path +from typing import Optional + +from deepagents import create_deep_agent +from deepagents.backends.filesystem import FilesystemBackend +from langchain_core.tools import tool +from langchain_parallel import ( + ParallelTaskRunTool, + ParallelWebSearchTool, + parse_basis, +) + + +# Default target company for the example run. Override by passing a different +# name to ``run(target)`` / ``stream(target)`` or via the CLI. +TARGET_COMPANY = "Rivian Automotive" + +# Where the agent writes per-subagent workpapers and the final memo. The +# orchestrator and subagents call write_file / read_file against this root. +# Defaults to ./reports/ relative to this file. +REPORTS_DIR = Path(__file__).parent / "reports" +REPORTS_DIR.mkdir(parents=True, exist_ok=True) + + +# --------------------------------------------------------------------------- +# Tools +# --------------------------------------------------------------------------- + + +@tool +def research_task( + query: str, + output_description: str, + previous_interaction_id: Optional[str] = None, +) -> dict: + """Run structured web research via Parallel's Task API. + + Returns findings with per-field citations and confidence scores (Basis). + Use ``previous_interaction_id`` to chain a follow-up query that builds on + a prior research session — useful when an earlier result surfaces a + ``low_confidence_warning`` and you want to dig deeper on flagged fields. + + Args: + query: The research question or company name. + output_description: A natural-language description of the structured + information you want returned. Be specific — list fields. + previous_interaction_id: Chain onto a previous research session. + Pass the ``interaction_id`` from a prior ``research_task`` result. + + Returns: + Dict with: + - ``findings``: structured output content from the Task API. + - ``citations_by_field``: per-field source citations. + - ``interaction_id``: chain this into a follow-up via + ``previous_interaction_id``. + - ``low_confidence_warning`` (optional): present only when one or + more fields came back at confidence == "low". The agent should + consider chaining a follow-up to verify those specific fields. + """ + runner = ParallelTaskRunTool( + processor="pro-fast", + task_output_schema=output_description, + ) + invoke_args: dict = {"input": query} + if previous_interaction_id: + invoke_args["previous_interaction_id"] = previous_interaction_id + + result = runner.invoke(invoke_args) + parsed = parse_basis(result) + + output = result["output"] + findings = output.get("content") if isinstance(output, dict) else output + + response: dict = { + "findings": findings, + "citations_by_field": parsed["citations_by_field"], + "interaction_id": parsed["interaction_id"], + } + if parsed["low_confidence_fields"]: + response["low_confidence_warning"] = ( + "These fields came back with low confidence and should be " + "verified, ideally by chaining a follow-up query with " + "previous_interaction_id: " + + ", ".join(parsed["low_confidence_fields"]) + ) + return response + + +quick_search = ParallelWebSearchTool() + + +# --------------------------------------------------------------------------- +# Subagents +# --------------------------------------------------------------------------- + + +corporate_profile_subagent = { + "name": "corporate-profile", + "description": ( + "Research corporate structure, leadership, founding history, " + "and headcount for the target company." + ), + "system_prompt": """You are a corporate research analyst. + +**Budget: 1 research_task call, plus at most 1 chained follow-up if and +only if the first result included a low_confidence_warning on an +important field.** Do not make additional discretionary queries. + +Make a single research_task call requesting all of these fields in one +output_description: +- Legal entity name, incorporation jurisdiction, founding date +- Current CEO and key executives (names, titles, approximate tenure) +- Headquarters location and major office locations +- Employee headcount (current and recent trend) +- Corporate structure (parent company, major subsidiaries) + +If a low_confidence_warning surfaces, optionally chain a single follow-up +using previous_interaction_id to verify the flagged fields. + +Write your findings (including citations_by_field) to corporate-profile.md.""", + "tools": [research_task], +} + +financial_health_subagent = { + "name": "financial-health", + "description": ( + "Research funding history, revenue signals, and financial indicators " + "for the target company." + ), + "system_prompt": """You are a financial research analyst. + +**Budget: 1 research_task call, plus at most 1 chained follow-up if and +only if a critical financial field comes back at low confidence.** Do +not make additional discretionary queries. + +Make a single research_task call requesting all of these fields: +- Funding history (rounds, amounts, lead investors, dates) +- Revenue estimates or reported revenue figures +- Valuation indicators (last known valuation, public market cap if applicable) +- Profitability signals (profitable, pre-revenue, burn rate indicators) +- Key financial partnerships or banking relationships + +For private companies, clearly distinguish estimates from confirmed figures. + +If the low_confidence_warning flags a critical financial field (revenue, +funding, profitability), optionally chain one follow-up using the +interaction_id. + +Write findings and citations to financial-health.md.""", + "tools": [research_task], +} + +litigation_subagent = { + "name": "litigation-regulatory", + "description": ( + "Research lawsuits, regulatory actions, SEC filings, and sanctions " + "exposure for the target company." + ), + "system_prompt": """You are a legal and compliance research analyst. + +**Budget: 1 research_task call, plus at most 1 chained follow-up if a +significant litigation item warrants deeper investigation.** Do not make +additional discretionary queries. + +Make a single research_task call requesting all of these fields: +- Active or recent lawsuits (as plaintiff or defendant) +- SEC filings, enforcement actions, or investigations +- Regulatory actions from any government body +- Sanctions screening results (OFAC, EU, UN sanctions lists) +- History of fines, consent decrees, or settlements + +Flag anything that would require escalation in a standard KYC/EDD review. +If a significant litigation item surfaces (active securities class action, +regulatory enforcement action, sanctions designation), optionally chain +one follow-up using interaction_id for more detail on that specific item. + +Write findings and citations to litigation-regulatory.md.""", + "tools": [research_task], +} + +news_reputation_subagent = { + "name": "news-reputation", + "description": ( + "Research recent press coverage, sentiment, and controversy flags " + "for the target company." + ), + "system_prompt": """You are a media intelligence analyst. + +**Budget: 1 research_task call. No follow-ups unless explicitly required +for a verifiable controversy.** Do not make additional discretionary +queries. + +Make a single research_task call requesting all of these fields: +- Major press coverage from the last 12 months +- Leadership changes or executive departures +- Product launches, pivots, or strategic shifts +- Controversy, scandal, or negative press patterns +- Overall media sentiment (positive, neutral, negative) + +Distinguish between isolated incidents and patterns. + +Write findings and citations to news-reputation.md.""", + "tools": [research_task], +} + +competitive_landscape_subagent = { + "name": "competitive-landscape", + "description": ( + "Identify the target's top 3-5 direct competitors and the company's " + "market positioning. Returns a competitor list that the orchestrator " + "fans out for per-competitor investigation." + ), + "system_prompt": """You are a market intelligence analyst. + +**Budget: exactly 1 research_task call. No follow-ups, no additional +queries.** Your only job here is to identify the named competitors and +the target's positioning — the orchestrator will fan out per-competitor +analysis separately. + +Make a single research_task call requesting these fields: +- Top 3 direct competitors of the target (exactly 3, named, with one-line context each) +- Target's market positioning and key differentiators +- Industry-wide market-share or ranking signals +- One-paragraph industry analyst summary of the target's competitive standing + +You are NOT responsible for deep per-competitor profiles — the orchestrator +will fan out a separate competitor-analysis subagent for each of the 3 +competitors you identify. + +Write findings to competitive-landscape.md. Make sure the file contains a +clearly-labeled "## Competitors" section with EXACTLY 3 named bullets so +the orchestrator can parse them.""", + "tools": [research_task], +} + +competitor_analysis_subagent = { + "name": "competitor-analysis", + "description": ( + "Produce a focused profile of one named competitor — used as a " + "fan-out subagent invoked once per competitor identified by " + "competitive-landscape." + ), + "system_prompt": """You are a competitive intelligence researcher +investigating ONE competitor company at a time. + +**Budget: exactly 1 research_task call. No follow-ups, no additional +queries.** Pack everything you need into one well-scoped output_description. + +The orchestrator will pass you a single competitor name and the original +DD target name. Make ONE research_task call requesting all of: +- Brief corporate snapshot (HQ, public/private, headcount, founding year) +- Most recent revenue and growth signals (estimated if private) +- Funding or market cap status (last raise / current cap) +- Product / positioning vs. the original DD target (one paragraph) +- Recent strategic moves in the last 12 months +- Notable strengths and weaknesses relative to the target + +Write your findings to a file named competitor-.md, where +is the competitor's name lowercased and hyphenated (e.g. +"competitor-tesla.md", "competitor-ford-motor.md"). One file per +competitor — the orchestrator will read all of them when synthesizing +the comparative section.""", + "tools": [research_task], +} + + +# --------------------------------------------------------------------------- +# Orchestrator +# --------------------------------------------------------------------------- + + +DILIGENCE_INSTRUCTIONS = """\ +You are a senior due diligence analyst managing a team of specialized +researchers. Your job is to produce a comprehensive company intelligence +report where every claim has a verifiable source trail. + +## Process + +1. **Plan**: Use write_todos to lay out the diligence. Phase 1 dispatches + five subagents in parallel. Phase 2 fans out per-competitor analysis. + Phase 3 synthesizes the final memo. + +2. **Phase 1 — parallel research**: Use the task tool to dispatch + corporate-profile, financial-health, litigation-regulatory, + news-reputation, and competitive-landscape concurrently. Pass the + target company name to each. + +3. **Phase 2 — competitor fan-out**: After competitive-landscape completes, + read competitive-landscape.md and parse the **exactly 3** named + competitors. For EACH of the 3 competitors, dispatch a separate + competitor-analysis subagent instance via the task tool — pass the + competitor's name and the original DD target name. Dispatch all 3 in + parallel; each investigation runs in its own isolated context. Each + competitor subagent writes its findings to its own + competitor-.md file. **Do not dispatch competitor-analysis for + any competitor not on the list — exactly 3 instances total.** + +4. **Review and cross-reference**: Read every workpaper file + (corporate-profile.md, financial-health.md, litigation-regulatory.md, + news-reputation.md, competitive-landscape.md, and every + competitor-.md). Look for: + - Contradictions across tracks (funding info conflicts with corporate + structure, news contradicts official statements). + - Low-confidence findings flagged by the research tool. + - Gaps where information was unavailable. + Use the parallel_web_search tool for ad-hoc lookups when investigating + discrepancies. + +5. **Phase 3 — synthesize the report** with these sections: + - Executive summary (2-3 paragraphs with overall risk assessment). + - Corporate profile. + - Financial overview. + - Litigation and regulatory risk assessment. + - News and reputation analysis. + - Competitive landscape — start with the target's positioning, then + include a per-competitor sub-section (one paragraph each) drawing + from each competitor-.md workpaper. Compare each competitor's + strengths and weaknesses to the target. + - Confidence and verification notes (list any medium/low confidence + findings and their source citations so a reviewer can verify). + - Key risk flags and areas requiring further investigation. + +## Citation and confidence guidelines + +- Include source URLs from the citations data for key claims. +- Call out any finding where confidence was low. These need human verification. +- If two tracks produced contradictory information, note the discrepancy + explicitly and include citations from both sources. +- This report is a draft for human review, not a final memo. +""" + + +agent = create_deep_agent( + model="anthropic:claude-sonnet-4-6", + tools=[quick_search], + subagents=[ + corporate_profile_subagent, + financial_health_subagent, + litigation_subagent, + news_reputation_subagent, + competitive_landscape_subagent, + competitor_analysis_subagent, + ], + system_prompt=DILIGENCE_INSTRUCTIONS, + backend=FilesystemBackend(root_dir=REPORTS_DIR, virtual_mode=True), +) + + +# --------------------------------------------------------------------------- +# Convenience runner +# --------------------------------------------------------------------------- + + +def run(target: str = TARGET_COMPANY) -> str: + """Run a full DD report on the target company. Returns the final memo.""" + result = agent.invoke( + { + "messages": [ + { + "role": "user", + "content": f"Conduct a full due diligence report on {target}.", + } + ] + } + ) + return result["messages"][-1].content + + +def stream(target: str = TARGET_COMPANY) -> None: + """Stream the agent's progress to stdout. Useful for long-running runs.""" + for chunk in agent.stream( + { + "messages": [ + { + "role": "user", + "content": f"Conduct a full due diligence report on {target}.", + } + ] + }, + stream_mode="updates", + subgraphs=True, + version="v2", + ): + if chunk.get("type") == "updates": + source = ( + f"[subagent: {chunk['ns']}]" if chunk.get("ns") else "[orchestrator]" + ) + print(f"{source} {chunk.get('data')}") + + +if __name__ == "__main__": + import sys + + target = sys.argv[1] if len(sys.argv) > 1 else TARGET_COMPANY + print(run(target)) diff --git a/python-recipes/parallel-deepagents-due-diligence/drafts/BLOG_DRAFT.md b/python-recipes/parallel-deepagents-due-diligence/drafts/BLOG_DRAFT.md new file mode 100644 index 0000000..cabdefe --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/drafts/BLOG_DRAFT.md @@ -0,0 +1,329 @@ +# Building a company due diligence agent with Deep Agents and Parallel + +*Automate multi-step company research with agentic orchestration and structured web intelligence.* + +- **Tags:** Cookbook +- **GitHub:** [parallel-cookbook/python-recipes/parallel-deepagents-due-diligence](https://github.com/parallel-web/parallel-cookbook/tree/main/python-recipes/parallel-deepagents-due-diligence) +- **Sample output:** [Rivian DD memo](reports/workpapers/rivian-due-diligence-report.md) and [eight workpapers](reports/workpapers/) + +--- + +Company due diligence is a workflow that shows up everywhere in financial services. PE analysts screen deals, bank credit teams assess borrowers, compliance teams onboard new entities, insurance underwriters evaluate commercial policyholders. The research follows a consistent pattern. Take a company, investigate it across several dimensions, produce a structured intelligence report where every claim has a source trail. + +This cookbook builds an agent that automates that workflow by combining LangChain's [Deep Agents](https://docs.langchain.com/oss/python/deepagents/overview) for orchestration and [Parallel's Task API](https://docs.parallel.ai/task-api/task-quickstart) for web research. Deep Agents handles planning, subagent delegation, and context management. Parallel handles the actual research, returning structured findings with per-field citations, reasoning traces, and calibrated confidence scores via [Basis](https://docs.parallel.ai/task-api/guides/access-research-basis). When findings from one track raise new questions, Parallel's [interactive research](https://docs.parallel.ai/task-api/guides/interactions) feature lets the agent chain follow-up queries with full context from the prior research thread. + +## Overview + +The agent orchestrates five research tracks, each handled by a dedicated subagent: + +- **Corporate profile** — legal entity structure, key officers, founding history, headcount, office locations +- **Financial health** — funding history, revenue signals, valuation indicators, profitability markers +- **Litigation and regulatory** — lawsuits, SEC filings, sanctions screening, regulatory actions, settlements +- **News and reputation** — recent press coverage, leadership changes, controversy flags, media sentiment +- **Competitive landscape** — identifies the top three direct competitors and the target's positioning + +Once `competitive-landscape` returns its named list, the orchestrator dispatches a separate `competitor-analysis` subagent **once per competitor**, in parallel — the canonical Deep Agents fan-out shape, with each instance running in its own isolated context. The orchestrator then reads every workpaper, cross-references for contradictions and low-confidence findings, runs ad-hoc lookups via Parallel's Search API when discrepancies surface, and writes the final report with risk flags and citation trails. + +DD requires this multi-step architecture because earlier findings change what needs to be investigated next. If the corporate profile reveals the target is a subsidiary, the financial analysis needs to cover the parent. If the litigation scan surfaces an SEC investigation, the risk assessment changes. Deep Agents' planning tool lets the orchestrator adapt when findings shift the research plan. + +Each research track uses a `pro-fast` processor Task API call. Validated end-to-end on Rivian Automotive (NASDAQ: RIVN): nine calls in ~23 minutes. See [Parallel pricing](https://docs.parallel.ai/getting-started/pricing) for current rates. + +## Implementation + +### Setup + +```bash +uv pip install deepagents langchain-parallel langchain-anthropic +``` + +```bash +export ANTHROPIC_API_KEY="your-anthropic-api-key" +export PARALLEL_API_KEY="your-parallel-api-key" +``` + +### Defining the Parallel research tools + +We define two tools. The first wraps Parallel's Task API for structured research with Basis-aware confidence handling. The second uses the LangChain integration's web search tool for quick factual lookups during synthesis. + +```python +from typing import Optional + +from langchain_core.tools import tool +from langchain_parallel import ( + ParallelTaskRunTool, + ParallelWebSearchTool, + parse_basis, +) + + +@tool +def research_task( + query: str, + output_description: str, + previous_interaction_id: Optional[str] = None, +) -> dict: + """Run structured web research via Parallel's Task API. + + Returns findings with per-field citations and confidence scores (Basis). + Use previous_interaction_id to chain follow-up queries that build on + prior research context. + """ + runner = ParallelTaskRunTool( + processor="pro-fast", + task_output_schema=output_description, + ) + invoke_args: dict = {"input": query} + if previous_interaction_id: + invoke_args["previous_interaction_id"] = previous_interaction_id + + result = runner.invoke(invoke_args) + parsed = parse_basis(result) + + output = result["output"] + findings = output.get("content") if isinstance(output, dict) else output + + response: dict = { + "findings": findings, + "citations_by_field": parsed["citations_by_field"], + "interaction_id": parsed["interaction_id"], + } + if parsed["low_confidence_fields"]: + response["low_confidence_warning"] = ( + "These fields came back with low confidence and should be " + "verified, ideally by chaining a follow-up query with " + "previous_interaction_id: " + + ", ".join(parsed["low_confidence_fields"]) + ) + return response + + +# Quick search tool for fast factual lookups during synthesis +quick_search = ParallelWebSearchTool() +``` + +The tool does three things beyond a raw API call. It calls `parse_basis(result)` to extract per-field citations and the names of any low-confidence fields. It surfaces those names as an explicit `low_confidence_warning` in the tool's return value, so the calling subagent's reasoning loop can decide to chain a follow-up. And it returns the `interaction_id` so the chained call can anchor to the same research thread via `previous_interaction_id`. + +### Defining the research subagents + +Each research track gets its own subagent with a specialized system prompt and access to the `research_task` tool. + +```python +corporate_profile_subagent = { + "name": "corporate-profile", + "description": "Research corporate structure, leadership, founding history, and headcount", + "system_prompt": """You are a corporate research analyst. + +Given a company, use the research_task tool to find: +- Legal entity name, incorporation state/country, founding date +- Current CEO and key executives (names, titles, approximate tenure) +- Headquarters location and major office locations +- Employee headcount (current and recent trend) +- Corporate structure (parent company, major subsidiaries) + +For the output_description parameter, request these as structured fields. + +If the result includes a low_confidence_warning, chain a follow-up query +using the returned interaction_id to verify the flagged fields. + +Write your findings (including citations_by_field) to corporate-profile.md.""", + "tools": [research_task], +} +``` + +The other Phase-1 subagents (`financial-health`, `litigation-regulatory`, `news-reputation`, `competitive-landscape`) follow the same shape with their own focused prompts. The full set is in [`agent.py`](agent.py). + +The Phase-2 fan-out subagent is invoked once per competitor identified by `competitive-landscape`: + +```python +competitor_analysis_subagent = { + "name": "competitor-analysis", + "description": "Produce a focused profile of one named competitor", + "system_prompt": """You are a competitive intelligence researcher. + +The orchestrator will pass you a single competitor name and the original +DD target. Make one research_task call requesting: +- Corporate snapshot (HQ, public/private, headcount, founding year) +- Most recent revenue and growth signals +- Funding or market cap status +- Product / positioning vs. the original DD target +- Recent strategic moves in the last 12 months +- Notable strengths and weaknesses relative to the target + +Write your findings to competitor-.md.""", + "tools": [research_task], +} +``` + +### Creating the orchestrator agent + +The main agent coordinates the subagents, reviews findings for contradictions, and produces the final report. We back it with a [`FilesystemBackend`](https://docs.langchain.com/oss/python/deepagents/filesystem) so workpapers and the final memo persist to disk under `./reports/` rather than evaporating with the agent state. + +```python +from pathlib import Path + +from deepagents import create_deep_agent +from deepagents.backends.filesystem import FilesystemBackend + +REPORTS_DIR = Path("./reports") +REPORTS_DIR.mkdir(parents=True, exist_ok=True) + +diligence_instructions = """\ +You are a senior due diligence analyst managing a team of specialized +researchers. Your job is to produce a comprehensive company intelligence +report with verifiable claims. + +## Your Process + +1. **Plan the research**: Use write_todos to lay out the diligence as a + checklist. Phase 1 dispatches the five Phase-1 subagents. Phase 2 + dispatches one competitor-analysis subagent per competitor identified + by competitive-landscape. + +2. **Phase 1 — parallel research**: Use the task tool to dispatch + corporate-profile, financial-health, litigation-regulatory, + news-reputation, and competitive-landscape concurrently. + +3. **Phase 2 — competitor fan-out**: Read competitive-landscape.md and + parse the three named competitors. Dispatch a separate + competitor-analysis subagent instance per competitor, in parallel. + +4. **Review and cross-reference**: Read every workpaper. Look for + contradictions, low-confidence findings, and gaps. Use quick_search + for ad-hoc lookups during synthesis. + +5. **Synthesize the report** with: executive summary, corporate profile, + financial overview, litigation and regulatory risk assessment, news + and reputation analysis, competitive landscape (with per-competitor + sub-sections), confidence and verification notes, and key risk flags. + +## Citation and Confidence Guidelines + +- Include source URLs for key claims. +- Call out any finding where confidence was low. These need human verification. +- If two tracks produced contradictory information, note the discrepancy + explicitly with citations from both sources. +""" + +agent = create_deep_agent( + model="anthropic:claude-sonnet-4-6", + tools=[quick_search], + subagents=[ + corporate_profile_subagent, + financial_health_subagent, + litigation_subagent, + news_reputation_subagent, + competitive_landscape_subagent, + competitor_analysis_subagent, + ], + system_prompt=diligence_instructions, + backend=FilesystemBackend(root_dir=REPORTS_DIR, virtual_mode=True), +) +``` + +### Running the agent + +```python +result = agent.invoke({ + "messages": [{ + "role": "user", + "content": "Conduct a full due diligence report on Rivian Automotive", + }] +}) + +print(result["messages"][-1].content) +``` + +### Streaming execution progress + +For long-running diligence runs, stream the agent's progress to see planning, tool calls, and subagent activity in real time. Pass `subgraphs=True` to receive events from inside subagent execution. + +```python +for chunk in agent.stream( + {"messages": [{"role": "user", "content": "Conduct a full due diligence report on Rivian Automotive"}]}, + stream_mode="updates", + subgraphs=True, + version="v2", +): + if chunk.get("type") == "updates": + source = f"[subagent: {chunk['ns']}]" if chunk.get("ns") else "[orchestrator]" + print(f"{source} {chunk.get('data')}") +``` + +## Observability with LangSmith + +### Why observability matters for FSI + +Six months from now, a regulator examiner sits down to review one of the AI-assisted due-diligence memos your team produced this quarter, pulled from a portfolio of hundreds. They want to know which sources informed each conclusion, with what confidence, and whether the agent's process was logged. They expect an answer. + +The agent compounds non-determinism (LLM output, prompt sensitivity, the open web), spends real money on real web research, and ends in a memo a regulator may eventually audit. Every claim has to map back to a primary source with an explicit confidence label, and that mapping has to remain auditable months after the run finishes. Once the agent reaches production, most of its failures surface there too, where pre-launch testing rarely catches them. The trace is the artifact that survives the run. + +This is why the trace matters in FSI specifically: + +- **Logging is increasingly mandated.** The EU AI Act requires automatic event logging for high-risk AI systems, and US bank regulators apply model risk management expectations to AI agents in practice even where formal scope is unsettled. The trace is the artifact both frameworks contemplate. + +- **Decision explainability requires per-claim grounding.** When AI input feeds a regulated decision such as consumer credit, investment recommendations, or any process subject to fiduciary obligations, the institution has to explain how that input was formed. The basis payload (source URLs and per-output confidence) is what makes that explanation reproducible months after the run. + +- **Third-party AI requires ongoing supervision.** The stack uses an external model provider (Anthropic) and an external research API (Parallel). Banking third-party risk guidance requires ongoing monitoring of vendor outputs beyond upfront due diligence. The trace records what each vendor returned, on what input, and with what confidence. + +- **Operational resilience demands fast root-cause analysis.** Under DORA, in-scope EU financial entities must report major ICT incidents on tight windows. If an agent produces a faulty output that affects a client, the trace enables root-cause analysis fast enough to meet those obligations. + +### How compliance and audit work today + +FSI teams already have a system for proving how a research memo was produced: analyst workpapers, citation lists, email trails of source approvals, version control on the deliverable, and a compliance officer's review. For models specifically, banks add Model Risk Management documentation under SR 11-7, maintained in dedicated GRC tools. + +This works because the analyst is the unit of accountability. When an examiner asks how a conclusion was reached, the analyst walks through their reasoning, with the workpaper and citation list backing them up. + +AI agents break that model. The "analyst" is now a graph of LLM calls and tool invocations, and the reasoning lives inside context windows that disappear once the run ends. The trace restores the attach point, giving compliance the same inspectable record they had with human workpapers, with per-claim grounding added. + +### What LangSmith captures + +LangSmith records every Deep Agents step and every `ParallelTaskRunTool` invocation in this agent: the prompt the subagent constructed, the URLs Parallel returned, the basis payload with confidence, and the structured findings, with no changes to the agent code. Each run is also broken down into per-node cost across every model call, tool call, and subagent, so you can see exactly which step drove which share of tokens and time. When two runs come back at very different cost, the trace shows whether the difference lives in subagent reasoning, additional Parallel calls, or the final synthesis pass. + +### What the trace shows + +Open any run and the first thing you see is the orchestrator's plan: a four-phase TODO that lays out the research strategy before any subagent runs. + +![Orchestrator's four-phase plan, generated by `write_todos` at the start of the run.](assets/01-orchestrator-plan.png) +*Orchestrator's four-phase plan, generated by `write_todos` at the start of the run.* + +Phase 1 then dispatches all five research subagents in parallel: `corporate-profile`, `financial-health`, `litigation-regulatory`, `news-reputation`, and `competitive-landscape`. Each subagent receives a focused mission described in plain English in the dispatch tool call. Click into any of those `task` nodes in the trace and you can see exactly what that subagent is doing: the prompt it issued, the Parallel calls it made, and the sources that came back. + +![Phase 1 fan-out: five research subagents dispatched in parallel.](assets/02-phase1-fanout.png) +*Phase 1 fan-out: five research subagents dispatched in parallel.* + +After Phase 1 completes, the orchestrator fans out per-competitor analyses (Phase 2), cross-references workpapers for contradictions (Phase 3), and synthesizes the final memo (Phase 4). Every tool call is captured along the way. + +Selecting any subagent's `research_task` shows the full structured findings Parallel returned: every field, every excerpt, and every URL, including content beyond the summary that lands in the workpaper. + +![A subagent's research_task output: structured findings returned by Parallel.](assets/03-research-task.png) +*A subagent's `research_task` output: structured findings returned by Parallel.* + +### Citations and confidence + +For a compliance reviewer, the relevant view is the basis payload inside `parallel_task_run`. Parallel attaches each output with source URLs, a confidence label (high / medium / low), and a one-line reasoning trace explaining how the answer was assembled. + +![Basis payload: source URLs, confidence label, and reasoning trace.](assets/04-basis-payload.png) +*Basis payload: source URLs, confidence label, and reasoning trace.* + +In the Rivian corporate-profile call shown above, the agent's `medium`-confidence output is grounded in four sources: Rivian's 10-K and 2026 annual report on SEC.gov, a third-party reproduction of the 2026 proxy statement, and Wikipedia. That mix of two primary SEC filings, one secondary reproduction, and one tertiary source is exactly the kind of grounding pattern a compliance reviewer would want to flag. With the trace, the grounding is inspectable per claim, and sourcing patterns like this one become correctable across runs. A workpaper without this layer would list the same four URLs flat, with no signal about which were primary. + +### Beyond a single trace + +For one DD memo, the trace is the audit trail. For a portfolio of memos run across a quarter, you also need pattern discovery: which subagent produces the most low-confidence outputs, which targets force the most chained Parallel follow-ups, which sources have started returning thinner content. LangSmith builds on the trace foundation with cross-run analytics for exactly that. For an FSI team running diligence at scale, that capability turns an audit trail into an operating discipline. + + +## Who this is for + +This architecture applies to any team running structured research workflows on companies, including deal screening, credit underwriting, KYB/KYC onboarding, M&A target evaluation, and vendor risk assessment. + +The five research tracks here are a starting point. Swap in tracks relevant to your workflow: add management background checks and beneficial ownership tracing for compliance-heavy diligence, add IP portfolio analysis for M&A screening, add SOC 2 verification for vendor assessment. Each additional track is a new subagent dict with a system prompt and the same `research_task` tool. + +## Resources + +- [Full source code](https://github.com/parallel-web/parallel-cookbook/tree/main/python-recipes/parallel-deepagents-due-diligence) +- [Deep Agents documentation](https://docs.langchain.com/oss/python/deepagents/overview) +- [Parallel Task API](https://docs.parallel.ai/task-api/task-quickstart) +- [Parallel Basis and citations](https://docs.parallel.ai/task-api/guides/access-research-basis) +- [Parallel interactive research](https://docs.parallel.ai/task-api/guides/interactions) +- [`langchain-parallel` SDK](https://github.com/parallel-web/langchain-parallel) +- [Get a Parallel API key](https://platform.parallel.ai) diff --git a/python-recipes/parallel-deepagents-due-diligence/drafts/Observability-with-LangSmith.md b/python-recipes/parallel-deepagents-due-diligence/drafts/Observability-with-LangSmith.md new file mode 100644 index 0000000..9cce28f --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/drafts/Observability-with-LangSmith.md @@ -0,0 +1,63 @@ +*Review draft. Observability section for the Parallel x Deep Agents due-diligence cookbook. Worked example: Rivian Automotive (NASDAQ: RIVN). Prepared 2026-05-04.* + +# Observability with LangSmith + +## Why observability matters for FSI + +Six months from now, a regulator examiner sits down to review one of the AI-assisted due-diligence memos your team produced this quarter, pulled from a portfolio of hundreds. They want to know which sources informed each conclusion, with what confidence, and whether the agent's process was logged. They expect an answer. + +The agent compounds non-determinism (LLM output, prompt sensitivity, the open web), spends real money on real web research, and ends in a memo a regulator may eventually audit. Every claim has to map back to a primary source with an explicit confidence label, and that mapping has to remain auditable months after the run finishes. Once the agent reaches production, most of its failures surface there too, where pre-launch testing rarely catches them. The trace is the artifact that survives the run. + +This is why the trace matters in FSI specifically: + +- **Logging is increasingly mandated.** The EU AI Act requires automatic event logging for high-risk AI systems, and US bank regulators apply model risk management expectations to AI agents in practice even where formal scope is unsettled. The trace is the artifact both frameworks contemplate. + +- **Decision explainability requires per-claim grounding.** When AI input feeds a regulated decision such as consumer credit, investment recommendations, or any process subject to fiduciary obligations, the institution has to explain how that input was formed. The basis payload (source URLs and per-output confidence) is what makes that explanation reproducible months after the run. + +- **Third-party AI requires ongoing supervision.** The stack uses an external model provider (Anthropic) and an external research API (Parallel). Banking third-party risk guidance requires ongoing monitoring of vendor outputs beyond upfront due diligence. The trace records what each vendor returned, on what input, and with what confidence. + +- **Operational resilience demands fast root-cause analysis.** Under DORA, in-scope EU financial entities must report major ICT incidents on tight windows. If an agent produces a faulty output that affects a client, the trace enables root-cause analysis fast enough to meet those obligations. + +## How compliance and audit work today + +FSI teams already have a system for proving how a research memo was produced: analyst workpapers, citation lists, email trails of source approvals, version control on the deliverable, and a compliance officer's review. For models specifically, banks add Model Risk Management documentation under SR 11-7, maintained in dedicated GRC tools. + +This works because the analyst is the unit of accountability. When an examiner asks how a conclusion was reached, the analyst walks through their reasoning, with the workpaper and citation list backing them up. + +AI agents break that model. The "analyst" is now a graph of LLM calls and tool invocations, and the reasoning lives inside context windows that disappear once the run ends. The trace restores the attach point, giving compliance the same inspectable record they had with human workpapers, with per-claim grounding added. + +## What LangSmith captures + +LangSmith records every Deep Agents step and every `ParallelTaskRunTool` invocation in this agent: the prompt the subagent constructed, the URLs Parallel returned, the basis payload with confidence, and the structured findings, with no changes to the agent code. Each run is also broken down into per-node cost across every model call, tool call, and subagent, so you can see exactly which step drove which share of tokens and time. When two runs come back at very different cost, the trace shows whether the difference lives in subagent reasoning, additional Parallel calls, or the final synthesis pass. + +## What the trace shows + +Open any run and the first thing you see is the orchestrator's plan: a four-phase TODO that lays out the research strategy before any subagent runs. + +![Orchestrator's four-phase plan, generated by `write_todos` at the start of the run.](assets/01-orchestrator-plan.png) +*Orchestrator's four-phase plan, generated by `write_todos` at the start of the run.* + +Phase 1 then dispatches all five research subagents in parallel: `corporate-profile`, `financial-health`, `litigation-regulatory`, `news-reputation`, and `competitive-landscape`. Each subagent receives a focused mission described in plain English in the dispatch tool call. Click into any of those `task` nodes in the trace and you can see exactly what that subagent is doing: the prompt it issued, the Parallel calls it made, and the sources that came back. + +![Phase 1 fan-out: five research subagents dispatched in parallel.](assets/02-phase1-fanout.png) +*Phase 1 fan-out: five research subagents dispatched in parallel.* + +After Phase 1 completes, the orchestrator fans out per-competitor analyses (Phase 2), cross-references workpapers for contradictions (Phase 3), and synthesizes the final memo (Phase 4). Every tool call is captured along the way. + +Selecting any subagent's `research_task` shows the full structured findings Parallel returned: every field, every excerpt, and every URL, including content beyond the summary that lands in the workpaper. + +![A subagent's research_task output: structured findings returned by Parallel.](assets/03-research-task.png) +*A subagent's `research_task` output: structured findings returned by Parallel.* + +## Citations and confidence + +For a compliance reviewer, the relevant view is the basis payload inside `parallel_task_run`. Parallel attaches each output with source URLs, a confidence label (high / medium / low), and a one-line reasoning trace explaining how the answer was assembled. + +![Basis payload: source URLs, confidence label, and reasoning trace.](assets/04-basis-payload.png) +*Basis payload: source URLs, confidence label, and reasoning trace.* + +In the Rivian corporate-profile call shown above, the agent's `medium`-confidence output is grounded in four sources: Rivian's 10-K and 2026 annual report on SEC.gov, a third-party reproduction of the 2026 proxy statement, and Wikipedia. That mix of two primary SEC filings, one secondary reproduction, and one tertiary source is exactly the kind of grounding pattern a compliance reviewer would want to flag. With the trace, the grounding is inspectable per claim, and sourcing patterns like this one become correctable across runs. A workpaper without this layer would list the same four URLs flat, with no signal about which were primary. + +## Beyond a single trace + +For one DD memo, the trace is the audit trail. For a portfolio of memos run across a quarter, you also need pattern discovery: which subagent produces the most low-confidence outputs, which targets force the most chained Parallel follow-ups, which sources have started returning thinner content. LangSmith builds on the trace foundation with cross-run analytics for exactly that. For an FSI team running diligence at scale, that capability turns an audit trail into an operating discipline. diff --git a/python-recipes/parallel-deepagents-due-diligence/drafts/assets/01-orchestrator-plan.png b/python-recipes/parallel-deepagents-due-diligence/drafts/assets/01-orchestrator-plan.png new file mode 100644 index 0000000..e9c4133 Binary files /dev/null and b/python-recipes/parallel-deepagents-due-diligence/drafts/assets/01-orchestrator-plan.png differ diff --git a/python-recipes/parallel-deepagents-due-diligence/drafts/assets/02-phase1-fanout.png b/python-recipes/parallel-deepagents-due-diligence/drafts/assets/02-phase1-fanout.png new file mode 100644 index 0000000..e5fca4d Binary files /dev/null and b/python-recipes/parallel-deepagents-due-diligence/drafts/assets/02-phase1-fanout.png differ diff --git a/python-recipes/parallel-deepagents-due-diligence/drafts/assets/03-research-task.png b/python-recipes/parallel-deepagents-due-diligence/drafts/assets/03-research-task.png new file mode 100644 index 0000000..6d40960 Binary files /dev/null and b/python-recipes/parallel-deepagents-due-diligence/drafts/assets/03-research-task.png differ diff --git a/python-recipes/parallel-deepagents-due-diligence/drafts/assets/04-basis-payload.png b/python-recipes/parallel-deepagents-due-diligence/drafts/assets/04-basis-payload.png new file mode 100644 index 0000000..4bd19a5 Binary files /dev/null and b/python-recipes/parallel-deepagents-due-diligence/drafts/assets/04-basis-payload.png differ diff --git a/python-recipes/parallel-deepagents-due-diligence/due_diligence.ipynb b/python-recipes/parallel-deepagents-due-diligence/due_diligence.ipynb new file mode 100644 index 0000000..f26df3f --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/due_diligence.ipynb @@ -0,0 +1,279 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Due Diligence Agent \u2014 Deep Agents + Parallel\n", + "\n", + "A research agent that reasons over its own confidence and chains follow-up queries when it isn't sure.\n", + "\n", + "This notebook walks through the recipe end-to-end. The same code lives in `agent.py` so you can import it as a module or run it from the command line.\n", + "\n", + "## Setup\n", + "\n", + "```bash\n", + "uv venv\n", + "uv pip install -r requirements.txt\n", + "cp .env.example .env # then fill in your keys\n", + "```\n", + "\n", + "Make sure `ANTHROPIC_API_KEY` and `PARALLEL_API_KEY` are set in your environment before running the cells below. Get a Parallel key at [platform.parallel.ai](https://platform.parallel.ai)." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "\n", + "assert os.environ.get(\"ANTHROPIC_API_KEY\"), \"ANTHROPIC_API_KEY not set\"\n", + "assert os.environ.get(\"PARALLEL_API_KEY\"), \"PARALLEL_API_KEY not set\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 1. The `research_task` tool\n", + "\n", + "Every subagent calls a single tool that wraps Parallel's Task API and surfaces Basis metadata for the agent to reason over.\n", + "\n", + "The wrapper does three things on top of `ParallelTaskRunTool`:\n", + "\n", + "1. Routes the call through the SDK with the per-call output description.\n", + "2. Calls `parse_basis(result)` from `langchain-parallel` to extract `citations_by_field` and `low_confidence_fields`.\n", + "3. Surfaces a `low_confidence_warning` string when any field came back at low confidence, so the subagent can decide to chain a follow-up query using the returned `interaction_id`." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from typing import Optional\n", + "\n", + "from langchain_core.tools import tool\n", + "from langchain_parallel import ParallelTaskRunTool, parse_basis\n", + "\n", + "\n", + "@tool\n", + "def research_task(\n", + " query: str,\n", + " output_description: str,\n", + " previous_interaction_id: Optional[str] = None,\n", + ") -> dict:\n", + " \"\"\"Run structured web research via Parallel's Task API.\n", + "\n", + " Returns findings with per-field citations and confidence scores (Basis).\n", + " Use ``previous_interaction_id`` to chain a follow-up query that builds\n", + " on a prior research session.\n", + " \"\"\"\n", + " runner = ParallelTaskRunTool(\n", + " processor=\"pro-fast\",\n", + " task_output_schema=output_description,\n", + " )\n", + " invoke_args: dict = {\"input\": query}\n", + " if previous_interaction_id:\n", + " invoke_args[\"previous_interaction_id\"] = previous_interaction_id\n", + "\n", + " result = runner.invoke(invoke_args)\n", + " parsed = parse_basis(result)\n", + "\n", + " output = result[\"output\"]\n", + " findings = output.get(\"content\") if isinstance(output, dict) else output\n", + "\n", + " response: dict = {\n", + " \"findings\": findings,\n", + " \"citations_by_field\": parsed[\"citations_by_field\"],\n", + " \"interaction_id\": parsed[\"interaction_id\"],\n", + " }\n", + " if parsed[\"low_confidence_fields\"]:\n", + " response[\"low_confidence_warning\"] = (\n", + " \"These fields came back with low confidence and should be \"\n", + " \"verified, ideally by chaining a follow-up query with \"\n", + " \"previous_interaction_id: \"\n", + " + \", \".join(parsed[\"low_confidence_fields\"])\n", + " )\n", + " return response" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Quick smoke test\n", + "\n", + "Try the tool on a small structured query before wiring it into the agent. Expect a response with `findings`, `citations_by_field`, and `interaction_id`." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "result = research_task.invoke({\n", + " \"query\": \"Rivian Automotive founding year and current CEO\",\n", + " \"output_description\": \"founding_year (int), current_ceo (str)\",\n", + "})\n", + "\n", + "print(\"findings:\", result[\"findings\"])\n", + "print(\"interaction_id:\", result[\"interaction_id\"])\n", + "print(\"fields with citations:\", list(result.get(\"citations_by_field\", {}).keys()))\n", + "if \"low_confidence_warning\" in result:\n", + " print(\"warning:\", result[\"low_confidence_warning\"])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 2. Define the subagents\n", + "\n", + "Five tracks, each with a focused system prompt and the same `research_task` tool. Each subagent runs in an isolated context, so the orchestrator's window stays clean while each track can dig deep on its slice." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from agent import (\n", + " corporate_profile_subagent,\n", + " financial_health_subagent,\n", + " litigation_subagent,\n", + " news_reputation_subagent,\n", + " competitive_landscape_subagent,\n", + ")\n", + "\n", + "for sa in [\n", + " corporate_profile_subagent,\n", + " financial_health_subagent,\n", + " litigation_subagent,\n", + " news_reputation_subagent,\n", + " competitive_landscape_subagent,\n", + "]:\n", + " print(f\"- {sa['name']}: {sa['description']}\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 3. Construct the orchestrator\n", + "\n", + "The orchestrator uses Deep Agents' built-in `write_todos` planner, the `task` tool to dispatch subagents in parallel, the virtual filesystem to read each subagent's workpaper, and `ParallelWebSearchTool` for ad-hoc lookups when contradictions surface." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from agent import agent\n", + "\n", + "type(agent).__name__" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 4. Run a full DD on Rivian\n", + "\n", + "Expect a ~15-30 minute run at the default `pro-fast` processor. The agent runs in three phases:\n", + "\n", + "1. **Phase 1** \u2014 `write_todos` plans the diligence; the five subagents dispatch in parallel (corporate, financial, litigation, news, competitive-landscape).\n", + "2. **Phase 2 \u2014 competitor fan-out** \u2014 `competitive-landscape` returns 3 named competitors. The orchestrator dispatches a separate `competitor-analysis` subagent for **each** competitor, in parallel. This is the canonical Deep Agents pattern: spawning N instances of the same subagent type for N parallel investigations.\n", + "3. **Phase 3** \u2014 orchestrator reads every workpaper (5 Phase-1 files + 3 competitor files), cross-references contradictions, and synthesizes the final memo with a comparative competitor section.\n", + "\n", + "Cost at default `pro-fast` tier: ~depends on processor pricing per run (~10-15 Task API calls including chained follow-ups and the 3 fan-out instances)." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "result = agent.invoke({\n", + " \"messages\": [{\n", + " \"role\": \"user\",\n", + " \"content\": \"Conduct a full due diligence report on Rivian Automotive.\"\n", + " }]\n", + "})\n", + "\n", + "print(result[\"messages\"][-1].content)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 5. Stream a run on a different target\n", + "\n", + "For long runs, stream to see planning, tool calls, subagent activity, and the per-competitor fan-out in real time. `subgraphs=True` surfaces events from inside subagent execution." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "for chunk in agent.stream(\n", + " {\n", + " \"messages\": [{\n", + " \"role\": \"user\",\n", + " \"content\": \"Conduct a full due diligence report on Anduril Industries.\"\n", + " }]\n", + " },\n", + " stream_mode=\"updates\",\n", + " subgraphs=True,\n", + " version=\"v2\",\n", + "):\n", + " if chunk.get(\"type\") == \"updates\":\n", + " source = (\n", + " f\"[subagent: {chunk['ns']}]\" if chunk.get(\"ns\") else \"[orchestrator]\"\n", + " )\n", + " print(f\"{source} {chunk.get('data')}\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 6. Adapt the agent\n", + "\n", + "The pattern doesn't care about the domain. Swap the five DD tracks for whatever you actually research:\n", + "\n", + "- **Newsletter prep:** topic-survey / contrarian-views / primary-sources / open-questions subagents.\n", + "- **Lead generation:** company-overview / decision-maker / recent-signals / outreach-hook subagents.\n", + "- **Comparison shopping:** product-spec / price-and-availability / review-summary / shipping subagents.\n", + "- **Market sizing:** TAM / competitor-landscape / growth-drivers / regulatory-tailwinds subagents.\n", + "- **Candidate research:** background / public-work / network / red-flags subagents.\n", + "\n", + "Each track is another subagent dict with a system prompt and the same `research_task` tool." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "name": "python", + "version": "3.12" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} \ No newline at end of file diff --git a/python-recipes/parallel-deepagents-due-diligence/langgraph.json b/python-recipes/parallel-deepagents-due-diligence/langgraph.json new file mode 100644 index 0000000..2b1bc94 --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/langgraph.json @@ -0,0 +1,7 @@ +{ + "dependencies": ["."], + "graphs": { + "due_diligence": "./agent.py:agent" + }, + "env": ".env" +} diff --git a/python-recipes/parallel-deepagents-due-diligence/pyproject.toml b/python-recipes/parallel-deepagents-due-diligence/pyproject.toml new file mode 100644 index 0000000..4db2347 --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/pyproject.toml @@ -0,0 +1,15 @@ +[project] +name = "deepagents-due-diligence" +version = "0.1.0" +description = "Company due diligence agent built on Deep Agents and Parallel." +requires-python = ">=3.11" +dependencies = [ + "deepagents>=0.5.3", + "langchain-parallel>=0.4.0", + "langchain-anthropic>=0.3.0", + "parallel-web>=0.1.0", + "pydantic>=2.0", +] + +[tool.uv] +package = false diff --git a/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/competitive-landscape.md b/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/competitive-landscape.md new file mode 100644 index 0000000..fa2bc82 --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/competitive-landscape.md @@ -0,0 +1,112 @@ +# Rivian Automotive — Competitive Landscape + +> **Prepared by:** Market Intelligence Analyst +> **Date:** 2025 +> **Scope:** U.S. electric vehicle market; primary data from full-year 2024 and Q1 2025 +> **Note:** Three named competitors are listed below for orchestrator fan-out to per-competitor subagents. + +--- + +## Table of Contents +1. [Rivian Market Positioning](#1-rivian-market-positioning) +2. [Competitors](#2-competitors) +3. [Industry Market-Share & Ranking Signals](#3-industry-market-share--ranking-signals) +4. [Analyst Summary — Rivian's Competitive Standing](#4-analyst-summary--rivians-competitive-standing) +5. [Sources](#5-sources) + +--- + +## 1. Rivian Market Positioning + +### Segments +Rivian competes across three distinct EV segments: + +| Segment | Product | Primary Use Case | +|---|---|---| +| Electric full-size pickup | R1T | Adventure / off-road / lifestyle | +| Electric 3-row premium SUV | R1S | Family / adventure / premium | +| Commercial electric delivery vans | EDV 500 / EDV 700 / RCV | Last-mile fleet logistics | + +### Key Differentiators +- **Adventure & outdoor brand identity:** Rivian's product design, marketing, and feature set are purpose-built for outdoor and off-road use, distinguishing it from mainstream EV brands. +- **Software-centric, OTA-first platform:** Vehicles receive over-the-air software updates, enabling continuous feature improvement post-purchase, similar to Tesla's model. +- **Direct-to-consumer sales:** Rivian bypasses traditional dealerships, controlling the entire customer experience from order to delivery. +- **Fleet + consumer dual-channel strategy:** The EDV/RCV commercial vans provide a recurring fleet revenue stream alongside consumer retail products, anchored by a large-scale partnership with Amazon. +- **Integrated skateboard platform:** A common underlying vehicle platform reduces engineering costs across consumer and commercial lines. + +### Competitive Strengths +- **R1S momentum:** The R1S posted 26,934 U.S. deliveries in 2024 — Rivian's strongest-selling product and a credible challenger in the premium 3-row EV SUV segment. ([Source](https://www.coxautoinc.com/wp-content/uploads/2025/01/Q4-2024-Kelley-Blue-Book-EV-Sales-Report.pdf)) +- **Amazon partnership at scale:** Amazon's Rivian-built delivery vans delivered more than **1 billion packages** in 2024, validating the EDV platform at commercial scale. ([Source](https://www.aboutamazon.com/news/transportation/everything-you-need-to-know-about-amazons-electric-delivery-vans-from-rivian)) +- **Total 2024 deliveries of 51,579** placed Rivian among the top EV brands by volume in the U.S. (~4% market share). ([Source](https://rivian.com/newsroom/article/rivian-releases-q4-2024-production-and-delivery-figures)) +- **Brand differentiation** in the adventure/outdoor niche remains difficult for legacy OEMs to replicate quickly. + +### Competitive Weaknesses +- **Pickup volume gap:** R1T recorded only 11,085 U.S. deliveries in 2024, trailing the Tesla Cybertruck (38,965) and Ford F-150 Lightning (33,510) significantly. ([Source](https://www.coxautoinc.com/wp-content/uploads/2025/01/Q4-2024-Kelley-Blue-Book-EV-Sales-Report.pdf)) +- **Manufacturing scale and cost:** Rivian's Normal, Illinois plant is still ramping; Q1 2025 production was 14,611 units but deliveries were only 8,640, reflecting execution and demand-matching challenges. ([Source](https://rivian.com/newsroom/article/rivian-releases-q1-2025-production-and-delivery-figures)) +- **Commercial van competition:** Ford's E-Transit led the U.S. electric van segment in 2024 with 12,610 units vs. Rivian EDV's 13,560 — a narrow margin against a well-resourced incumbent. ([Source](https://www.fromtheroad.ford.com/us/en/articles/2025/ford-pro-fact-sheet-ford-transit-and-e-transit)) +- **2025 guidance reflects moderation:** Full-year 2025 delivery guidance of 46,000–51,000 does not assume substantial volume growth over 2024. +- **Profitability:** Rivian is not yet profitable at scale; continued investment in manufacturing capacity and R&D pressures near-term financials. + +--- + +## 2. Competitors + +> ⚠️ **Orchestrator note:** The three bullets below are the canonical competitor names for fan-out. Each is a **direct competitor** to Rivian, competing in overlapping EV product segments. + +- **Tesla** — Competes head-to-head with Rivian via the Cybertruck (vs. R1T in full-size electric pickups, 38,965 U.S. sales in 2024) and Model X (vs. R1S in premium electric SUVs, 19,855 U.S. sales in 2024); Tesla's software-first, direct-sales model also mirrors Rivian's go-to-market approach. ([Source](https://www.coxautoinc.com/wp-content/uploads/2025/01/Q4-2024-Kelley-Blue-Book-EV-Sales-Report.pdf)) + +- **Ford** — Competes with Rivian via the F-150 Lightning (vs. R1T in full-size electric pickups, 33,510 U.S. sales in 2024) and the E-Transit (vs. Rivian EDV in commercial electric vans, 12,610 U.S. sales in 2024); Ford's brand recognition and dealer network give it significant distribution advantages. ([Source](https://www.coxautoinc.com/wp-content/uploads/2025/01/Q4-2024-Kelley-Blue-Book-EV-Sales-Report.pdf)) + +- **Kia** — Competes directly with the Rivian R1S via the EV9, a three-row electric SUV that posted 22,017 U.S. sales in 2024 and won the 2024 North American Utility Vehicle of the Year award; the EV9 targets similar family-oriented, premium SUV buyers at a competitive price point. ([Source](https://www.coxautoinc.com/wp-content/uploads/2025/01/Q4-2024-Kelley-Blue-Book-EV-Sales-Report.pdf)) + +--- + +## 3. Industry Market-Share & Ranking Signals + +All figures are U.S. full-year 2024 unless otherwise noted. + +| Vehicle / Brand | 2024 U.S. Sales (Units) | U.S. EV Market Share | YoY Change | +|---|---|---|---| +| **Tesla Cybertruck** | 38,965 | 3.6% (of total EV) | N/A (new model) | +| **Ford F-150 Lightning** | 33,510 | 2.9% | +38.7% | +| **Rivian R1S** | 26,934 | 2.0% | +23.4% | +| **Kia EV9** | 22,017 | 1.7% | N/A (new model) | +| **Tesla Model X** | 19,855 | 1.2% | -19.8% | +| **Rivian R1T** | 11,085 | 0.7% | N/M | +| **Ford E-Transit** | 12,610 | 0.9% | +64.4% | +| **Rivian EDV 500/700** | 13,560 | 1.2% | +67.6% | +| **Rivian (total brand)** | **51,579** | **~4%** | **+3.8%** | + +**Key market context:** +- Total U.S. EV sales in 2024 reached approximately **1,301,411 units**, up 7.3% year-over-year, representing **8.1% of total vehicle sales**. ([Source](https://www.coxautoinc.com/insights-hub/q4-2024-ev-sales/)) +- Rivian ranked **4th among EV brands** by total U.S. deliveries in 2024, behind Tesla, Ford, and Chevrolet. ([Source](https://www.caranddriver.com/news/g63396028/bestselling-evs-2024/)) +- Q1 2025: Rivian produced 14,611 vehicles and delivered 8,640; full-year 2025 guidance is **46,000–51,000 deliveries**. ([Source](https://rivian.com/newsroom/article/rivian-releases-q1-2025-production-and-delivery-figures)) + +--- + +## 4. Analyst Summary — Rivian's Competitive Standing + +Rivian's competitive footing in 2024–2025 is strongest in premium, adventure-oriented SUVs, where the R1S posted 26,934 U.S. sales in 2024, outpacing many luxury EV SUVs and offering credible overlap with Tesla's Model X while competing against newer three-row entries like Kia's EV9. In pickups, Rivian remains a differentiated off-road and performance alternative, but 2024 volumes trail Tesla's Cybertruck and Ford's F-150 Lightning by a wide margin, underscoring the need for scale and cost improvements. In commercial vans, Rivian's EDV/RCV platform is growing and benefits from Amazon's network — surpassing one billion delivered packages in 2024 — though Ford's E-Transit remains a formidable incumbent and near-tied competitor on raw unit sales. Overall, Rivian's brand identity, software-centric approach, and product breadth across trucks, SUVs, and vans support a defensible niche among adventure-focused and sustainability-minded consumers; however, closing the volume gap versus larger incumbents and achieving manufacturing profitability remain the decisive execution challenges heading into 2025 and beyond. + +--- + +## 5. Sources + +| # | Source | URL | +|---|---|---| +| 1 | Rivian Q4 2024 Production & Delivery Figures (Rivian Newsroom) | https://rivian.com/newsroom/article/rivian-releases-q4-2024-production-and-delivery-figures | +| 2 | Rivian Q1 2025 Production & Delivery Figures (Rivian Newsroom) | https://rivian.com/newsroom/article/rivian-releases-q1-2025-production-and-delivery-figures | +| 3 | Q4 2024 Kelley Blue Book EV Sales Report (Cox Automotive) | https://www.coxautoinc.com/wp-content/uploads/2025/01/Q4-2024-Kelley-Blue-Book-EV-Sales-Report.pdf | +| 4 | Electric Vehicle Sales Jump Higher in Q4 — Full Year 2024 (Cox Automotive) | https://www.coxautoinc.com/insights-hub/q4-2024-ev-sales/ | +| 5 | The 10 Bestselling EVs of 2024 (Car and Driver) | https://www.caranddriver.com/news/g63396028/bestselling-evs-2024/ | +| 6 | Ford Pro Fact Sheet: Ford Transit and E-Transit (Ford) | https://www.fromtheroad.ford.com/us/en/articles/2025/ford-pro-fact-sheet-ford-transit-and-e-transit | +| 7 | Amazon's Electric Delivery Vans from Rivian — 2024 Milestones (Amazon) | https://www.aboutamazon.com/news/transportation/everything-you-need-to-know-about-amazons-electric-delivery-vans-from-rivian | +| 8 | Rivian Fleet — Commercial Vans (Rivian) | https://rivian.com/fleet | +| 9 | Tesla Cybertruck Outselling F-150 Lightning and Rivian R1T (Road & Track) | https://www.roadandtrack.com/news/a61623925/tesla-cybertruck-outselling-ford-f-150-lightning-rivian-r1t-registration-data/ | +| 10 | Kia America 2024 Sales — EV9 North American Utility Vehicle of the Year (Kia Media) | https://www.kiamedia.com/us/en/media/pressreleases/21783/kia-america-begins-2024-with-strong-january-sales | +| 11 | Ford Broadens Electrification Strategy — E-Transit Commercial Leadership (Ford) | https://www.fromtheroad.ford.com/us/en/articles/2024/ford-broadens-electrification-strategy-to-reach-more-customers- | +| 12 | InsideEVs — EV Pickup Registrations Monthly (InsideEVs) | https://insideevs.com/news/726922/tesla-cybertruck-us-registrations-may2024/ | + +--- + +*This document was generated for use by the competitive-analysis orchestrator. The three competitors named in Section 2 — **Tesla**, **Ford**, and **Kia** — are the canonical inputs for per-competitor subagent fan-out.* diff --git a/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/competitor-ford.md b/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/competitor-ford.md new file mode 100644 index 0000000..8e252fb --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/competitor-ford.md @@ -0,0 +1,271 @@ +# Competitor Profile: Ford Motor Company +**Due Diligence Target:** Rivian Automotive +**Prepared:** 2025 | **Classification:** Competitive Intelligence + +--- + +## 1. Corporate Snapshot + +| Attribute | Detail | +|---|---| +| **Headquarters** | Dearborn, Michigan, USA | +| **Founded** | 1903 | +| **Status / Ticker** | Public — NYSE: **F** | +| **Global Headcount** | ~177,000 (FY2024) | +| **Market Cap** | ~$40–48B (fluctuates; refer to live quote for F) | +| **EV Division** | Ford Model e (separated as reportable segment 2023) | + +**Sources:** +- Ford 2024 Form 10-K: https://www.sec.gov/Archives/edgar/data/37996/000003799625000013/f-20241231.htm +- Ford IR / FY2024 Financial Results: https://www.fromtheroad.ford.com/us/en/articles/2025/ford-reports-fourth-quarter-full-year-2024-financial-results + +--- + +## 2. Revenue & Growth Signals + +| Metric | FY2023 | FY2024 | YoY Change | +|---|---|---|---| +| **Total Company Revenue** | ~$176B | **$184.992B** | +5% | +| **Ford Model e Revenue** | $5.897B | **$3.852B** | **−35%** | +| **Ford Model e EBIT** | −$4.701B | **−$5.076B** | worse | +| **Model e Worldwide Wholesales** | ~115k units | **~105k units** | −9% | + +**Key commentary:** Ford Model e's FY2024 revenue declined 35% year-over-year, driven by lower net pricing (aggressive price cuts to stimulate demand) and lower wholesales. Management has pivoted emphasis toward hybrids in the near term while developing next-generation, lower-cost EV platforms. The EV division remains deeply unprofitable, losing over **$5B in EBIT** in FY2024 alone — implying a loss of roughly **$48,000+ per EV sold**. + +**2025 Company-Level Guidance:** Adjusted EBIT $7.0–$8.5B; Capital Spending $8.0–$9.0B; Adjusted Free Cash Flow $3.5–$4.5B. Model e expected to remain loss-making near term. + +**Sources:** +- Ford 2024 10-K (SEC): https://www.sec.gov/Archives/edgar/data/37996/000003799625000013/f-20241231.htm +- Ford FY2024 PDF Report: https://s205.q4cdn.com/882619693/files/doc_financials/2024/q4/Ford-Motor-Company-2024-10-K-Report.pdf +- Electrive coverage: https://www.electrive.com/2025/02/06/ford-posts-another-big-loss-for-its-ev-division-in-2024/ + +--- + +## 3. Funding & Financial Position + +| Metric | Value (12/31/2024) | +|---|---| +| **Company Cash** | $28.5B | +| **Total Liquidity** | $46.7B | +| **Automotive Debt (ex-Ford Credit)** | ~$20.7B | +| **FY2024 Total CapEx** | $8.684B (Model e portion: $3.843B) | +| **Credit Rating** | Investment-grade: S&P BBB− / Moody's Baa3, stable outlook | + +**EV Investment Changes:** Ford announced a pause/deferral of up to **$12B** in previously committed EV spending in late 2023. Throughout 2024–2025, it scaled back F-150 Lightning production capacity targets and adjusted timing on its BlueOval SK (battery joint venture with SK On) plant ramp schedule. This represents a meaningful strategic retreat compared to Rivian's fully committed, EV-only capital allocation. + +**Sources:** +- Ford 2024 10-K: https://www.sec.gov/Archives/edgar/data/37996/000003799625000013/f-20241231.htm +- Ford Q1 2024 Results: https://www.fromtheroad.ford.com/us/en/articles/2024/first-quarter-2024-financial-results + +--- + +## 4. Product Positioning vs. Rivian + +### F-150 Lightning vs. Rivian R1T + +Ford's **F-150 Lightning** targets mainstream and fleet pickup buyers by capitalizing on America's best-selling vehicle nameplate, offering familiar F-Series styling, a dealer-based purchase/service model, and Ford Pro ecosystem integration (Pro Power Onboard generator functionality, fleet telematics). The Lightning's extended-range trim achieves up to **320 miles EPA** and up to **10,000 lbs towing**; entry MSRP starts around **$54,780** (2025 MY XLT), with frequent promotional pricing. Rivian's **R1T**, by contrast, targets premium adventure and lifestyle buyers with purpose-built EV architecture, a standard or large/max battery delivering up to **410+ miles EPA** (Max pack), up to **11,000 lbs towing**, tri/quad motor configurations, and a full off-road gear tunnel ecosystem. The R1T carries a higher base price (typically $70,000+ depending on configuration) and is sold exclusively direct-to-consumer. Lightning wins on price accessibility, F-Series brand trust, dealer accessibility, and work-use utility; R1T wins on performance, range ceiling, software sophistication, off-road credentials, and consumer satisfaction scores. + +### E-Transit vs. Rivian EDV (Commercial Delivery Van) + +Ford's **E-Transit** is broadly available to commercial fleets through Ford Pro dealers, offered in cargo van, cutaway, and chassis cab configurations, with up to **159 miles of range** (MY2026) and competitive total cost of ownership. Its wide dealer/service network makes it the default choice for general commercial fleet buyers. The **Rivian EDV** is a purpose-built last-mile delivery vehicle, designed in partnership with **Amazon** (which contracted for up to **100,000 vans**). The EDV features deeper software/telematics integration, custom exterior design, and Rivian's commercial services platform (RivianFleet); pricing is not publicly transparent. Ford's E-Transit advantage is breadth, serviceability, and financing availability; Rivian's EDV advantage is its exclusive deep integration with Amazon and proprietary delivery optimization software, representing a locked-in, high-volume anchor fleet customer that Ford cannot easily displace. + +**Sources:** +- Ford E-Transit product page: https://www.fordpro.com/en-us/fleet-vehicles/e-transit +- Ford EV range page: https://www.ford.com/electric/ev-range +- Amazon/Rivian EDV: https://www.amazon.com/b?ie=UTF8&node=20452375011 (Amazon Climate Pledge) + +--- + +## 5. F-150 Lightning Specifics + +| Attribute | Detail | +|---|---| +| **2025 MY MSRP Range** | ~$54,780 (XLT) → $75,567 (Platinum) | +| **Trims** | XLT, Flash, Lariat, Platinum | +| **EPA Range** | Up to ~320 miles (extended battery); ~230–240 miles (standard battery) | +| **Max Towing** | Up to 10,000 lbs (properly equipped) | +| **U.S. Sales — 2023** | **24,165 units** | +| **U.S. Sales — 2024** | **33,510 units** (+39% YoY) | + +**Notes:** Despite volume growth, Ford made multiple downward pricing adjustments to the Lightning in 2023–2024 to stimulate demand, directly compressing Model e margins. Ford also scaled back peak production capacity targets from the Dearborn Truck Plant and relaxed dealer EV certification requirements in 2024 to broaden market access. + +**Sources:** +- Edmunds 2025 Lightning pricing: https://www.edmunds.com/ford/f-150-lightning/ +- Ford 2025 Lightning pricing page: https://www.ford.com/trucks/f150/f150-lightning/2025/pricing-and-incentives +- Ford EV range (EPA figures): https://www.ford.com/electric/ev-range +- Ford 2024 year-end sales: https://www.fromtheroad.ford.com/us/en/articles/2025/ford-u-s--retail-sales-grow-at-double-the-industry-pace-in-2024- +- Lightning towing: https://recharged.com/articles/ford-f150-lightning-towing-capacity-and-range + +--- + +## 6. E-Transit Specifics + +| Attribute | Detail | +|---|---| +| **MSRP Range** | Varies by configuration; refer to Ford Pro site for current MY2026 pricing | +| **Range (MY2026)** | Up to **159 miles** per charge | +| **Body Styles** | Cargo van, cutaway, chassis cab (multiple wheelbases/roof heights) | +| **Key Fleet Customers** | Broad U.S. commercial fleet base via Ford Pro dealer network | +| **U.S. Sales — 2023** | **7,672 units** | +| **U.S. Sales — 2024** | **12,610 units** (+64% YoY) | + +**Notes:** The E-Transit is the best-selling electric cargo van in the U.S. Its growth (+64% YoY in 2024) signals traction in commercial fleet electrification. Lack of a dedicated factory-backed software/telematics ecosystem comparable to Rivian's is a known competitive gap. + +**Sources:** +- Ford Pro E-Transit page: https://www.fordpro.com/en-us/fleet-vehicles/e-transit +- Ford 2026 E-Transit pricing: https://www.ford.com/commercial-trucks/e-transit/2026/pricing-and-incentives +- Ford 2024 year-end sales: https://www.fromtheroad.ford.com/us/en/articles/2025/ford-u-s--retail-sales-grow-at-double-the-industry-pace-in-2024- + +--- + +## 7. Rivian R1T & EDV Comparison Data (Context) + +| Metric | Rivian R1T | Rivian EDV | +|---|---|---| +| **MSRP Range** | ~$70,000+ (varies by pack/motor config) | Not publicly listed; Amazon contracted up to 100,000 units | +| **EPA Range** | Up to ~410+ miles (Max pack) | ~150 miles (est.) | +| **Max Towing** | Up to 11,000 lbs | N/A (cargo van) | +| **2023 Deliveries** | ~50,122 (total all models) | Included in total | +| **2024 Deliveries** | ~51,579 (total all models, per Rivian IR) | Included in total | + +**Notes:** Rivian's total delivery volumes are roughly **half** of Ford's BEV-only volume in the U.S. but Rivian operates with a single factory (Normal, IL) versus Ford's multi-plant manufacturing footprint. The Amazon EDV contract of up to 100,000 vans remains a critical competitive moat for Rivian in commercial delivery. + +**Sources:** +- Rivian Q4 2024 production/delivery press release (Rivian IR): https://rivian.com/investors +- Amazon Climate Pledge / EDV order: https://press.aboutamazon.com/news-releases/news-release-details/amazon-orders-100000-electric-delivery-vehicles-rivian + +--- + +## 8. U.S. EV Market Share + +| Metric | 2023 | 2024 | +|---|---|---| +| **Ford BEV Units (U.S.)** | ~72,000–73,000 est. | **97,865** (Mach-E: 51,745 + Lightning: 33,510 + E-Transit: 12,610) | +| **Ford U.S. BEV Market Share** | ~6–7% | **~7–8%** of BEV market | +| **Ford Rank among U.S. BEV Sellers** | #2 (behind Tesla) | **#3** (behind Tesla and GM depending on source) | +| **Total U.S. BEV Market (2024)** | ~1.21M units (2023) | **~1.30M units** | + +**Notes:** Ford ranked among the top 3 U.S. BEV sellers in 2024, behind Tesla (dominant) and neck-and-neck with GM. Rivian, by comparison, sold ~51,579 total vehicles in 2024 — representing roughly 4% of the U.S. BEV market, concentrated in the premium truck/van segment. + +**Sources:** +- Ford 2024 sales release: https://www.fromtheroad.ford.com/us/en/articles/2025/ford-u-s--retail-sales-grow-at-double-the-industry-pace-in-2024- +- Cox Automotive Q4 2024 EV tracker: https://www.coxautoinc.com/insights-hub/q4-2024-ev-sales/ +- Teslarati 2024 BEV rankings: https://www.teslarati.com/tesla-evs-automakers-sell-us-2024/ + +--- + +## 9. Distribution & Dealer Advantages + +| Attribute | Ford | Rivian | +|---|---|---| +| **U.S. Retail Points** | ~3,000+ franchise dealerships | ~50 service centers / direct delivery | +| **Sales Model** | Franchise dealer (traditional) with Ford EV-certified tier | 100% direct-to-consumer online + service centers | +| **Service Coverage** | Nationwide (all 50 states, most rural areas) | Major metro areas only; rural coverage gap | +| **Parts & Service** | Dealer-supplied, rapid availability | Rivian-owned service centers + mobile service | +| **Fleet Sales Infrastructure** | Ford Pro (dedicated B2B division, financing, telematics, upfitting) | Rivian Commercial (growing, less mature) | + +**June 2024 Dealer Policy Change:** Ford reversed its earlier requirement that dealers make substantial charging infrastructure investments to qualify for Lightning and Mach-E inventory allocations. The relaxed policy was intended to increase EV availability at more rooftops and reduce friction in the distribution chain. + +**Implications vs. Rivian:** Ford's ~3,000 dealerships represent an enormous geographic and service reach advantage over Rivian's sparse direct service footprint, particularly for fleet customers who require uptime guarantees and nationwide service. However, the traditional dealer model also introduces inconsistent EV sales experience, potential margin conflicts, and slower feedback loops compared to Rivian's tightly controlled, software-enabled direct-sales model. + +**Sources:** +- Reuters on Ford dealer EV policy reversal: https://www.reuters.com/business/autos-transportation/ford-walks-back-ev-dealer-restrictions-boost-sales-2024-06-13 +- Ford Pro fleet division: https://www.fordpro.com + +--- + +## 10. Recent Strategic Moves (2024–2025) + +| Move | Detail | Signal | +|---|---|---| +| **EV Spend Deferral** | Up to $12B in EV investment paused/deferred since late 2023; BlueOval SK battery plant ramp slowed | Demand caution; ICE/hybrid bridge prioritized | +| **Hybrid Pivot** | Management explicitly calling out hybrids as near-term growth driver; record hybrid sales in 2024 | EV-skeptic positioning vs. pure-plays | +| **Lightning Production Pacing** | Dearborn Truck Plant Lightning capacity targets reduced from prior projections | Demand normalization; rightsizing supply | +| **Dealer Policy Relaxation** | EV certification requirements loosened (June 2024) | Prioritizing volume over dealer readiness | +| **Lightning Pricing Cuts** | Multiple downward adjustments in 2023–2024 to remain price-competitive with Tesla Cybertruck and others | Margin compression; competitive pressure | +| **Next-Gen Affordable EV Platform** | Ford announced development of lower-cost EV platforms for future affordable models (unnamed, no firm launch date as of early 2025) | Long-term EV commitment, near-term uncertainty | +| **BlueOval SK Battery JV** | Ongoing SK On partnership for U.S. battery supply; Kentucky plant under phased ramp | Supply chain localization in progress | +| **Software / Connected Services** | Ford expanding FordPass, Pro Intelligence telematics, and OTA update capability; still catching up to EV-native peers | Infrastructure improving but nascent vs. Tesla/Rivian | + +**Sources:** +- Ford 2024 10-K: https://www.sec.gov/Archives/edgar/data/37996/000003799625000013/f-20241231.htm +- Reuters dealer policy: https://www.reuters.com/business/autos-transportation/ford-walks-back-ev-dealer-restrictions-boost-sales-2024-06-13 +- Ford Q1 2024 financials: https://www.fromtheroad.ford.com/us/en/articles/2024/first-quarter-2024-financial-results + +--- + +## 11. Strengths Relative to Rivian + +1. **F-Series Brand Power:** The F-150 is America's best-selling vehicle for 47+ consecutive years. The Lightning inherits decades of buyer loyalty, fleet relationships, and purchase intent that Rivian must build from scratch. + +2. **Scale & Manufacturing Depth:** Ford operates dozens of plants globally with established supply chains, flexible manufacturing (ICE/hybrid/BEV on shared lines), and the ability to absorb EV losses against profitable ICE and Ford Pro cash flows. Rivian operates a single plant. + +3. **Ford Pro Fleet Ecosystem:** Ford Pro is a full-service B2B platform offering fleet financing, upfitting, telematics (Pro Intelligence), maintenance, and EV charging solutions — deeply embedded with government, utility, and enterprise fleet buyers. This represents a structural moat in commercial electrification. + +4. **Nationwide Dealer & Service Network:** ~3,000 U.S. dealerships provide coast-to-coast coverage, same-day service availability, and local financing relationships that Rivian's ~50-location direct network cannot match — critical for fleet buyers requiring SLA-backed uptime. + +5. **Balance Sheet & Liquidity:** Ford carries $46.7B in total liquidity (12/31/2024) vs. Rivian's ~$7–8B cash position (approximate). Ford can sustain multi-year EV losses while funding R&D, unlike Rivian which must carefully manage its cash runway. + +6. **Diversified Revenue Base:** Ford generates $185B in annual revenue across ICE, hybrid, and EV segments globally. Rivian is 100% dependent on EV sales and the Amazon EDV contract — making Ford far more resilient to demand volatility. + +7. **Regulatory & Government Relationships:** Ford has 120+ years of established relationships with federal and state governments, NHTSA, fleet procurement offices (GSA), and international regulators — critical for winning large public-sector EV fleet contracts. + +--- + +## 12. Weaknesses Relative to Rivian + +1. **Catastrophic EV Unit Economics:** Ford Model e lost **$5.076B in EBIT on ~105,000 wholesale units** in FY2024 — implying a per-vehicle loss exceeding **$48,000**. This is structurally unsustainable and reflects the fundamental mismatch between Ford's legacy cost base and EV economics. Rivian's losses per vehicle are also significant, but its purpose-built platform and manufacturing process are more directly aligned to eventual EV-native cost curves. + +2. **Non-Native EV Architecture:** The F-150 Lightning and E-Transit are derivative EVs adapted from existing ICE platforms, not purpose-built EV architectures. This constrains packaging efficiency, software integration, frunk space, range optimization, and the long-term potential to achieve Tesla/Rivian-style gross margin improvements through platform consolidation. + +3. **Software & OTA Immaturity:** Ford's in-vehicle software (SYNC system, OTA update cadence, app ecosystem) lags significantly behind Rivian and Tesla. Ford has experienced high-profile SYNC and infotainment quality issues. Rivian's software stack is considered among the best in the industry, with frequent OTA updates and a native connected-vehicle architecture. + +4. **Strategic Ambiguity & Commitment Risk:** Ford's repeated EV investment deferrals, hybrid pivots, dealer policy reversals, and production target reductions signal organizational indecision on EVs. This uncertainty undermines long-term fleet buyer confidence and makes attracting EV-focused engineering talent harder. Rivian, as a pure-play, has singular strategic clarity. + +5. **Consumer Perception Deficit in EV-First Segments:** Younger, tech-forward, and adventure/outdoor buyers — Rivian's core audience — disproportionately distrust legacy OEM EV offerings. The Lightning is perceived as an ICE truck with a battery swap; the R1T is perceived as a purpose-built performance EV. In brand consideration surveys, Rivian consistently scores higher on innovation, software quality, and owner satisfaction among EV-intender audiences. + +6. **Dealer Experience Inconsistency:** Despite attempted EV-certified programs, the franchise dealer model creates variable customer experiences in EV sales and service — from salesperson knowledge gaps to charging infrastructure differences by location. Rivian's direct-sales model provides a uniform, software-managed purchase and ownership experience that is consistently preferred by EV-native consumers. + +7. **Amazon EDV Lock-Out:** Ford has no meaningful path to displace Rivian as Amazon's primary commercial EV delivery partner in the near term. Amazon's contract for up to 100,000 Rivian EDVs, combined with Amazon's equity stake in Rivian, creates a structurally closed competitive door for Ford in the highest-volume last-mile fleet electrification opportunity in North America. + +--- + +## Summary Competitive Assessment + +| Dimension | Ford | Rivian | Edge | +|---|---|---|---| +| Brand Recognition | ★★★★★ | ★★★☆☆ | **Ford** | +| EV Architecture Quality | ★★★☆☆ | ★★★★★ | **Rivian** | +| Software / OTA | ★★★☆☆ | ★★★★★ | **Rivian** | +| Consumer Satisfaction (EV buyers) | ★★★☆☆ | ★★★★★ | **Rivian** | +| U.S. EV Sales Volume | ★★★★★ | ★★★☆☆ | **Ford** | +| Dealer / Service Network | ★★★★★ | ★★☆☆☆ | **Ford** | +| Fleet Relationships & Ford Pro | ★★★★★ | ★★★☆☆ | **Ford** | +| Balance Sheet / Liquidity | ★★★★★ | ★★★☆☆ | **Ford** | +| EV Unit Economics | ★★☆☆☆ | ★★★☆☆ | **Rivian** (less bad) | +| Commercial Van (Amazon EDV) | ★★★☆☆ | ★★★★★ | **Rivian** | +| Strategic Clarity (EV focus) | ★★★☆☆ | ★★★★★ | **Rivian** | +| Pricing Accessibility | ★★★★☆ | ★★★☆☆ | **Ford** | + +**Bottom Line:** Ford is Rivian's most dangerous competitor in the electric pickup segment by volume and brand reach, but its structural disadvantages in EV architecture, software, unit economics, and strategic commitment leave meaningful room for Rivian to defend and grow its premium EV niche — particularly with adventure/lifestyle buyers, the Amazon commercial fleet, and EV-native consumers who actively prefer purpose-built platforms. + +--- + +*Sources consolidated:* +- *Ford 2024 Form 10-K (SEC EDGAR): https://www.sec.gov/Archives/edgar/data/37996/000003799625000013/f-20241231.htm* +- *Ford FY2024 Financial Results Press Release: https://www.fromtheroad.ford.com/us/en/articles/2025/ford-reports-fourth-quarter-full-year-2024-financial-results* +- *Ford FY2024 Annual Report PDF: https://s205.q4cdn.com/882619693/files/doc_financials/2024/q4/Ford-Motor-Company-2024-10-K-Report.pdf* +- *Ford 2024 Year-End U.S. Sales: https://www.fromtheroad.ford.com/us/en/articles/2025/ford-u-s--retail-sales-grow-at-double-the-industry-pace-in-2024-* +- *Ford Q4 2024 Sales Release (IR): https://shareholder.ford.com/news/news-details/2025/Ford-U-S--Q4-2024-Sales-Release-2025-_g_lPr_-io/default.aspx* +- *Electrive — Ford Model e Loss FY2024: https://www.electrive.com/2025/02/06/ford-posts-another-big-loss-for-its-ev-division-in-2024/* +- *Edmunds 2025 F-150 Lightning Pricing: https://www.edmunds.com/ford/f-150-lightning/* +- *Ford F-150 Lightning pricing page: https://www.ford.com/trucks/f150/f150-lightning/2025/pricing-and-incentives* +- *Ford EV Range (EPA): https://www.ford.com/electric/ev-range* +- *Ford Pro E-Transit: https://www.fordpro.com/en-us/fleet-vehicles/e-transit* +- *Ford 2026 E-Transit pricing: https://www.ford.com/commercial-trucks/e-transit/2026/pricing-and-incentives* +- *Reuters — Ford dealer EV policy reversal (June 2024): https://www.reuters.com/business/autos-transportation/ford-walks-back-ev-dealer-restrictions-boost-sales-2024-06-13* +- *Cox Automotive Q4 2024 EV Sales: https://www.coxautoinc.com/insights-hub/q4-2024-ev-sales/* +- *Teslarati 2024 U.S. BEV rankings: https://www.teslarati.com/tesla-evs-automakers-sell-us-2024/* +- *Amazon EDV Order Announcement: https://press.aboutamazon.com/news-releases/news-release-details/amazon-orders-100000-electric-delivery-vehicles-rivian* +- *Rivian Investor Relations: https://rivian.com/investors* +- *Recharged — Lightning towing & range: https://recharged.com/articles/ford-f150-lightning-towing-capacity-and-range* diff --git a/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/competitor-kia.md b/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/competitor-kia.md new file mode 100644 index 0000000..49c08f6 --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/competitor-kia.md @@ -0,0 +1,233 @@ +# Competitor Profile: Kia Corporation +### *As a Direct Competitor to Rivian Automotive* +**Prepared:** 2025 | **Research basis:** Kia IR filings, Hyundai Motor Group disclosures, OEM product pages, S&P Global Mobility, KBB, Edmunds, Reuters, Georgia state economic development, and US court records. + +--- + +## 1. Corporate Snapshot + +| Attribute | Detail | +|---|---| +| **Full legal name** | Kia Corporation | +| **Headquarters** | 12, Heolleung-ro, Seocho-gu, Seoul, South Korea | +| **Status** | Public — listed on KRX (ticker: 000270.KS) | +| **Founded** | 1944 | +| **Global headcount** | ~52,000 employees (2024 consolidated) | +| **Parent / controlling shareholder** | Hyundai Motor Company holds **34.53%** of Kia; Kia is the second pillar of Hyundai Motor Group (HMG) | + +Kia operates under the HMG umbrella alongside Hyundai, Genesis, and Hyundai Mobis. The Group's shared engineering, purchasing, and platform strategies give Kia access to far greater R&D and capital resources than its standalone financials imply. + +> **Sources:** Kia IR corporate information — https://worldwide.kia.com/en/company/investor-relations/corporate-information | Kia shareholders page — https://worldwide.kia.com/en/company/sustainability/governance/shareholders | Kia Q3 2024 consolidated filing (Nov 14, 2024) — https://worldwide.kia.com/int/company/ir/financial/audit/download/4e0ffa25-766d-4ac0-8020-90306ac8f4ba/3123956e-5f92-4a8a-8eb5-61d370fb748b | Wikipedia — https://en.wikipedia.org/wiki/Kia + +--- + +## 2. Revenue & Growth Signals + +### Global Revenue & Profitability +- **FY 2024 Q4 revenue:** KRW 27.15 trillion (+11.6% YoY) +- **FY 2024 operating profit:** KRW 12.67 trillion (~USD $8.85 billion) — a record result +- **FY 2024 recurring profit:** KRW 13.50 trillion; **net profit:** KRW 9.78 trillion + +> **Sources:** Kia 2024 annual results press release (Jan 24, 2025) — https://worldwide.kia.com/en/newsroom/view/?id=161160 | Reuters (Jan 24, 2025) — https://www.reuters.com/business/autos-transportation/kia-posts-operating-profit-127-trln-won-2024-2025-01-24/ | Kia financial summary — https://worldwide.kia.com/en/company/investor-relations/financial/summary-statements + +### Global Vehicle Sales +| Year | Units | YoY Growth | +|---|---|---| +| 2023 | 3,087,384 | +6.4% | +| 2024 | ~3.1 million (global record) | ~+0.4% | + +> **Sources:** Kia Q4 2023 results (Jan 25, 2024) — https://worldwide.kia.com/en/newsroom/view/?id=161711 | Kia 2024 global sales record announcement (Jan 3, 2025) — https://www.kianewscenter.com/News/kia-announces-global-sales-record-for-2024-and-shares-2025-targets/s/ef503380-4cb3-4157-bf80-b077a4b45743 + +### EV-Specific Sales & Market Share +- **EV9 US launch year growth:** +1,869% YoY in 2024 — the model drove Kia America's all-time annual sales record +- **US EV sales trend:** Kia EV sales grew **+57% YoY** in January 2024 alone +- **Hyundai + Kia combined US EV market share:** ~**9.3%** of US EV registrations (2024–2025), making HMG the #2 EV group in the US behind Tesla +- **Kia US overall market share:** ~5% of US light-vehicle market (~782,000 units in 2024) + +> **Sources:** Kia America 2024 sales recap (Jan 3, 2025) — https://worldwide.kia.com/en/newsroom/view/?id=161153 | Kia America January 2024 press release (Feb 1, 2024) — https://www.kiamedia.com/us/en/media/pressreleases/21783/kia-america-begins-2024-with-strong-january-sales | S&P Global Mobility via Yahoo Finance (Aug 14, 2025) — https://finance.yahoo.com/news/ev-registrations-rise-moderately-june-111856237.html | Automotive News / S&P Global (Jul 10, 2025) — https://www.facebook.com/AutoNews/posts/1318500763468987/ + +--- + +## 3. Funding & Market Cap Status + +| Entity | Market Cap (Apr 2026) | +|---|---| +| **Hyundai Motor Company** | ~$87 billion USD | +| **Kia Corporation** | ~$39.7 billion USD (KRW 58.99 trillion) | + +### Key Capital Investments in EV & Battery Manufacturing +1. **HMG + SK On battery JV** — Total investment of **$5 billion USD**; JV officially named *Hyundai SK Battery Manufacturing America*; boards of Hyundai Motor, Kia, and Hyundai Mobis all approved. Georgia facility approaching launch operations (March 2026 updates). +2. **HMG + LG Energy Solution (LGES) battery JV in Georgia** — Additional **$2 billion** investment announced August 31, 2023, on top of an initial ~$4.3 billion commitment; factory at Metaplant America in Bryan County, GA. + +Both battery plants in Georgia are designed to supply cells to Hyundai and Kia's US-assembled EVs, enabling IRA compliance and reducing supply-chain exposure. + +> **Sources:** CompaniesMarketCap — https://companiesmarketcap.com/hyundai/marketcap | https://companiesmarketcap.com/kia/marketcap/ | StockAnalysis — https://stockanalysis.com/quote/krx/000270/market-cap/ | Hyundai News HMG-SK On JV (Apr 25, 2023) — https://www.hyundainews.com/releases/3821 | Georgia.org HMG-LGES JV (Aug 31, 2023) — https://georgia.org/press-release/hyundai-motor-group-and-lg-energy-solution-invest-additional-2b-bryan-county | Yonhap News Agency (Mar 27, 2026) — https://en.yna.co.kr/view/AEN20260327002800320 | S&P Global AutoTechInsight (Mar 31, 2026) — https://autotechinsight.spglobal.com/news/5287424/hyundai-motor-group-and-sk-on-name-us-battery-jv-hyundai-sk-battery-manufacturing-america + +--- + +## 4. Product & Positioning: Kia EV9 vs. Rivian R1S + +> Both are premium 3-row electric SUVs. The EV9 and R1S represent the most direct head-to-head matchup between Kia and Rivian in the US market. + +### Side-by-Side Specifications + +| Spec | **Kia EV9** | **Rivian R1S** | +|---|---|---| +| **Starting MSRP** | ~$54,900 (Light RWD) | ~$75,900 (Dual Motor, Standard Pack) | +| **Top trim MSRP** | ~$73,900 (GT-Line AWD) | ~$105,900+ (Quad Motor, Max Pack) | +| **EPA Range** | 230–304 miles (trim-dependent) | 258–410 miles (pack-dependent) | +| **Powertrain options** | RWD single-motor / AWD dual-motor | Dual Motor / Perf. Dual Motor / Quad Motor | +| **0–60 mph** | ~5.0 s (GT-Line AWD) | 2.6 s (Quad); ~4.5 s (Standard Dual) | +| **Max towing capacity** | 5,000 lb | **7,700 lb** | +| **Payload capacity** | N/A (family SUV focus) | 1,973 lb | +| **DC fast-charge architecture** | **800V E-GMP** — up to ~236 kW peak | ~220+ kW peak (400V, NACS rollout) | +| **10–80% charge time** | ~24 min (on 350 kW charger) | ~30–40 min (pack-dependent) | +| **Cargo volume** | Up to ~81.7 cu ft | Competitive; + large frunk (~11 cu ft) | +| **Charging network** | Universal (CCS/NACS compatible) | Rivian Adventure Network + Supercharger access (NACS) | +| **V2L (Vehicle-to-Load)** | ✅ Standard | ✅ Available | +| **Off-road modes** | Terrain modes (AWD) | Dedicated off-road drive modes + Rock Crawl | +| **Camp Mode** | ❌ | ✅ (signature feature) | +| **Frunk / Gear Tunnel** | ❌ | ✅ Frunk + Gear Tunnel (exclusive) | +| **OTA updates** | ✅ | ✅ (software-first approach) | +| **ADAS suite** | Highway Driving Assist 2, LFA 2, FCA | Standard driver-assist suite | +| **Seating** | Up to 7 (3-row) | Up to 7 (optional 3rd row) | + +### Positioning Summary + +**Kia EV9** targets **mainstream premium family buyers** who want a well-equipped 3-row electric SUV with fast charging and broad dealer accessibility at a substantially lower price than luxury EV competitors. It competes on value, practicality, interior quality, and rapid DC charging speed. The brand DNA is "affordable premium." + +**Rivian R1S** targets **affluent adventure/lifestyle buyers** who prioritize extreme capability (off-road, towing, range), unique utility features (frunk, gear tunnel, Camp Mode), and a curated, software-defined ownership experience. Rivian's brand DNA is "adventure tech luxury." The R1S commands a significant price premium over the EV9 — typically **$20,000–$30,000+ more** at comparable configurations. + +> **Sources:** Kia EV9 US product page — https://www.kia.com/us/en/ev9 | Kia EV9 specs/compare — https://www.kia.com/us/en/ev9/specs-compare | Kia EV9 key facts PDF — https://www.kia.com/content/dam/kwcms/kme/se/sv/assets/contents/utility/specifications/ev9/kia-ev9-keyfacts.pdf | Kia EV9 2024 specifications — https://www.kiamedia.com/us/en/models/ev9/2024/specifications | MyKia EV9 page — https://www.mykia.com/EV9.htm | Rivian R1S product page — https://rivian.com/r1s | KBB 2025 Rivian R1S — https://www.kbb.com/rivian/r1s/2025/ | Edmunds 2025 Rivian R1S specs — https://www.edmunds.com/rivian/r1s/2025/features-specs/ | Recharged.com 2025 R1S buying guide — https://recharged.com/articles/2025-rivian-r1s-buying-guide + +--- + +## 5. Dealer Network vs. Rivian's Direct Sales Model + +| Dimension | **Kia** | **Rivian** | +|---|---|---| +| **Sales model** | Traditional franchised dealer network | Direct-to-consumer (online only) | +| **US points of sale/service** | **~788–802 authorized dealers** (2025–2026) | Company-owned service centers + mobile service | +| **Pricing model** | MSRP subject to dealer markup/negotiation | Fixed, non-negotiable online pricing | +| **Customer experience** | Variable by dealer; in-person inventory available | Consistent, app/web-driven; no-haggle | +| **Test drives** | Broadly available at dealers nationwide | Limited to service center locations | +| **Financing & trade-ins** | Through dealer F&I offices (broad options) | Online financing + third-party trade-in tools | +| **Service coverage** | Nationwide; ~800 locations for routine/warranty work | Fewer locations; mobile service partially compensates | +| **Agency/direct model shift** | None in US as of 2025; franchise model maintained | N/A — direct only from inception | + +The dealer network is a **double-edged sword**: Kia's ~800 US dealers provide unmatched geographic accessibility for service, test drives, and same-day purchases — a material advantage for risk-averse or rural buyers. However, the franchise model introduces price variability, inconsistent customer experiences, and slower software update deployment compared to Rivian's tightly controlled direct-sales ecosystem. + +> **Sources:** US District Court for the District of New Hampshire opinion (Mar 31, 2025) confirming ~788 Kia US authorized dealers — https://www.nhd.uscourts.gov/sites/default/files/Opinions/2024/25NH046P.pdf | ScrapeHero Kia US location tracker (Apr 13, 2026) — https://www.scrapehero.com/location-reports/KIA-USA/ + +--- + +## 6. Recent Strategic Moves (2024–2025) + +### US Manufacturing — EV9 Goes Domestic +- **May–June 2024:** Kia commenced EV9 production at its **West Point, Georgia** manufacturing facility — the first saleable EV assembled in Georgia. This positions the EV9 to potentially qualify for IRA consumer tax credits tied to North American assembly requirements. +- **Investment:** Kia committed **>$200 million** and ~200 new jobs to the West Point plant expansion specifically for EV9 production. + +> **Sources:** US Senator Ossoff press release (May 30, 2024) — https://www.ossoff.senate.gov/press-releases/u-s-federal-manufacturing-incentives-working-for-georgia-kia-begins-ev9-production-in-west-point/ | Augusta Chronicle (Jun 3, 2024) — https://www.augustachronicle.com/story/business/2024/06/03/kia-georgia-in-west-point-assembling-2025-ev9-electric-suv/73958460007 | Georgia.org (Jul 12, 2023) — https://georgia.org/press-release/kia-invest-over-200-million-ev9-production-expansion | Gov. Kemp release (Jul 12, 2023) — https://gov.georgia.gov/press-releases/2023-07-12/gov-kemp-kia-invest-over-200-million-ev9-production-expansion + +### Battery Vertical Integration in Georgia +- **HMG + SK On JV** nearing operational launch in Georgia (2026); named *Hyundai SK Battery Manufacturing America*. Supplies cells to Kia/Hyundai US EV assembly. +- **HMG + LGES JV** at Metaplant America, Bryan County, GA; $2B additional investment (Aug 2023) on top of $4.3B initial commitment. + +> **Sources:** Hyundai News (Apr 25, 2023) — https://www.hyundainews.com/releases/3821 | Georgia.org (Aug 31, 2023) — https://georgia.org/press-release/hyundai-motor-group-and-lg-energy-solution-invest-additional-2b-bryan-county | Yonhap (Mar 27, 2026) — https://en.yna.co.kr/view/AEN20260327002800320 + +### EV Sales Records & 2024 Momentum +- Six Kia models set all-time annual US sales records in 2024, headlined by the EV9's **+1,869% YoY growth** in its first full sales year. +- Kia announced 2025 targets aimed at continuing EV volume growth with an expanded E-GMP model lineup globally (EV3, EV5 for non-US markets; EV9 and EV6 for US). + +> **Source:** Kia America 2024 sales recap (Jan 3, 2025) — https://worldwide.kia.com/en/newsroom/view/?id=161153 + +### Software & Connectivity +- EV9 launched with Kia's **Connected Car Navigation Cockpit (ccNC)** infotainment platform with OTA update capability. +- No announced shift away from the dealer franchise model in the US. + +--- + +## 7. Technology Differentiation + +### Kia / HMG Technology Stack + +| Technology | Kia / HMG Capability | +|---|---| +| **Platform** | 800V **E-GMP** (Electric Global Modular Platform) shared across EV6, EV9, Hyundai IONIQ 5/6, Genesis GV60/GV70/GV80 | +| **Peak DC fast-charge speed** | Up to ~236 kW (EV9); 10–80% in ~24 min at 350 kW chargers; also compatible with 400V chargers via motor-based voltage boosting | +| **Bi-directional charging** | **V2L** (Vehicle-to-Load): power external devices/appliances up to 3.6 kW; **V2G** pilot programs underway | +| **Battery chemistry / suppliers** | NCM cells from SK On and LG Energy Solution; HMG pursuing next-gen solid-state battery R&D | +| **OTA updates** | Supported on EV9 and newer E-GMP models | +| **ADAS** | Highway Driving Assist 2 (hands-free on limited sections), Lane Following Assist 2, Forward Collision-Avoidance Assist, Blind-Spot Collision Avoidance | +| **Infotainment** | Kia ccNC with connected navigation; dual large screens | +| **Charging network access** | Universal CCS; NACS adapter availability rolling out; no proprietary network | + +### Rivian Technology Stack (for comparison) + +| Technology | Rivian Capability | +|---|---| +| **Platform** | Proprietary **R1 platform** (skateboard architecture, purpose-built for adventure/truck/SUV) | +| **Adventure Network** | Proprietary DC fast-charge network (SAE CCS + NACS) at adventure-oriented locations; expanding nationally | +| **Software** | Software-defined vehicle; continuous OTA updates; deep app integration; Camp Mode ecosystem | +| **Off-road capability** | Dedicated Kneel, Rock Crawl, Sport, and other drive modes; 14.9" ground clearance (R1S); air suspension | +| **Unique utility** | Front trunk (~11 cu ft), Gear Tunnel (pass-through lockable storage) — Rivian exclusives | +| **Powertrain** | Up to Quad-Motor AWD (one motor per wheel); best-in-class for EV off-road torque vectoring | +| **V2L / V2H** | Available | +| **OTA** | OTA-first from Day 1; frequent feature releases | + +### Key Technology Takeaway +Kia's **800V E-GMP gives it the faster DC charging architecture** — 10–80% in ~24 min on 350 kW hardware is best-in-class and superior to the R1S's ~30–40 min. However, Rivian's **Quad-Motor platform, off-road software, frunk/gear tunnel utility, and proprietary Adventure Network** represent genuine differentiation that Kia cannot replicate within its current platform scope. Kia's technology is broad and solid; Rivian's is narrow and deeply specialized for its target customer. + +> **Sources:** Kia EV9 key facts PDF — https://www.kia.com/content/dam/kwcms/kme/se/sv/assets/contents/utility/specifications/ev9/kia-ev9-keyfacts.pdf | Kia EV9 specs — https://www.kia.com/us/en/ev9/specs-compare | Rivian R1S — https://rivian.com/r1s | KBB 2025 R1S — https://www.kbb.com/rivian/r1s/2025/ | Edmunds 2025 R1S — https://www.edmunds.com/rivian/r1s/2025/features-specs/ + +--- + +## 8. Strengths Relative to Rivian + +1. **Substantially lower price point.** The EV9 starts ~$20,000–$30,000 below a comparably configured R1S, making it accessible to a far wider buyer pool and less susceptible to luxury-demand cyclicality. + +2. **Massive financial backing.** Kia is part of HMG, with Hyundai Motor Company alone carrying a ~$87B market cap. Kia's own FY2024 operating profit of ~$8.85B dwarfs Rivian's accumulated losses. Kia can sustain years of EV investment and price competition without existential risk. + +3. **800V fast-charging superiority.** The E-GMP 800V architecture delivers a ~24-min 10–80% charge (at 350 kW hardware), outperforming the R1S's typical 30–40 min charge window — a real-world daily-use advantage. + +4. **~800 US dealer locations.** Kia's franchised dealer network provides near-ubiquitous sales coverage, trade-in options, and service access across all US states and metros — particularly advantageous in non-coastal markets underserved by Rivian's service footprint. + +5. **US manufacturing with IRA eligibility pathway.** EV9 production commenced in West Point, Georgia in mid-2024, positioning Kia for potential IRA clean vehicle tax credit qualification as domestic battery sourcing ramps up through HMG's Georgia JVs with SK On and LGES. + +6. **Proven brand trust and volume scale.** Kia sold ~782,000 vehicles in the US in 2024 versus Rivian's ~51,000 total vehicles globally. Brand recognition, J.D. Power quality rankings, and residual value stability are established assets. + +7. **V2L versatility.** The EV9's standard V2L output (up to 3.6 kW) and V2G pilots offer energy versatility that overlaps with Rivian's Camp Mode utility, though with less lifestyle marketing around it. + +--- + +## 9. Weaknesses Relative to Rivian + +1. **No adventure/off-road brand identity.** Rivian's entire brand is built around outdoor adventure and extreme capability. Kia is perceived as a value-to-mainstream-premium family automaker — a brand positioning that does not resonate with the off-road and overlanding communities that are Rivian's core buyers. + +2. **Lower towing capacity.** EV9 maximum tow rating of **5,000 lb** is materially behind the R1S's **7,700 lb**, disqualifying the EV9 for many trailer, boat, or fifth-wheel use cases that R1S owners depend on. + +3. **Significantly lower performance ceiling.** The EV9's ~5.0 s 0–60 mph time compares poorly to the R1S Quad Motor's **2.6 s** — a meaningful differentiator in the performance-oriented premium EV segment. + +4. **Shorter maximum range.** Even the best EV9 trim tops out at ~304 miles EPA-estimated versus the R1S Max Pack's ~410 miles — a 35% range disadvantage that matters for long road trips and adventure use cases. + +5. **No frunk or gear tunnel analog.** Rivian's front trunk and pass-through lockable Gear Tunnel are patented, practical features that create genuine utility differentiation. The EV9 offers no comparable storage innovation. + +6. **No proprietary charging network.** Rivian's Adventure Network places DCFC chargers at adventure-oriented destinations (national parks, trailheads, ski resorts), directly reinforcing its brand proposition. Kia has no proprietary network and depends entirely on third-party infrastructure. + +7. **Franchise dealer model friction.** While the dealer network provides coverage, it introduces price variability, inconsistent sales experiences, and slower software feature delivery relative to Rivian's tightly controlled direct-to-consumer model. For tech-forward EV buyers, this is a meaningful experiential downgrade. + +8. **Software-defined vehicle gap.** Rivian is architecturally a software company that manufactures vehicles. Kia's software stack (ccNC, OTA) is competent but does not carry the same "living product" reputation or depth of continuous iteration that Rivian's platform does. + +9. **Camp Mode / adventure ecosystem absent.** Rivian's Camp Mode (climate control, quiet operation, entertainment while parked), accessory ecosystem (roof tents, bike racks), and gear tunnel accessories form a cohesive adventure lifestyle product that Kia has no equivalent to. + +--- + +## 10. Summary Assessment + +Kia poses a **real but indirect competitive threat** to Rivian in the 3-row electric SUV segment. The EV9 competes on **price, fast charging, and family utility** — it will win buyers who want a capable 3-row EV without paying Rivian's premium. However, Kia cannot credibly contest Rivian's **adventure/lifestyle positioning, extreme performance, towing capability, or software-first ownership experience**. + +The more significant strategic threat Kia (and HMG broadly) poses to Rivian is at the **market share and financial endurance level**: Kia's financial firepower, manufacturing scale, dealer reach, and IRA manufacturing compliance put sustained downward pressure on EV pricing and erode Rivian's addressable market at lower price points. If Rivian cannot maintain strong brand premium and software differentiation, the EV9's value proposition becomes an increasingly attractive alternative for mainstream premium buyers who might otherwise stretch to an R1S. + +--- + +*All data as of April–May 2025 unless otherwise noted. Financial figures in USD unless stated in KRW.* diff --git a/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/competitor-tesla.md b/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/competitor-tesla.md new file mode 100644 index 0000000..0783c20 --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/competitor-tesla.md @@ -0,0 +1,295 @@ +# Competitor Profile: Tesla, Inc. +**DD Target:** Rivian Automotive | **Prepared:** 2025 | **Classification:** Competitive Intelligence + +--- + +## 1. Corporate Snapshot + +| Attribute | Detail | +|-----------|--------| +| **Headquarters** | Austin, Texas, USA | +| **Status** | Public — NASDAQ: TSLA | +| **Founded** | 2003 | +| **Headcount** | ~140,000 (2023 peak; reduced following 2024 layoffs of ~10%+) | +| **Market Cap** | ~$1.45 trillion (as of mid-2025, live figure) | +| **FY2024 Revenue** | $97.69 billion | +| **FY2024 Net Income** | $7.09 billion (GAAP) | + +> **Sources:** +> - Tesla 2024 10-K: https://www.sec.gov/Archives/edgar/data/1318605/000162828025003063/tsla-20241231.htm +> - Yahoo Finance (market cap): https://finance.yahoo.com/quote/TSLA + +--- + +## 2. Revenue & Growth Signals + +- **FY2024 revenue:** $97.69B (+$917M / +~1% YoY vs. FY2023's $96.77B) — near-flat growth reflects pricing pressure. +- **FY2023 revenue:** $96.77B; **net income:** $14.97B (inflated by $6.54B valuation allowance release on deferred tax assets in Q4 2023). +- **FY2024 net income:** $7.09B — down $7.91B YoY, primarily due to the one-time tax benefit not repeating. +- **FY2024 automotive gross margin:** 18.4%; **total gross margin:** 17.9%. +- **Vehicle deliveries:** 1.81M in 2023 (+38% YoY); Q4 2024 alone exceeded 495,000 vehicles. +- **Delivery trend:** Growth has meaningfully slowed vs. 2022–2023 pace; 2024 full-year deliveries were approximately flat-to-slightly down vs. 2023. +- **FSD revenue:** $596M recognized in FY2024 from feature releases. +- **CapEx guidance:** Tesla expects capex to **exceed $11B in 2025** and each of the following two fiscal years — a massive investment cycle. + +> **Sources:** +> - Tesla 2024 10-K: https://www.sec.gov/Archives/edgar/data/1318605/000162828025003063/tsla-20241231.htm +> - Tesla Q4 2023 Deliveries: https://ir.tesla.com/press-release/tesla-vehicle-production-deliveries-and-date-financial-results-webcast-fourth-quarter-2023 +> - Tesla Q4 2024 Deliveries: https://ir.tesla.com/press-release/tesla-fourth-quarter-2024-production-deliveries-and-deployments + +--- + +## 3. Product vs. Product: Head-to-Head Comparisons + +### 3a. Tesla Cybertruck vs. Rivian R1T (Electric Pickup Trucks) + +| Spec / Attribute | Tesla Cybertruck (AWD) | Tesla Cybertruck (Cyberbeast) | Rivian R1T (Dual-Motor, Large Pack) | +|---|---|---|---| +| **First Deliveries** | Nov 30, 2023 | Nov 30, 2023 | Sep 2021 | +| **Starting MSRP** | ~$79,990 (AWD) | ~$102,240 | ~$69,900 | +| **EPA Range** | ~340 miles | ~320 miles | ~352 miles | +| **Towing Capacity** | ~11,000 lbs (AWD) | ~11,000 lbs | ~11,000 lbs | +| **0–60 mph** | ~4.1 s | ~2.6 s | ~3.0 s | +| **Payload** | ~2,500 lbs | ~2,500 lbs | ~1,760 lbs | +| **Design** | Angular stainless-steel exoskeleton | Same | Conventional truck body | +| **Off-Road Focus** | Moderate (air suspension, aggressive angles) | Moderate | Strong (adjustable air suspension, wade mode, gear tunnel) | +| **Charging Speed** | Up to 250 kW (NACS native) | 250 kW | Up to 220 kW (NACS adapter, native 2025+) | +| **Range Extender** | Available (+$16,000; up to 440+ miles) | N/A | Max Pack option (~410+ miles) | + +**Key Competitive Observations:** +- The Cybertruck launched two full years after the R1T, ceding Rivian first-mover advantage in the premium electric pickup segment. +- The Cyberbeast at $102,240 competes at the ultra-premium end; the AWD at ~$79,990 is directly competitive with R1T pricing. +- Rivian's **Gear Tunnel** storage, purpose-built camp kitchen integration, and dedicated **off-road overlanding ecosystem** (accessories, suspension tuning) resonate strongly with the outdoor/adventure buyer demographic that Tesla has struggled to fully penetrate. +- Cybertruck's radical stainless-steel design has drawn strong opinions — significant appeal to some buyers, significant aversion among others. +- Production ramp: Cybertruck production is still scaling; Rivian has had three-plus years of production learning. + +> **Sources:** +> - Tesla Cybertruck product page: https://www.tesla.com/cybertruck +> - InsideEVs Cybertruck pricing (2024 snapshot): https://insideevs.com/news/698701/tesla-cybertruck-official-price/ + +--- + +### 3b. Tesla Model X vs. Rivian R1S (Premium Electric SUV) + +| Spec / Attribute | Tesla Model X | Tesla Model X Plaid | Rivian R1S (Dual-Motor, Large Pack) | +|---|---|---|---| +| **Starting MSRP** | ~$79,990 | ~$99,990 | ~$77,700 | +| **EPA Range** | ~335 miles | ~335 miles | ~258–410 miles (config-dependent) | +| **Seating** | Up to 7 | Up to 7 | 7 seats | +| **0–60 mph** | ~3.8 s | ~2.5 s | ~3.0 s | +| **Towing Capacity** | ~5,000 lbs | ~5,000 lbs | ~7,700 lbs | +| **Key Features** | Falcon Wing doors, massive touchscreen, FSD available, Autopilot | All of the above + Tri-motor | Air suspension, off-road modes (wade/sand/snow), gear tunnel | +| **Off-Road Rating** | Street-focused | Street-focused | Genuine off-road capability | +| **Charging (NACS)** | Native | Native | Adapter (native 2025+) | + +**Key Competitive Observations:** +- The R1S **starts ~$2,000 cheaper** than the base Model X and offers **superior towing** (7,700 lbs vs. 5,000 lbs). +- The R1S at its **Max Pack** configuration reaches **~410 miles** of EPA range — matching or exceeding Model X. +- The Model X's Falcon Wing doors are a signature differentiator for urban premium buyers; the R1S's wide-opening tailgate and gear tunnel win in the outdoor/overlanding context. +- Model X **does not offer a meaningful off-road mode** or off-road suspension tuning; R1S is purpose-designed for both on- and off-road environments. +- Tesla Model X production volumes and scale far exceed the R1S, keeping wait times short for Model X buyers. + +> **Sources:** +> - Tesla Model X product page: https://www.tesla.com/modelx +> - Car and Driver 2025 R1S review: https://www.caranddriver.com/rivian/r1s-2025 +> - KBB 2025 R1S: https://www.kbb.com/rivian/r1s/2025/ +> - Rivian R1S product page: https://rivian.com/r1s + +--- + +### 3c. Tesla (Commercial / Fleet) vs. Rivian EDV + +| Attribute | Tesla | Rivian | +|---|---|---| +| **Commercial Van Product** | **None** — Tesla has no commercial delivery van | **EDV 500 & EDV 700** purpose-built electric delivery vans | +| **Anchor Customer** | Tesla Semi program (Class 8 semi-truck); limited Pepsi deployment | **Amazon** — 100,000-unit order (largest EV fleet order in history) | +| **Units Deployed (as of Jul 2024)** | N/A (no van) | **>15,000 EDVs** delivered to Amazon | +| **Feature Deployment** | N/A | Vision-Assisted Package Retrieval rolling out 2024–2025 | +| **Fleet Revenue** | No van revenue stream | Dedicated commercial segment revenue | + +**Key Competitive Observations:** +- Tesla has **no competitive product** in the last-mile electric delivery van category — this is a complete gap. +- Rivian's 100,000-unit Amazon commitment is a guaranteed revenue floor and provides enormous real-world fleet operating data. +- Tesla's Semi (Class 8) is not competitive with the EDV segment; it targets long-haul trucking, not last-mile delivery. +- This gives Rivian a **substantial commercial beachhead** that Tesla currently cannot challenge. + +> **Sources:** +> - Rivian EDV Wikipedia: https://en.wikipedia.org/wiki/Rivian_EDV +> - Amazon About Page (EDV program): https://www.aboutamazon.com/news/transportation/everything-you-need-to-know-about-amazons-electric-delivery-vans-from-rivian + +--- + +## 4. U.S. Market Share & Sales Volumes + +- **Tesla** remains the **#1 U.S. EV seller by a wide margin**, with ~57–62% U.S. EV market share in late 2025 per Cox Automotive data. +- U.S. EV market is growing but remains competitive; Tesla's share has faced gradual erosion as GM, Ford, Hyundai/Kia, and others ramp EV production. +- **Rivian** holds a materially smaller share — a single-digit percentage of the U.S. EV market — but is one of the few pure-play EV brands with meaningful consumer sales volume alongside Tesla. +- Tesla's **~1.8M+ global annual deliveries** vs. Rivian's ~**51,500–57,000 units/year** (2023–2024) illustrates the scale gap. + +> **Sources:** +> - Cox Automotive EV Market Monitor (Dec 2025): https://www.coxautoinc.com/insights-hub/ev-market-monitor-december-2025 +> - Tesla Q4 2023 Deliveries IR: https://ir.tesla.com/press-release/tesla-vehicle-production-deliveries-and-date-financial-results-webcast-fourth-quarter-2023 +> - Rivian Q4 2024 Production/Delivery newsroom: https://rivian.com/newsroom/article/rivian-releases-q4-2024-production-and-delivery-figures + +--- + +## 5. Pricing Strategy + +- Tesla has pursued an **aggressive, repeated price-cutting strategy** since late 2022, lowering prices on Model 3, Model Y, Model X, and Model S multiple times to defend market share. +- In **April 2024**, Tesla cut FSD (Supervised) pricing from **$12,000 to $8,000** in the U.S. and slashed prices across its lineup in China, Germany, and other global markets. +- These cuts **compressed margins** (automotive gross margin fell from ~25%+ in 2022 to ~18.4% in FY2024) but maintained volume leadership. +- **Ripple effect on Rivian:** Tesla's price cuts forced broad EV market repricing, putting pressure on Rivian to remain competitive on price despite having a much smaller production scale and a higher per-unit cost structure. Rivian cannot absorb margin compression the way Tesla can. +- Entry-level price comparison for the truck segment: **R1T starts ~$69,900** vs. **Cybertruck AWD ~$79,990** — Rivian currently holds a price advantage at entry. + +> **Sources:** +> - Reuters (Apr 2024 price cuts including FSD): https://www.reuters.com/business/autos-transportation/tesla-cuts-prices-across-its-line-up-china-2024-04-21 +> - Reuters (EV market pricing pressure, July 2024): https://www.reuters.com/business/autos-transportation/rough-road-ahead-for-us-ev-makers-despite-upbeat-quarterly-sales-2024-07-02/ +> - Tesla 2024 10-K (revenue & pricing commentary): https://www.sec.gov/Archives/edgar/data/1318605/000162828025003063/tsla-20241231.htm + +--- + +## 6. Software & Technology Differentiation + +### Tesla +| Capability | Status | +|---|---| +| **Full Self-Driving (FSD Supervised)** | Available; $8,000 purchase / ~$99/mo subscription; $596M revenue in FY2024; continues iterative AI-based OTA improvements | +| **Autopilot** | Included on all new vehicles; highway lane-keeping, adaptive cruise | +| **Over-the-Air (OTA) Updates** | Industry-leading; features, performance, and safety delivered via OTA | +| **In-Vehicle Software** | Proprietary Tesla OS; large central touchscreen; gaming, entertainment ecosystem | +| **Supercharger Network** | **8,182 stations / 77,682 connectors globally** (Q4 2025); world's largest DC fast-charging network | +| **NACS Standard** | Tesla created NACS; now industry standard — major OEMs (Ford, GM, Rivian, Honda, etc.) adopting | +| **Robotaxi / AI Ambitions** | Cybercab robotaxi announced; Dojo supercomputer; FSD v13+ development ongoing | + +### Rivian +| Capability | Status | +|---|---| +| **ADAS / Driver Assist** | Highway Assist (lane-centering + adaptive cruise); less advanced than FSD but competitive with industry peers | +| **OTA Updates** | Supported; regular software improvements delivered wirelessly | +| **Adventure Network** | Rivian's proprietary DC fast-charging network; much smaller than Supercharger but growing; targeted to adventure destinations | +| **NACS Adoption** | Announced June 2023; Supercharger access via adapter since **April 2024**; native NACS port expected 2025+ | +| **In-Vehicle Software** | Purpose-built outdoor/adventure UX; integration with outdoor activity planning | + +**Key Observations:** +- Tesla's **software moat** is substantial: FSD is years ahead of Rivian's ADAS in capability and monetization. +- Tesla's **Supercharger network advantage** is significant but diminishing — Rivian owners now have adapter-based access, and NACS adoption means all future Rivian vehicles will natively access Superchargers. +- Rivian's software is well-regarded for its use-case fit (adventure/outdoor) but does not attempt to compete with FSD. + +> **Sources:** +> - Tesla 2024 10-K (FSD revenue): https://www.sec.gov/Archives/edgar/data/1318605/000162828025003063/tsla-20241231.htm +> - Tesla Supercharger network (Q4 2025): https://evchargingstations.com/chargingnews/tesla-supercharging-network-expansion-record-q4-2025 +> - Tesla NACS page: https://www.tesla.com/NACS +> - Rivian NACS announcement (Jun 2023): https://rivian.com/newsroom/article/rivian-accelerates-electrification-through-adoption-of-north-american-charging-standard-and-access-to-teslas-supercharger-network +> - Rivian Supercharger adapter availability (Apr 2024): https://ev-lectron.com/en-mx/blogs/blog/when-will-rivian-have-nacs +> - Car and Driver NACS compatibility tracker: https://www.caranddriver.com/news/a44388939/tesla-nacs-charging-network-compatibility/ + +--- + +## 7. Manufacturing Scale & Capacity + +### Tesla +- Operates **Gigafactories** in Fremont CA, Austin TX (Gigafactory Texas), Berlin Germany, and Shanghai China. +- Produced **~1.85M vehicles in 2023** and a similar volume in 2024 (slight decrease due to model transitions and demand normalization). +- **CapEx:** $11.34B in FY2024; guided to **exceed $11B annually for the next three fiscal years** — supporting new models, energy storage, and AI infrastructure. +- Cybertruck production ramping at Gigafactory Texas through 2024–2025. +- Cost-per-vehicle improvements have been a hallmark of Tesla's manufacturing efficiency, though recent price cuts have squeezed margins back. + +### Rivian +- Single production facility: **Normal, Illinois** plant (former Mitsubishi facility). +- **Annual production capacity:** ~150,000 units (current line); constrained by supply chain and retooling. +- FY2024 produced approximately **49,000–52,000 vehicles** — well below plant capacity, reflecting demand ramp and retooling. +- **R2 platform:** New, lower-cost vehicle platform planned; Rivian secured a new **Greenfield plant in Georgia** (partially paused/phased to manage cash), with manufacturing also to be supported by Volkswagen JV technology sharing. +- **Q4 2024 gross profit:** $170M — first meaningful positive gross profit, driven by variable cost improvements and regulatory credit revenue. +- **Battery manufacturing expansion** planned for 2025 to support cost reductions. + +> **Sources:** +> - Tesla 2024 10-K (capex, production): https://www.sec.gov/Archives/edgar/data/1318605/000162828025003063/tsla-20241231.htm +> - Rivian Q4 2024 earnings press release: https://www.sec.gov/Archives/edgar/data/1874178/000187417825000004/ex-991pressrelease4q24earn.htm +> - Rivian Q4 2024 production/delivery figures: https://rivian.com/newsroom/article/rivian-releases-q4-2024-production-and-delivery-figures +> - Rivian 2024 10-K: https://www.sec.gov/Archives/edgar/data/1874178/000187417825000007/rivn-20241231.htm +> - Rivian battery manufacturing expansion (2025): https://www.marketresearchfuture.com/news/rivian-to-expand-battery-manufacturing-facility-in-2025 + +--- + +## 8. Financial Position Comparison + +| Metric | Tesla (FY2024) | Rivian (FY2024) | +|---|---|---| +| **Revenue** | $97.69B | ~$4.97B (est.) | +| **Net Income / (Loss)** | $7.09B profit | Multi-billion net loss | +| **Automotive Gross Margin** | 18.4% | Approaching breakeven (first Q4 gross profit of ~$170M in Q4 2024) | +| **Cash & Investments** | $36.56B | ~$7–9B (incl. VW JV proceeds) | +| **Total Debt** | $7.91B | ~$5–6B | +| **Key Liquidity Event** | Ongoing FCF generation | **Volkswagen $5B JV** (announced June 2024) | +| **Regulatory Credits** | Not a primary revenue driver | $325M recognized in FY2024 (MY2022–2023 credits) | +| **Path to Profitability** | Profitable; defending margin | Targeting positive gross profit sustained; variable cost reduction trajectory | + +**Key Observations:** +- Tesla's **$36.56B cash position** provides enormous buffer for capex, R&D, price cuts, and market share battles. +- Rivian's **Volkswagen $5B JV** (announced June 2024) was a critical liquidity and strategic technology event — providing capital to fund the R2 launch and ECU/software architecture development with VW's backing. +- Rivian's **Q4 2024 $170M gross profit** is a significant milestone but the company remains in deep net loss territory when accounting for SG&A, R&D, and interest. +- The financial asymmetry is stark: Tesla can sustain a prolonged price war; Rivian cannot. + +> **Sources:** +> - Tesla 2024 10-K: https://www.sec.gov/Archives/edgar/data/1318605/000162828025003063/tsla-20241231.htm +> - Rivian Q4 2024 press release: https://www.sec.gov/Archives/edgar/data/1874178/000187417825000004/ex-991pressrelease4q24earn.htm +> - Rivian 2024 10-K: https://www.sec.gov/Archives/edgar/data/1874178/000187417825000007/rivn-20241231.htm +> - Rivian FY2024 financial results newsroom: https://rivian.com/newsroom/article/rivian-releases-fourth-quarter-full-year-2024-financial-results + +--- + +## 9. Key Strengths of Tesla Relative to Rivian + +1. **Overwhelming scale advantage:** ~1.8M+ annual deliveries vs. Rivian's ~50,000 — a ~36x production volume gap enabling far lower per-unit manufacturing costs over time. +2. **Profitable balance sheet and cash generation:** $36.56B cash, $7.09B net income, and strong FCF vs. Rivian's ongoing losses — Tesla can absorb pricing pressure and invest aggressively without capital market dependency. +3. **World's largest charging network (Supercharger):** 8,182 stations / 77,682 connectors globally — a structural moat for range anxiety and the reason NACS became the industry standard. +4. **Software and AI leadership:** FSD is the most advanced consumer autonomy suite commercially available; $596M in FSD revenue demonstrates real monetization; Dojo AI, robotaxi program, and OTA capabilities are years ahead of Rivian. +5. **Brand recognition and global distribution:** Tesla is the world's most recognized EV brand with a direct-sales model, service centers, and brand presence in 40+ countries — Rivian is essentially U.S.-only at this stage. +6. **Multi-product breadth:** Model S/3/X/Y/Cybertruck/Semi covers luxury sedan, mass-market sedan, luxury SUV, mass-market crossover, pickup, and commercial trucks — far broader than Rivian's two consumer models (R1T, R1S) plus EDV. +7. **Manufacturing efficiency and CapEx muscle:** Tesla's Gigafactory footprint and $11B+ annual CapEx investment capacity means it can out-invest Rivian on future product development and plant construction. + +--- + +## 10. Key Weaknesses of Tesla Relative to Rivian (Rivian's Advantages) + +1. **No purpose-built adventure/off-road DNA:** Tesla's vehicles are engineered for performance and efficiency on roads; the Cybertruck's polarizing stainless design and relatively shallow off-road ecosystem do not match the R1T/R1S's "born for the outdoors" positioning, Gear Tunnel, wade mode, camp kitchen integration, or accessories marketplace. +2. **Zero presence in commercial delivery vans:** Tesla has no product competing with the Rivian EDV — Rivian's 100,000-unit Amazon commitment and >15,000 deployed units represent a commercial revenue stream and fleet learning advantage Tesla cannot replicate without a multi-year product development cycle. +3. **Cybertruck design risk:** The Cybertruck's radical stainless-steel exoskeleton is a double-edged sword — it alienates a meaningful portion of traditional truck buyers. R1T's conventional truck form factor has broader visual acceptance in key markets (rural, suburban, fleet). +4. **Brand perception / CEO political risk:** Elon Musk's high-profile political activities in 2024–2025 have generated boycotts and brand backlash in key markets (Europe, blue-state U.S.), contributing to demand softness. Rivian's brand is politically neutral and has strong goodwill among its target demographic. +5. **Towing capacity gap (SUV segment):** Model X tows ~5,000 lbs vs. R1S's ~7,700 lbs — a meaningful disadvantage for buyers who need to tow trailers, boats, or campers, which is core to the adventure-lifestyle use case. +6. **Interior and fit-and-finish critique:** Despite improvements, Tesla interiors (particularly the Cybertruck's) have faced criticism for build quality, panel gaps, and minimalist ergonomics; Rivian's interiors receive strong reviews for material quality, tactile controls, and purposeful design. +7. **R2 platform price disruption risk:** Rivian's upcoming R2 (~$45,000 entry price) could significantly expand Rivian's addressable market into segments where Tesla currently dominates (Model Y price point), a competitive vector Tesla does not have a ready counter to in the adventure segment. + +--- + +## 11. Recent Strategic Moves (Last 12 Months — Tesla) + +| Date | Move | Significance vs. Rivian | +|---|---|---| +| **Nov 2023 – ongoing** | Cybertruck production ramp at Gigafactory Texas | Direct competitive response to R1T; still ramping through 2024–2025 | +| **Apr 2024** | Global price cuts across lineup; FSD cut from $12,000 → $8,000 | Forces pricing pressure across EV market, squeezes Rivian margins | +| **2024** | ~10%+ global workforce reduction (~14,000+ employees laid off) | Cost restructuring; signals focus on efficiency and profitability amid softer demand | +| **2024** | $596M FSD revenue recognition; FSD v12/v13 AI-based rollout | Reinforces software monetization moat | +| **2024–2025** | Supercharger network expansion to 8,182 stations / 77,682 connectors | Ongoing infrastructure dominance; NACS adoption gives Tesla de facto standard status | +| **2024 (ongoing)** | Cybercab (robotaxi) unveiled; autonomous vehicle strategy disclosed | Long-term platform bet; not directly competitive with Rivian today | +| **FY2024** | $11.34B CapEx deployed; $11B+ guided for 2025+ | Massive reinvestment cycle; R&D in AI, new models, energy storage | +| **Q4 2025** | $4.4B GAAP operating income; $3.8B GAAP net income for full-year 2025 | Demonstrates financial recovery and margin stabilization after 2024 compression | + +> **Sources:** +> - Tesla Q4 2025 Update Deck: https://assets-ir.tesla.com/tesla-contents/IR/TSLA-Q4-2025-Update.pdf +> - Reuters (global price cuts, Apr 2024): https://www.reuters.com/business/autos-transportation/tesla-cuts-prices-across-its-line-up-china-2024-04-21 +> - Tesla 2024 10-K: https://www.sec.gov/Archives/edgar/data/1318605/000162828025003063/tsla-20241231.htm + +--- + +## 12. Overall Competitive Assessment + +Tesla is Rivian's most formidable competitor by virtually every financial and scale metric, but the two companies do not fully overlap in target customer. Tesla's strength is **mass-market electrification, software monetization, charging infrastructure, and financial staying power.** Rivian's differentiated positioning in **adventure/outdoor lifestyle, genuine off-road capability, and last-mile commercial delivery** creates defensible niches where Tesla is currently absent or structurally weak. + +The critical risk for Rivian is Tesla's **ability to sustain a prolonged price war** — Tesla's $36.56B cash cushion and positive net income mean it can subsidize vehicle prices below Rivian's cost basis indefinitely. The critical risk for Tesla in this segment is **brand erosion** due to CEO-driven political controversies, Cybertruck design polarization, and a lack of true adventure-segment product depth. + +**Verdict:** Tesla wins on scale, software, financials, and brand scale. Rivian wins on niche positioning, adventure credibility, commercial van dominance, and towing capacity in the SUV segment. The VW partnership and R2 launch are Rivian's most critical near-term strategic catalysts to widen the addressable market and reduce cost disadvantages. + +--- + +*All data sourced from SEC filings, company IR pages, and third-party automotive data providers as cited inline. Financial figures are as of the most recent available reporting period (FY2024 / Q4 2024 unless noted). Live figures (market cap) subject to change.* diff --git a/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/corporate-profile.md b/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/corporate-profile.md new file mode 100644 index 0000000..de2d3b8 --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/corporate-profile.md @@ -0,0 +1,169 @@ +# Corporate Profile: Rivian Automotive, Inc. + +**Prepared:** May 2026 +**Sources:** SEC filings, Rivian investor relations, proxy statements, and news sources (citations inline) + +--- + +## 1. Legal Entity & Incorporation + +| Field | Detail | +|---|---| +| **Legal Name** | Rivian Automotive, Inc. | +| **Jurisdiction** | Delaware (General Corporation Law) | +| **Incorporation Date** | March 26, 2015 | +| **EIN** | 47-3544981 | +| **SEC File No.** | 001-41042 | +| **Stock Exchange** | Nasdaq Global Select Market | +| **Ticker** | RIVN | +| **IPO Date** | November 10, 2021 | + +> Sources: [SEC S-1 Filing](https://www.sec.gov/Archives/edgar/data/1874178/000119312521289903/d157488ds1.htm) · [SEC 10-K (FY2024)](https://www.sec.gov/Archives/edgar/data/1874178/000187417825000007/rivn-20241231.htm) · [Certificate of Incorporation](https://www.sec.gov/Archives/edgar/data/1874178/000119312521289903/d157488dex31.htm) + +--- + +## 2. Founding History & Founders + +- **Founded:** June 2009, in Rockledge, Florida, by **Robert "RJ" Scaringe** — originally under the name **Mainstream Motors**. +- The company was **renamed Rivian Automotive in 2011**, refocusing on electric adventure vehicles and commercial delivery vans. +- **RJ Scaringe** holds a B.S. from Rensselaer Polytechnic Institute and an M.S. and Ph.D. in Mechanical Engineering from the MIT Sloan Automotive Laboratory. He was the sole founder and remains the only original founder credited. +- Scaringe was designated **Board Chair in March 2018**, consolidating executive and board leadership. + +> Sources: [SEC S-1 Filing](https://www.sec.gov/Archives/edgar/data/1874178/000119312521289903/d157488ds1.htm) · [Wikipedia – Rivian](https://en.wikipedia.org/wiki/Rivian) · [Wikipedia – RJ Scaringe](https://en.wikipedia.org/wiki/RJ_Scaringe) · [Matrix BCG](https://matrixbcg.com/blogs/brief-history/rivian) + +--- + +## 3. Headquarters & Major Locations + +| Location | Purpose | +|---|---| +| **14600 Myford Road, Irvine, CA 92606** | Principal Executive Offices (HQ) | +| **Normal, Illinois** | First manufacturing facility — R1T, R1S, Commercial Delivery Van (RCV) production; R2 production launched April 2026 | +| **Stanton Springs North, Morgan & Walton Counties, Georgia** | Future manufacturing campus (~1,800–2,000 acres); Phase 1 construction expected to begin 2026; customer production anticipated 2028; planned capacity expanded to 300,000 vehicles/year | + +> Sources: [Rivian Our Company](https://rivian.com/our-company) · [SEC 8-K (Mar 18, 2026)](https://www.sec.gov/Archives/edgar/data/1874178/000110465926031794/tm269292d1_8k.htm) · [Georgia.org – Rivian](https://georgia.org/rivian) · [Clayco – Rivian Manufacturing Plant](https://claycorp.com/project/rivian-manufacturing-plant) · [Investing.com – Georgia Capacity](https://ca.investing.com/news/stock-market-news/rivian-increases-georgia-plant-capacity-to-300000-vehicles-93CH-4601214) + +--- + +## 4. Key Executives + +| Name | Title | Notes | +|---|---|---| +| **Robert J. Scaringe** | Founder & Chief Executive Officer; Chairman of the Board | Founded company 2009; Board Chair since Mar 2018 | +| **Claire McDonough** | Chief Financial Officer | Also board member of Rivian and Volkswagen Group Technologies JV | +| **Javier Varela** | Chief Operations Officer | — | +| **Michael (Mike) Callahan** | Chief Administrative Officer & Chief Legal Officer | Also board member of Mind Robotics, Inc. | +| **Greg Revelle** | Chief Customer Officer | Appointed January 12, 2026 | + +> Sources: [Rivian Our Company](https://rivian.com/our-company) · [Rivian 2026 Proxy (via StockTitan)](https://www.stocktitan.net/sec-filings/RIVN/def-14a-rivian-automotive-inc-de-definitive-proxy-statement-3c11f30d38d2.html) · [Rivian Newsroom – Greg Revelle](https://rivian.com/newsroom/article/rivian-hires-greg-revelle-chief-customer-officer) · [LinkedIn – Claire McDonough](https://www.linkedin.com/posts/claire-rauh-mcdonough-5291b946_rivian-starts-production-of-r2-suvs-deliveries-activity-7452764774544744448-igHq) + +--- + +## 5. Board of Directors + +| Director | Classification | Notable Role | +|---|---|---| +| **Robert J. Scaringe** | Class I | Chair; Founder & CEO | +| **Karen Boone** | Class II | Lead Independent Director | +| **Peter Krawiec** | Class I | Independent Director | +| **Sanford Schwartz** | Class I | Independent Director | +| **Jay Flatley** | Class III | Independent Director | +| **John Krafcik** | Class III | Independent Director | +| **Aidan Gomez** | Class II | Joined April 21, 2025; AI expertise | + +**Note:** Rose Marcario resigned from the board, effective January 1, 2026. + +> Sources: [Rivian 2026 Proxy (via StockTitan)](https://www.stocktitan.net/sec-filings/RIVN/def-14a-rivian-automotive-inc-de-definitive-proxy-statement-3c11f30d38d2.html) · [Rivian Newsroom – Aidan Gomez](https://rivian.com/en-NL/newsroom/article/aidan-gomez-joins-rivians-board-of-directors) · [Simply Wall St – Management](https://simplywall.st/stocks/us/automobiles/nasdaq-rivn/rivian-automotive/management) + +--- + +## 6. Employee Headcount + +| Year-End | Headcount | YoY Change | +|---|---|---| +| 2022 | ~14,120 | +35.5% | +| 2023 | 16,790 | +18.9% | +| 2024 | 14,861 | **–11.5%** | +| 2025 | 15,232 | +2.5% | + +**Trend:** Headcount peaked in 2023, fell sharply in 2024 amid cost-reduction efforts, then recovered modestly in 2025 — the first net increase since 2023, driven in part by Volkswagen joint venture consolidation offsetting other workforce reductions. + +> Sources: [Macrotrends – Rivian Employee Count](https://www.macrotrends.net/stocks/charts/RIVN/rivian-automotive/number-of-employees) · [MLQ.ai – Rivian Employee Count](https://mlq.ai/stocks/RIVN/employee-count) · [Eletric-vehicles.com – 2025 Headcount](https://eletric-vehicles.com/rivian/rivian-increases-headcount-in-2025-as-vws-joint-venture-consolidation-offsets-layoffs/) + +--- + +## 7. Corporate Structure & Ownership + +### Capital Structure +- **Dual-class stock:** Class A common stock (publicly traded on Nasdaq: RIVN) and Class B common stock (not listed). Class B shares carry additional voting rights. +- Rivian has **no parent company**; it is an independent public company. + +### Major Shareholders (as of 2026 Proxy; beneficial owners ≥5% of Class A) + +| Shareholder | Class A Ownership | Notes | +|---|---|---| +| **Amazon.com NV Investment Holdings LLC** | ~12.9% | Strategic customer (delivery van fleet) | +| **Volkswagen International America, Inc.** | ~11.7% | Strategic partner; subscription agreement signed Mar 18, 2026 | +| **Global Oryx Company Limited** | ~9.0% | Saudi Arabia–linked investment entity | +| **The Vanguard Group** | ~5.4% | Passive institutional investor | +| **BlackRock, Inc.** | ~4.0% (est.) | Institutional investor | +| **Robert J. Scaringe (Insider)** | ~1.2% Class A + Class B | ~3.8% combined voting power | + +> Sources: [Rivian 2026 Proxy (via StockTitan)](https://www.stocktitan.net/sec-filings/RIVN/def-14a-rivian-automotive-inc-de-definitive-proxy-statement-3c11f30d38d2.html) · [Wikipedia – Rivian](https://en.wikipedia.org/wiki/Rivian) · [Quiver Quant – Institutional Ownership](https://www.quiverquant.com/stock/RIVN/institutions/) · [SEC 8-K Mar 2026](https://www.sec.gov/Archives/edgar/data/1874178/000110465926031794/tm269292d1_8k.htm) + +--- + +## 8. Subsidiaries & Affiliates + +### Wholly-Owned Subsidiaries +- **Rivian Holdings, LLC** +- **Rivian Adventure Holdings I, LLC** +- **Hunter Excelsior Holdings, LLC** +- Additional entities listed in SEC Exhibit 21 filings. + +### Joint Ventures & Affiliated Entities +| Entity | Rivian Stake | Description | +|---|---|---| +| **Rivian and Volkswagen Group Technologies, LLC** | Joint venture | Technology co-development with Volkswagen Group; multiple entities including a Canada entity | +| **Also, Inc.** | ~35.3% | Micromobility spin-out from Rivian (2025); retains minority stake | +| **Mind Robotics, Inc.** | ~37.6% | Industrial robotics entity formed 2025; RJ Scaringe serves as Chairman; Mike Callahan is a board member | + +> Sources: [SEC Exhibit 21 – Subsidiaries](https://www.sec.gov/Archives/edgar/data/1874178/000187417822000008/ex-211subsidiaries.htm) · [Rivian Legal Entities – JV](https://rivian.com/legal/jv-entities) · [Rivian 2026 Proxy (via StockTitan)](https://www.stocktitan.net/sec-filings/RIVN/def-14a-rivian-automotive-inc-de-definitive-proxy-statement-3c11f30d38d2.html) + +--- + +## 9. Recent Major Organizational Changes (2025–2026) + +| Date | Event | +|---|---| +| **2025** | Spun out micromobility business into **Also, Inc.**; Rivian retains ~35.3% ownership. | +| **2025** | Formed **Mind Robotics, Inc.** (industrial robotics); Rivian retains ~37.6% ownership. | +| **April 21, 2025** | **Aidan Gomez** (AI expert) joined the Board of Directors. | +| **January 1, 2026** | **Rose Marcario** resigned from the Board of Directors. | +| **January 12, 2026** | **Greg Revelle** appointed Chief Customer Officer ahead of R2 launch. | +| **March 18, 2026** | Volkswagen subscription agreement finalized, giving VW an **~11.7% stake** in Rivian. | +| **April 2026** | **R2 production launched** at the Normal, IL facility. Q1 2026: 10,236 vehicles produced, 10,365 delivered. Full-year 2026 guidance: 62,000–67,000 deliveries. | +| **Ongoing** | Georgia manufacturing campus (Stanton Springs North) capacity expanded to 300,000 vehicles/year; Phase 1 construction to begin 2026; production expected 2028. | + +> Sources: [Rivian Newsroom – Greg Revelle](https://rivian.com/newsroom/article/rivian-hires-greg-revelle-chief-customer-officer) · [Rivian Newsroom – Aidan Gomez](https://rivian.com/en-NL/newsroom/article/aidan-gomez-joins-rivians-board-of-directors) · [Simply Wall St](https://simplywall.st/stocks/us/automobiles/nasdaq-rivn/rivian-automotive/management) · [SEC 8-K Mar 2026](https://www.sec.gov/Archives/edgar/data/1874178/000110465926031794/tm269292d1_8k.htm) · [Electrek – R2 Production](https://electrek.co/2026/04/22/rivian-r2-starts-production-tornado-deliveries-spring/) · [Rivian 2026 Proxy](https://www.stocktitan.net/sec-filings/RIVN/def-14a-rivian-automotive-inc-de-definitive-proxy-statement-3c11f30d38d2.html) · [Investing.com – Georgia Capacity](https://ca.investing.com/news/stock-market-news/rivian-increases-georgia-plant-capacity-to-300000-vehicles-93CH-4601214) + +--- + +## 10. Summary Snapshot + +| Attribute | Value | +|---|---| +| Legal Name | Rivian Automotive, Inc. | +| Founded | June 2009 (as Mainstream Motors); renamed Rivian 2011 | +| Incorporated | March 26, 2015 (Delaware) | +| IPO | November 10, 2021 (Nasdaq: RIVN) | +| HQ | Irvine, California | +| CEO | Robert J. Scaringe (Founder) | +| Employees (2025) | 15,232 | +| Major Strategic Shareholders | Amazon (~12.9%), Volkswagen (~11.7%), Global Oryx (~9.0%) | +| Key Products | R1T (pickup), R1S (SUV), R2 (upcoming SUV), Commercial Delivery Van (RCV) | +| Key JV | Rivian & Volkswagen Group Technologies, LLC | + +--- + +*This profile was compiled from public SEC filings, corporate press releases, proxy statements, and reputable financial data sources. All figures are as of the most recently available public disclosures (through May 2026).* diff --git a/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/financial-health.md b/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/financial-health.md new file mode 100644 index 0000000..ec6dfbc --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/financial-health.md @@ -0,0 +1,297 @@ +# Rivian Automotive (NASDAQ: RIVN) — Financial Health Report +**Prepared:** April 2026 | **Data coverage:** Through FY 2025 (full-year results released) + +> **Methodology note:** Figures drawn from Rivian press releases, SEC filings, DOE announcements, and reputable financial aggregators. Where a figure comes from an aggregator (Yahoo Finance, Macrotrends, PitchBook, etc.) rather than a primary company filing, it is flagged as *[est.]* (estimated / third-party). All confirmed figures are sourced to Rivian IR/newsroom or SEC filings. + +--- + +## 1. Pre-IPO Funding History + +Rivian secured approximately **10 rounds of private financing** from its founding through its 2021 IPO, raising well over **$10.5 billion** in private capital before going public. + +| Date | Amount | Lead Investor(s) | Notable Co-investors | Notes | +|------|--------|-----------------|----------------------|-------| +| 2011–2012 | Undisclosed | R.J. Scaringe / early angels | — | Early seed-stage Form D filings | +| Dec 2017 | Undisclosed | Sumitomo Corporation | — | Strategic investment | +| May 2018 | ~$200M | Standard Chartered | — | Debt financing | +| Feb 2019 | $700M | **Amazon** | — | Amazon led; strategic anchor investment | +| Apr 2019 | $500M | **Ford Motor Company** | — | Pre-money valuation ~$4.5B | +| Sep 2019 | $350M | **Cox Automotive** | — | Total 2019 raises: ~$1.55B | +| Dec 2019 | $1.3B | **T. Rowe Price** | Amazon, Ford | — | +| Jul 2020 | $2.5B | T. Rowe Price-associated investors | — | — | +| Jan 2021 | $2.65B | **T. Rowe Price** | Fidelity, Coatue, D1 Capital, BlackRock-managed funds, Amazon Climate Pledge Fund, Abdul Latif Jameel (ALJ), Soros Fund Mgmt | Implied valuation ~$28B *[est., Bloomberg report]* | +| Jul 2021 | $2.5B | **Amazon Climate Pledge Fund**, D1 Capital, Ford | T. Rowe Price, Coatue, Fidelity | Final pre-IPO round | + +**Sources:** +- Amazon $700M round: [NYT, Feb 15 2019](https://www.nytimes.com/2019/02/15/business/rivian-amazon.html) | [Wikipedia – Rivian](https://en.wikipedia.org/wiki/Rivian) +- $2.65B Jan 2021 round: [Rivian Newsroom](https://rivian.com/newsroom/article/rivian-announces-2-65-billion-investment-round) | [CNBC](https://www.cnbc.com/2021/01/19/ev-start-up-rivian-raises-2point65-billion-in-new-funding-round-led-by-t-rowe-price.html) +- Full funding timeline: [PitchBook – Rivian IPO Timeline](https://pitchbook.com/news/articles/rivian-ipo-timeline-electric-vehicles) | [Wikipedia – Rivian](https://en.wikipedia.org/wiki/Rivian) + +--- + +## 2. IPO Details + +| Item | Detail | +|------|--------| +| **IPO Pricing Date** | November 9, 2021 | +| **First Trading Day** | November 10, 2021 | +| **Exchange** | Nasdaq (ticker: **RIVN**) | +| **IPO Price** | **$78.00 per share** | +| **Shares Offered** | 153 million shares | +| **Gross Proceeds** | **~$11.9 billion** | +| **First-Day Close** | $100.73 per share | +| **First-Day Market Cap** | Just under **$100 billion** | +| **IPO Valuation (at offer price)** | ~$66.5 billion (Wikipedia) / ~$77 billion (PitchBook) | + +> **Note:** The difference in IPO valuation figures reflects whether fully diluted share count or basic shares outstanding is used. PitchBook's ~$77B figure is the more commonly cited enterprise-valuation basis. + +**Sources:** +- [Rivian Investor Relations](https://rivian.com/investors) +- [PitchBook – Rivian IPO](https://pitchbook.com/news/articles/rivian-ipo-timeline-electric-vehicles) +- [Wikipedia – Rivian](https://en.wikipedia.org/wiki/Rivian) + +--- + +## 3. Market Capitalization (Historical & Current) + +| Period | Market Cap | +|--------|-----------| +| IPO Day (Nov 10, 2021) | ~$100B (first-day close) | +| Q2 2024 (Jun 30, 2024) | ~$13.4B *[est., Macrotrends]* | +| Q3 2024 (Sep 30, 2024) | ~$11.4B *[est., Macrotrends]* | +| Q4 2024 (Dec 31, 2024) | ~$13.5B *[est., Macrotrends]* | +| End of 2025 | ~$25.6B *[est., Macrotrends]* | +| March 27, 2026 | ~$21.7B *[est., Macrotrends]* | +| April 2026 (current) | ~$21.4B *[est., CompaniesMarketCap]* | + +**Sources:** +- [Macrotrends – RIVN Market Cap History](https://www.macrotrends.net/stocks/charts/RIVN/rivian-automotive/market-cap) +- [CompaniesMarketCap – Rivian](https://companiesmarketcap.com/rivian/marketcap) +- [PitchBook – Rivian Profile](https://pitchbook.com/profiles/company/88997-59) + +--- + +## 4. Revenue + +### Annual Revenue + +| Fiscal Year | Revenue | YoY Change | +|-------------|---------|-----------| +| FY 2023 | ~$4.43B *[est., Macrotrends]* | — | +| **FY 2024** | **$4.970B** ✅ | +12.1% | +| **FY 2025** | **$5.387B** ✅ | +8.4% | + +### Q4 Revenue Detail + +| Quarter | Revenue | Notes | +|---------|---------|-------| +| Q4 2024 | Part of FY 2024 $4.97B total | Record quarter; driven by regulatory credit sales, R1 Tri-Motor ASP increases, software/services growth | +| Q4 2025 | **$1.286B** ✅ | −25.8% YoY; automotive revenues $839M (−45% YoY) driven by $270M decrease in regulatory credit sales, lower deliveries, higher EDV mix; software & services $447M (+109% YoY) | + +**Sources:** +- [Rivian FY 2025 Earnings Release](https://rivian.com/newsroom/article/rivian-releases-fourth-quarter-full-year-2025-financial-results) +- [Rivian FY 2024 Earnings Release](https://rivian.com/newsroom/article/rivian-releases-fourth-quarter-full-year-2024-financial-results) +- [Macrotrends – RIVN Revenue](https://www.macrotrends.net/stocks/charts/RIVN/rivian-automotive/revenue) + +--- + +## 5. Gross Margin / Gross Profit (Loss) + +This is a **critical milestone story** for Rivian: the company achieved its **first-ever positive gross profit in Q4 2024**. + +| Period | Consolidated Gross Profit | Automotive GP | Software & Services GP | +|--------|--------------------------|---------------|----------------------| +| FY 2024 | **$(1,200)M** (loss) | $(1,207)M | $7M | +| Q4 2024 | **$170M** ✅ *(first-ever positive)* | $110M | $60M | +| Q1 2025 | Positive (reported) | — | — | +| Q2 2025 | Positive (reported) | — | — | +| Q3 2025 | **$24M** ✅ | $(130)M | $154M | +| Q4 2025 | **$120M** ✅ | $(59)M | $179M | +| **FY 2025** | **$144M** ✅ | $(432)M | $576M | + +> **Key insight:** The swing to positive consolidated gross profit in 2025 ($144M vs. −$1.2B in 2024) — a **>$1.3B improvement** — is almost entirely driven by the Volkswagen Group joint venture generating software and services revenue ($576M in FY 2025). Automotive gross margin remains negative. + +**Sources:** +- [Rivian FY 2025 Earnings Release](https://rivian.com/newsroom/article/rivian-releases-fourth-quarter-full-year-2025-financial-results) +- [Rivian Q3 2025 Earnings Release](https://rivian.com/newsroom/article/rivian-releases-third-quarter-2025-financial-results) +- [Rivian FY 2024 Earnings Release](https://rivian.com/newsroom/article/rivian-releases-fourth-quarter-full-year-2024-financial-results) + +--- + +## 6. Net Losses + +| Fiscal Year | Net Loss | Source | +|-------------|---------|--------| +| FY 2024 | **$(4.689)B** | Wikipedia / secondary aggregation; confirm vs. 10-K | +| FY 2025 | *Full-year GAAP net loss not explicitly quoted in press release; refer to 2025 Form 10-K* | [SEC 10-K filing](https://www.sec.gov/ix?doc=/Archives/edgar/data/0001874178/000187417826000008/rivn-20251231.htm) | +| TTM (trailing 12 months, as of mid-2025) | **$(3.85)B** *[est., Yahoo Finance Key Statistics]* | — | + +**Sources:** +- [Wikipedia – Rivian](https://en.wikipedia.org/wiki/Rivian) (FY 2024) +- [Yahoo Finance – RIVN Key Statistics](https://finance.yahoo.com/quote/RIVN/key-statistics) +- [Rivian SEC 10-K 2025](https://rivian.com/investors) (for definitive FY 2025 figure) + +--- + +## 7. Cash Burn Rate + +| Metric | Value | Source | +|--------|-------|--------| +| Operating Cash Flow (TTM) | **$(635)M** *[est., Yahoo Finance]* | Yahoo Finance Key Stats | +| Operating Cash Flow (TTM, mid-2025) | **~$(640)M** *[est., Yahoo Finance aggregator]* | — | + +> **Context:** Operating cash burn has improved materially. As Rivian's gross profit turned positive and the VW JV began generating cash-paying software services revenue, the trajectory is improving. Management guidance frames the combination of VW JV funding, DOE loan, and balance sheet cash as sufficient to fund operations through R2 ramp and beyond. + +**Sources:** +- [Yahoo Finance – RIVN Key Statistics](https://finance.yahoo.com/quote/RIVN/key-statistics) +- [Rivian FY 2024 Earnings Release](https://rivian.com/newsroom/article/rivian-releases-fourth-quarter-full-year-2024-financial-results) + +--- + +## 8. Cash & Liquidity Position + +| Item | Amount | Source | +|------|--------|--------| +| Total Cash, Equivalents & Short-Term Investments | **~$7.1–7.2B** *[est., Yahoo Finance / aggregators]* | Yahoo Finance Key Stats (mrq) | +| Total Cash (mrq per Yahoo Finance) | **$7.09B–$7.18B** *[est.]* | Yahoo Finance | + +### Additional Liquidity Access (not yet drawn / conditional): +- **Volkswagen Group JV:** $1B funded in 2025 (confirmed); up to ~$10B in aggregate incremental capital contemplated between the VW JV and DOE loan. +- **DOE ATVM Loan:** Conditional commitment of up to **$6.57B** (announced Nov 25, 2024) to finance the Georgia manufacturing facility ("Project Horizon"). Drawdowns subject to milestones; **not yet drawn**. + +> Management statement (Feb 20, 2025): *"The capital associated with the Joint Venture and DOE loan, in addition to Rivian's current cash, cash equivalents, and short-term investments, is expected to provide the capital resources to fund operations through the ramp of R2 in Normal, as well as the midsize platform in Georgia — enabling a path to positive free cash flow and meaningful scale."* + +**Sources:** +- [Yahoo Finance – RIVN](https://finance.yahoo.com/quote/RIVN) +- [DOE – $6.57B Loan Announcement](https://www.energy.gov/edf/articles/doe-announces-657-billion-loan-rivian-support-construction-ev-manufacturing-facility) +- [Rivian Newsroom – DOE Conditional Commitment](https://rivian.com/newsroom/article/rivian-receives-conditional-commitment-from-doe-for-6-6b-for-ga-plant) +- [Rivian FY 2024 Earnings Release](https://rivian.com/newsroom/article/rivian-releases-fourth-quarter-full-year-2024-financial-results) + +--- + +## 9. Debt Obligations + +| Item | Amount | Notes | +|------|--------|-------| +| Total Debt (mrq) | **~$4.87–4.9B** *[est., Yahoo Finance]* | — | +| 2018 Standard Chartered facility | ~$200M | Original 2018 debt financing (historical) | +| DOE ATVM Loan (conditional) | Up to **$6.57B** | Conditional; undrawn as of announcements; project-specific for Georgia plant | +| Convertible notes / bond instruments | Details in 2025 Form 10-K debt footnote | Maturities not quoted in press releases | + +> For exact debt instrument composition, interest rates, and maturity schedule, refer to the **2025 Annual Report (Form 10-K)** filed with the SEC. + +**Sources:** +- [Yahoo Finance – RIVN Key Statistics](https://finance.yahoo.com/quote/RIVN/key-statistics) +- [DOE LPO – Conditional Commitment](https://www.energy.gov/edf/articles/lpo-announces-conditional-commitment-rivian-support-construction-ev-manufacturing) +- [Rivian IR / SEC](https://rivian.com/investors) + +--- + +## 10. Capital Expenditure Plans + +| Item | Detail | +|------|--------| +| **Georgia Plant ("Project Horizon")** | New greenfield facility for R2 midsize platform; financed by DOE ATVM loan (up to $6.57B) + VW JV + balance sheet | +| **Normal, Illinois Plant** | R2 production to begin in Normal before Georgia plant is complete; ramp-up capex ongoing | +| **R2 Platform Launch** | Deliveries targeted for **Q2 2026** (confirmed in Q3 2025 earnings); expected to be highest-volume, lower-cost vehicle | +| **Quantified Capex Guidance** | Not explicitly quoted in press releases reviewed; refer to 2025 10-K and shareholder letters for specific annual capex figures | + +> The DOE ATVM loan is the single largest committed capital resource for Rivian's manufacturing expansion. The VW JV also provides technology investment capital for the midsize electrical architecture platform. + +**Sources:** +- [DOE – Project Horizon Loan](https://www.energy.gov/edf/articles/doe-announces-657-billion-loan-rivian-support-construction-ev-manufacturing-facility) +- [Rivian Q3 2025 Earnings Release](https://rivian.com/newsroom/article/rivian-releases-third-quarter-2025-financial-results) +- [Rivian FY 2024 Earnings Release](https://rivian.com/newsroom/article/rivian-releases-fourth-quarter-full-year-2024-financial-results) + +--- + +## 11. Management Financial Guidance + +### FY 2025 Guidance (issued Feb 20, 2025 with FY 2024 results): +- Expects **"modest gross profit for full-year 2025"** ✅ *(achieved: $144M)* +- Highlighted R2 bill-of-materials (BOM) cost efficiency as key driver +- Noted external risks: policy changes (EV tax credits) and demand dynamics + +### Deliveries: +- **FY 2025 actual deliveries:** 42,247 vehicles +- **FY 2026 delivery guidance:** 62,000–67,000 vehicles (per secondary compilation; includes R2 launch contribution) +- **R2 deliveries:** Expected to begin **Q2 2026** + +### Liquidity/Going Concern: +- VW JV + DOE loan + balance sheet cash "expected to provide capital resources to fund operations through R2 ramp in Normal and midsize platform in Georgia" (confirmed management statement) + +**Sources:** +- [Rivian FY 2024 Earnings Release](https://rivian.com/newsroom/article/rivian-releases-fourth-quarter-full-year-2024-financial-results) +- [Rivian FY 2025 Earnings Release](https://rivian.com/newsroom/article/rivian-releases-fourth-quarter-full-year-2025-financial-results) +- [Rivian Q3 2025 Earnings Release](https://rivian.com/newsroom/article/rivian-releases-third-quarter-2025-financial-results) + +--- + +## 12. Analyst Estimates & Price Targets + +> All figures below are **third-party estimates**, not company guidance. Subject to change. + +| Source | # Analysts | Avg. 12-Mo Price Target | Range | Rating | +|--------|-----------|------------------------|-------|--------| +| MarketBeat | 26 | **$18.05** | Up to $25.00 | — | +| Yahoo Finance | 19–26 | **$14.26** | $10–$21 | — | +| Yahoo Finance (Apr 2026 article) | — | $19.74 (one analyst) | — | "50% confidence" | + +### Revenue Consensus *[est., Yahoo Finance]*: +| Year | Consensus Revenue Estimate | +|------|---------------------------| +| FY 2025 | ~$5.24B *(actual: $5.387B — beat consensus)* | +| FY 2026 | ~$7.35B | + +### EPS: Negative but improving trajectory per consensus. + +**Sources:** +- [MarketBeat – RIVN Forecast](https://www.marketbeat.com/stocks/NASDAQ/RIVN/forecast) +- [Yahoo Finance – RIVN Analysis](https://finance.yahoo.com/quote/RIVN/analysis/) +- [Yahoo Finance – RIVN Quote](https://finance.yahoo.com/quote/RIVN) + +--- + +## 13. Key Financial Partnerships & Banking Relationships + +| Partner | Nature | Financial Impact | +|---------|--------|-----------------| +| **Volkswagen Group** | JV: "Rivian VW Group Technology" — Rivian provides vehicle electrical architecture & software development services | $576M software & services gross profit in FY 2025; $1B funded by VW in 2025; up to ~$10B total capital access (VW JV + DOE combined) | +| **Amazon** | Anchor equity investor (lead in 2019); commercial customer (100,000 EDV order) | Revenue from EDV deliveries; strategic demand anchor | +| **Ford Motor Company** | Strategic equity investor (2019, 2021 rounds); exited significant stake post-IPO | Historical capital provider; technology partnership wound down | +| **DOE / LPO** | ATVM loan — conditional commitment up to **$6.57B** for Georgia plant | Largest single debt facility; project-specific drawdowns | +| **T. Rowe Price** | Lead investor in Dec 2019, Jan 2021, Jul 2021 rounds | Key institutional backer pre-IPO | +| **D1 Capital Partners** | Co-lead in Jul 2021 round | Key late-stage private capital | +| **Fidelity, Coatue, BlackRock-managed funds, ALJ, Soros** | Co-investors in 2021 rounds | Institutional credibility pre-IPO | +| **Standard Chartered** | 2018 debt facility (~$200M) | Historical banking relationship | +| **Cox Automotive** | Strategic investor (Sep 2019, $350M) | Industry strategic; remarketing and services alignment | + +**Sources:** +- [Rivian FY 2025 Earnings Release](https://rivian.com/newsroom/article/rivian-releases-fourth-quarter-full-year-2025-financial-results) +- [Rivian FY 2024 Earnings Release](https://rivian.com/newsroom/article/rivian-releases-fourth-quarter-full-year-2024-financial-results) +- [DOE Loan Announcement](https://www.energy.gov/edf/articles/doe-announces-657-billion-loan-rivian-support-construction-ev-manufacturing-facility) +- [Wikipedia – Rivian](https://en.wikipedia.org/wiki/Rivian) +- [Rivian IR](https://rivian.com/investors) + +--- + +## Summary Scorecard + +| Dimension | Status | Signal | +|-----------|--------|--------| +| **Funding History** | ~$10.5B+ raised pre-IPO; $11.9B IPO | ✅ Well-capitalized | +| **Revenue Growth** | $4.97B (2024) → $5.39B (2025); +8.4% | ✅ Growing, but slowed | +| **Gross Profit** | First positive FY: 2025 ($144M) | ⚠️ Positive but thin; automotive still negative | +| **Net Loss** | ~$(4.7)B (2024); improving but deeply negative | 🔴 Material ongoing losses | +| **Cash Burn** | ~$(635)M operating cash outflow (TTM) | ⚠️ Improving; still negative FCF | +| **Liquidity** | ~$7.1B cash + $6.57B conditional DOE loan | ✅ Strong near-term runway | +| **Debt** | ~$4.9B total debt | ⚠️ Significant but manageable vs. liquidity | +| **Capex/Growth** | Georgia plant + R2 ramp; R2 deliveries from Q2 2026 | ✅ Clear growth catalyst | +| **Partnerships** | VW JV (transformative); Amazon (demand anchor) | ✅ Strategically differentiated | +| **Market Cap** | ~$21B (Apr 2026) vs. ~$100B at IPO peak | 🔴 ~80% decline from peak | + +--- + +*Report prepared using Rivian Automotive press releases, SEC filings, DOE announcements, and third-party aggregators. All estimates from third-party sources are clearly labeled. Readers should verify aggregator figures against Rivian's official 2025 Form 10-K (SEC EDGAR) for final precision on debt composition, net income, and capex.* + +*Primary SEC Filing: [Rivian 2025 Form 10-K](https://www.sec.gov/ix?doc=/Archives/edgar/data/0001874178/000187417826000008/rivn-20251231.htm)* diff --git a/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/litigation-regulatory.md b/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/litigation-regulatory.md new file mode 100644 index 0000000..1cc7fb8 --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/litigation-regulatory.md @@ -0,0 +1,333 @@ +# Litigation & Regulatory Profile: Rivian Automotive, Inc. + +**Prepared:** May 2026 +**Analyst:** Legal & Compliance Research — AI-Assisted +**Sources:** SEC filings (EDGAR), NHTSA recall portal, OSHA IMIS, court dockets, news sources (citations inline) +**Scope:** Active and recent lawsuits; SEC/regulatory matters; NHTSA recalls; OSHA enforcement; sanctions screening; environmental compliance; KYC/EDD escalation flags. + +--- + +## ⚠️ KYC/EDD Escalation Summary + +| # | Item | Risk Level | Status | +|---|------|------------|--------| +| 1 | Securities class action — $250M proposed settlement (Crews v. Rivian) | **HIGH** | Pending final court approval (hearing: May 15, 2026) | +| 2 | OSHA workplace fatality at Rivian warehouse, Normal, IL (Mar 5, 2026) | **HIGH** | OSHA fatality investigation open; penalties TBD | +| 3 | Pattern of OSHA serious citations (2022–2024) at Normal, IL plant | **MEDIUM** | Ongoing; some citations downgraded/dismissed | +| 4 | Trade secret suit (Tesla v. Rivian) | **LOW** | Settled and dismissed Dec 2024 / Jan 2025 | +| 5 | Georgia plant zoning litigation | **LOW** | Dismissed; appellate affirmance Sep 2024 | +| 6 | Product liability suit — Young v. Rivian Automotive (C.D. Ill.) | **MEDIUM** | Active; status pending | +| 7 | NHTSA recalls — 21+ recalls since 2022, incl. safety-critical items | **MEDIUM** | Ongoing; no open NHTSA defect investigations disclosed | +| 8 | Sanctions exposure (OFAC/EU/UN) | **NONE** | No designations found | +| 9 | EPA / environmental enforcement | **LOW** | No enforcement actions disclosed; permitting ongoing | + +> **EDD Recommendation:** Escalate due to the pending $250M securities class action settlement (final approval outstanding), the open OSHA fatality investigation, and the pattern of serious workplace safety violations. Monitor the settlement hearing outcome on May 15, 2026, and any OSHA citation/penalty determination following the March 2026 fatality. + +--- + +## 1. Active and Recent Lawsuits + +### 1.1 Securities Class Action — Crews v. Rivian Automotive, Inc. + +| Field | Detail | +|---|---| +| **Case Name** | *Charles Larry Crews, Jr. v. Rivian Automotive, Inc., et al.* | +| **Court** | U.S. District Court, C.D. California | +| **Case No.** | 2:22-cv-01524-JLS-E | +| **Filed** | March 7, 2022 (three related suits consolidated) | +| **Class Certification** | July 17, 2024 | +| **Lead Plaintiff Counsel** | Kessler Topaz Meltzer & Check, LLP | +| **Settlement Amount** | $250,000,000 cash | +| **Preliminary Approval** | December 18, 2025 | +| **Settlement Hearing** | May 15, 2026 at 10:30 a.m. PT (Judge Josephine L. Staton) | +| **Claims** | Securities Act of 1933 and Exchange Act of 1934; alleged material misstatements/omissions regarding vehicle production costs and pricing increases disclosed shortly after the November 2021 IPO | + +**Background:** Rivian conducted its IPO on November 10, 2021 at $78/share (raising ~$13.7B). In March 2022, it announced significant price increases for pre-ordered R1T/R1S vehicles, triggering a sharp stock decline. Plaintiffs alleged Rivian and its officers knew or were reckless about underlying cost structures and misled investors in the IPO registration statement and subsequent communications. The Court denied motions to dismiss in July 2023. Rivian agreed to the $250M settlement in October 2025. + +**Sources:** +- Long-form settlement notice: https://www.riviansecuritieslitigation.com/media/6580480/rivian_automotive_securities_settlement_-_long-form_notice.pdf +- Kessler Topaz announcement: https://www.ktmc.com/news/kessler-topaz-achieves-250-million-settlement-in-rivian-ipo-suit +- CFO Dive coverage: https://www.cfodive.com/news/rivian-pay-250m-settle-ipo-fraud-suit-electricvehicles/803780 +- Reuters: https://www.reuters.com/sustainability/boards-policy-regulation/rivian-agrees-pay-250-million-settle-ipo-fraud-lawsuit-2025-10-23/ +- TechCrunch: https://techcrunch.com/2025/10/24/rivian-will-pay-250m-to-settle-lawsuit-over-r1-price-hike/ +- Yahoo Finance: https://finance.yahoo.com/news/rivian-pay-250m-settle-lawsuit-144301808.html +- SEC Q1 2025 10-Q (confirming consolidated case): https://www.sec.gov/Archives/edgar/data/1874178/000187417825000026/rivn-20250331.htm + +--- + +### 1.2 Trade Secret Litigation — Tesla, Inc. v. Rivian Automotive, Inc. + +| Field | Detail | +|---|---| +| **Case Name** | *Tesla, Inc. v. Rivian Automotive, Inc.* | +| **Court** | California Superior Court, Santa Clara County | +| **Filed** | July 2020 | +| **Allegations** | Misappropriation of trade secrets related to battery technology and other proprietary information, allegedly carried by former Tesla employees hired by Rivian | +| **Trial Setting** | March 2025 (vacated upon settlement) | +| **Resolution** | Settlement reached; dismissals filed mid-December 2024; case closed prior to March 2025 trial | +| **Settlement Terms** | Undisclosed | + +**Sources:** +- Yahoo Finance: https://finance.yahoo.com/news/tesla-rivian-agree-settle-four-133700282.html +- Proskauer Trade Secrets Blog: https://www.proskauer.com/blog/ev-trade-secrets-litigation-series-tesla-and-rivian-resolve-high-stakes-legal-clash-over-ip +- Brand Protection Law: https://www.brandprotection.law/tesla-and-rivian-settle-four-year-trade-secret-dispute-before-trial/ +- CBT News: https://www.cbtnews.com/tesla-rivian-near-settlement-in-lawsuit-over-alleged-trade-secret-theft + +--- + +### 1.3 Georgia Plant Zoning Litigation + +| Field | Detail | +|---|---| +| **Court** | Morgan County (GA) Superior Court; Georgia Court of Appeals | +| **Filed** | January 27, 2023 | +| **Plaintiffs** | Six individuals (local residents/landowners) | +| **Claims** | Declaratory and injunctive relief; alleged that Rivian's Stanton Springs North manufacturing project is subject to local/state zoning laws; sought enforcement of those laws against Morgan County | +| **Trial Court Ruling** | Motions to dismiss granted January 2, 2024 | +| **Appellate Ruling** | Georgia Court of Appeals affirmed dismissal September 30, 2024 | +| **Related Suit** | Second related action stayed April 4, 2024; dismissed without prejudice January 30, 2025 | +| **Status** | Closed | + +**Source:** +- Rivian 2024 Form 10-K (Note 16, Commitments and Contingencies): https://www.sec.gov/Archives/edgar/data/1874178/000187417825000007/rivn-20241231.htm + +--- + +### 1.4 Employment Discrimination — Former Executive (California) + +| Field | Detail | +|---|---| +| **Court** | California state court (exact court not publicly confirmed) | +| **Filed** | ~Early 2022 | +| **Plaintiff** | Former Rivian executive (gender identified as female) | +| **Claims** | Gender discrimination and retaliation under California law | +| **Status** | Reported in February 2022 NYT article; final resolution not publicly disclosed | + +**Sources:** +- New York Times: https://www.nytimes.com/2022/02/09/business/rivian-stock-electric-cars.html +- Rudy Exelrod Zieff & Lowe (plaintiff's firm): https://rezlaw.com/we-can-help/case-results/ + +--- + +### 1.5 Product Liability — Young v. Rivian Automotive, LLC + +| Field | Detail | +|---|---| +| **Case Name** | *Young v. Rivian Automotive, LLC* | +| **Court** | U.S. District Court, C.D. Illinois | +| **Case No.** | 1:25-cv-01231 | +| **Filed** | 2025 | +| **Claims** | Personal injury related to a Rivian vehicle; specific defect allegations not publicly summarized | +| **Status** | Active | + +> **Note:** No multi-district litigation (MDL) or class actions focused specifically on Rivian vehicle product defects have been identified as of the research date. Rivian's 2025 10-Q acknowledges exposure to "labor, consumer-protection, and tort/personal-injury claims" without itemizing additional product-defect suits. + +**Source:** +- Justia docket: https://dockets.justia.com/docket/illinois/ilcdce/1:2025cv01231/96551 +- Rivian Q1 2025 10-Q: https://www.sec.gov/Archives/edgar/data/1874178/000187417825000026/rivn-20250331.htm + +--- + +## 2. SEC Filings, Enforcement Actions & Investigations + +| Item | Detail | +|---|---| +| **Annual Report (10-K)** | 2024 Form 10-K filed February 24, 2025; Legal Proceedings section (Note 16) discloses Georgia plant litigation and standard exposure language | +| **Wells Notices / Subpoenas** | None disclosed in 10-K or 10-Q filings reviewed | +| **Formal SEC Investigation** | None publicly disclosed | +| **Key Risk Factors Disclosed** | Product liability, recalls, workforce safety, litigation costs, regulatory compliance, price/cost disclosure risks (as validated by the Crews settlement) | + +**Source:** +- Rivian 2024 10-K: https://www.sec.gov/Archives/edgar/data/1874178/000187417825000007/rivn-20241231.htm + +--- + +## 3. Regulatory Actions + +### 3.1 OSHA — Normal, IL Manufacturing Plant + +| Period | Detail | +|---|---| +| **2021 Referral Inspection** | OSHA Inspection No. 1515437.015; opened Feb 19, 2021; closed Jul 8, 2021; Peoria Area Office; safety referral; specific citations/penalties not posted | +| **Nov 2022 Employee Complaints** | At least 12 employees filed complaints; OSHA opened 7 investigations; 4 "serious" citations issued by Nov 2022, including 3 in a single cluster | +| **Jan 2023 – Oct 2024 Pattern** | Media analysis (Electrek, WGLT) reports 16 initial "serious" OSHA citations over ~21 months. Rivian disputes characterization, stating only 2 final "serious" citations were sustained after abatement/settlement; many initial citations were downgraded or dismissed | +| **Apr 11, 2024 Contractor Fall** | A contractor was seriously injured in a fall at the Normal plant; OSHA opened inspections of both Rivian and contractor Multi-Industries; outcomes not yet posted | + +**Sources:** +- OSHA Inspection 1515437.015: https://www.osha.gov/ords/imis/establishment.inspection_detail?id=1515437.015 +- WGLT (Jan 2025 safety report): https://www.wglt.org/local-news/2025-01-16/at-rivian-some-workers-say-production-comes-at-the-expense-of-safety +- Electrek (Oct 2024): https://electrek.co/2024/10/23/rivian-plant-is-a-hellish-nightmare-of-safety-violations-report/ +- WGLT (Apr 2024 fall investigation): https://www.wglt.org/local-news/2024-04-21/osha-investigating-after-contractor-seriously-injured-in-fall-at-rivian-plant +- TTNews (Nov 2022): https://www.ttnews.com/articles/rivian-employees-allege-safety-oversights-illinois-plant +- 25 News Now (Nov 2022): https://www.25newsnow.com/2022/11/21/report-rivian-employees-file-complaints-injuries-safety-violations/ + +### 3.2 OSHA — Warehouse Fatality (March 5, 2026) ⚠️ ESCALATION FLAG + +| Field | Detail | +|---|---| +| **Location** | Rivian Automotive Warehouse, 301 W. Kerrick Rd., Normal, IL | +| **Date** | March 5, 2026, approximately 1:40 p.m. | +| **Victim** | Kevin Lancaster, age 61 | +| **Cause of Death** | Multiple blunt traumatic compressional injuries; pronounced dead 2:33 p.m. | +| **Circumstances** | Pinned between a semi-trailer and a loading dock | +| **OSHA Status** | Fatality investigation expected to be opened (standard federal protocol); no citations or penalties issued as of research date | +| **Investigative Body** | McLean County Coroner; Normal Police Department; OSHA (pending) | + +> **EDD Flag:** Workplace fatalities trigger mandatory OSHA fatality/catastrophe investigations. Maximum proposed penalty for willful violations is $161,323 per violation (2024 levels). If Rivian is found to have had prior notice of similar hazards (given the 2022–2024 citation history), a "repeat" or "willful" classification is possible, carrying heightened penalties and reputational risk. + +**Sources:** +- 25 News Now (fatality report): https://www.25newsnow.com/2026/03/05/man-pinned-between-semi-trailer-loading-dock-rivian-warehouse-dies/ +- Normal Fire Department (Facebook): https://www.facebook.com/NormalFire/posts/worker-critically-injured-in-industrial-accident-thursday-march-5-2026-normal-il/1333262362172693/ + +### 3.3 Illinois Attorney General — Contractor Wage Violations (2022) + +| Field | Detail | +|---|---| +| **Filed** | September 2, 2022 | +| **Respondent** | Construction contractor performing work at Rivian's Normal, IL plant (not Rivian directly) | +| **Claims** | Alleged violations of Illinois Minimum Wage Law; Attorney General alleged a scheme to avoid paying fair wages and taxes | +| **Rivian's Role** | Named in the context of the plant site; AG enforcement targeted the contractor | + +**Source:** +- Illinois AG filing: https://illinoisattorneygeneral.gov/dA/a8fcf7e748/202209-02%20SUES%20CONSTRUCTION%20COMPANY%20OVER%20COMPLEX%20SCHEME%20TO%20AVOID%20PAYING%20FAIR%20WAGES%20AND%20TAXES.pdf + +### 3.4 NHTSA — See Section 4 Below + +### 3.5 FTC, CFPB, DOJ, NLRB, EPA + +| Agency | Status | +|---|---| +| **FTC** | No enforcement actions or investigations identified | +| **CFPB** | No enforcement actions or investigations identified | +| **DOJ** | No investigations identified | +| **NLRB** | No published NLRB complaints or decisions specifically against Rivian identified | +| **EPA (Federal)** | No enforcement actions, Notices of Violation, or CERCLA listings disclosed or identified | +| **Georgia EPD** | Air Quality Permit No. 3711-297-0061-E-01-0 issued August 20, 2024 for Stanton Springs North; no enforcement actions disclosed | + +**Source:** +- DOE Draft Environmental Assessment (Rivian Stanton Springs North, Apr 2025): https://www.energy.gov/sites/default/files/2025-04/draft-ea-2251-rivian-stanton-springs-north-2024-10.pdf + +--- + +## 4. NHTSA Safety Recalls + +> Rivian has issued **21+ NHTSA recalls** since its first vehicles entered the market in 2021. Key safety-critical items are flagged below. A number of recalls are resolved via over-the-air (OTA) software updates; others require physical service. + +### Safety-Critical Recalls (Seat Belts, Steering, Airbags, Drive Power) + +| NHTSA No. | FSAM | Issued | Affected Vehicles | Defect | Remedy | +|---|---|---|---|---|---| +| **26V-009** | FSAM-11795 | 2026-01-15 | 2022–2026 R1T/R1S | Improperly secured seat belt retractor assemblies | Inspect and secure; remedy available 2026-01-21 | +| **26V-003** | FSAM-11794 | 2026-01-08 | 2022–2025 R1 (serviced before 2025-03-10) | Toe link joint may separate (steering/handling) | Replace rear toe link bolts | +| **25V-537** | FSAM-11723 | 2025-08-26 | 2025 R1S/R1T | Ground connection may cause loss of drive power | Inspect/repair ground connection | +| **25V-370** | FSAM-11681 | 2025-06-03 | 2022–2025 R1S/R1T | Seat belt D-ring anchorage | Inspect and secure anchorage | +| **23V-109** | FSAM-11166 | 2023-02-22 | 2022 R1 | Passenger air bag sensor malfunction | Inspect/replace components | +| **22V-744** | FSAM-10997 | 2022-10-06 | 2022 R1/EDV | Steering knuckle/control arm fastener may loosen | Inspect/correct fasteners | +| **22V-641** | FSAM-10924 | 2022-09-30 | 2022 R1 | Improperly secured front seat belt anchor | Inspect/secure anchors | + +### ADAS, Lighting & Other Recalls + +| NHTSA No. | FSAM | Issued | Affected Vehicles | Defect | Remedy | +|---|---|---|---|---|---| +| **25V-816** | FSAM-11770 | 2025-12-03 | 2022–2025 EDV | Seat belt misuse detection | OTA + inspect/replace driver pretensioner | +| **25V-585** | FSAM-11744 | 2025-09-12 | 2025 R1S/R1T | ADAS OTA 2025.18.30 issue | Software update to 2025.18.30+ | +| **25V-387** | FSAM-11693 | 2025-06-11 | 2025 R1S/R1T | Turn signal inoperative | Replace front lamp(s) | +| **25V-085** | FSAM-11612 | 2025-02-13 | 2025 R1S/R1T | Headlamp performance in cold weather | Replace headlamp control module(s) | +| **24V-827** | FSAM-11552 | 2024-11-01 | 2025 R1S/R1T | Exterior lighting deactivated by "Car Costume" feature | OTA 2024.39.31 | +| **24V-686** | FSAM-11532 | 2024-09-18 | 2025 R1S | Steering column control module missing cruise markings | Module labeling/service | +| **24V-458** | FSAM-11491 | 2024-06-25 | 2022–2023 R1S/R1T | Incorrect weight on tire placard label | Mail correct overlay labels | +| **24V-408** | FSAM-11464 | 2024-06-14 | 2022–2024 R1S/R1T | Upper B-C-pillar trim panel (fire/safety barrier) | Replace trim panels | +| **24V-367** | FSAM-11445 | 2024-05-31 | 2023–2024 R1S/R1T/EDV | Headlight aiming out of spec | Adjust headlamp aim | +| **24V-319** | FSAM-11429 | 2024-05-14 | 2024 R1S/R1T | Dashboard air bag label missing | Apply label | +| **23V-883** | FSAM-11342 | 2023-12-21 | 2022 R1 | Accelerator pedal may stick | Replace pedals + software | +| **23V-783** | FSAM-11331 | 2023-11-21 | 2022–2023 R1 | OTA 2023.42 defroster UI failure | OTA 2023.42.02 | +| **23V-233** | FSAM-11216 | 2023-03-31 | 2022–2023 R1S | Backup lamp visibility insufficient | Replace lamps | +| **22V-319** | FSAM-10651 | 2022-05-10 | 2022 R1T | OCS calibration/front seat issue | Replace front passenger seat | + +**Sources:** +- Rivian Recall Portal: https://rivian.com/support/article/recall-information +- Consumer Reports (2022 steering recall): https://www.consumerreports.org/cars/car-recalls-defects/rivian-recalls-suvs-trucks-and-vans-to-fix-a-steering-fasten-a1891314510/ +- ReCharged (2022 recall list): https://recharged.com/articles/2022-rivian-r1s-recalls-list +- ReCharged (2025 recall list): https://recharged.com/articles/2025-rivian-r1s-recalls-list +- Consumer Reports (2022 R1S reliability): https://www.consumerreports.org/cars/rivian/r1s/2022/reliability/ + +--- + +## 5. Sanctions Screening + +| List | Result | +|---|---| +| **OFAC SDN List** | No designation found for Rivian Automotive, Inc. or identified key executives | +| **EU Consolidated Sanctions List** | No designation found | +| **UN Consolidated Sanctions List** | No designation found | +| **OFAC Non-SDN Lists (SSI, FSE, etc.)** | No matches found | + +> **Conclusion:** No sanctions exposure identified. Rivian is a U.S.-domiciled, Nasdaq-listed public company with no known nexus to sanctioned jurisdictions, entities, or individuals. + +--- + +## 6. History of Fines, Consent Decrees & Settlements + +| Matter | Type | Amount | Status | +|---|---|---|---| +| **Crews v. Rivian** (C.D. Cal.) | Securities class action settlement | $250,000,000 | Preliminarily approved Dec 18, 2025; final hearing May 15, 2026 | +| **Tesla v. Rivian** (Cal. Super.) | Trade secret settlement | Undisclosed | Dismissed Dec 2024 / Jan 2025; case closed | +| **OSHA — Normal, IL plant (2022–2024)** | Workplace safety citations | Undisclosed (multiple citations; many downgraded) | Ongoing; 2 final "serious" citations per Rivian's statement | +| **OSHA — Warehouse fatality (Mar 2026)** | Fatality investigation | Pending | Investigation open; no penalty issued yet | +| **EPA / State Environmental** | N/A | N/A | No fines or consent decrees identified | +| **FTC / DOJ / NLRB** | N/A | N/A | No fines or consent decrees identified | + +--- + +## 7. Environmental Compliance + +| Item | Detail | +|---|---| +| **EPA (Federal)** | No EPA Notices of Violation, enforcement orders, or CERCLA (Superfund) listings identified for Rivian or its facilities | +| **Georgia EPD — Stanton Springs North** | Air Quality Construction Permit No. 3711-297-0061-E-01-0 issued August 20, 2024; Phase 1 and Phase 2 air permits to be applied for separately per Georgia EPD guidance; no enforcement actions disclosed | +| **Illinois — Normal Plant** | Manufacturing plant operational since 2017; no state EPA NOVs disclosed in public filings or media; OSHA (not EPA) is the primary enforcement vector to date | +| **Hazardous Waste** | DOE Draft Environmental Assessment (Apr 2025) notes that more than 95% of hazardous waste is diverted from landfills at similar Rivian facilities | +| **Water Treatment** | EA references innovative water treatment practices at Stanton Springs North; no water permit violations identified | + +**Source:** +- DOE Draft EA for Stanton Springs North (Apr 2025): https://www.energy.gov/sites/default/files/2025-04/draft-ea-2251-rivian-stanton-springs-north-2024-10.pdf + +--- + +## 8. Notable Legal Risks & KYC/EDD Analysis + +### 8.1 Securities Litigation Risk (HIGH → Monitored) +The $250M cash settlement in *Crews v. Rivian* is the most material legal matter. While the settlement is large, it represents a defined, capped liability. Risk remains until **final court approval is obtained (hearing: May 15, 2026)** and the settlement fund is funded and distributed. Should the settlement fail to receive final approval (rare but possible), the case would return to litigation posture, representing an unquantified liability. + +### 8.2 Workplace Safety Risk (MEDIUM–HIGH) +Rivian's Normal, IL operations have drawn repeated OSHA scrutiny since 2021: +- A pattern of 16 initial "serious" citations (2023–2024), with Rivian disputing characterization +- A contractor serious injury (April 2024) under active investigation +- A **worker fatality on March 5, 2026** — the most severe possible OSHA outcome, triggering a mandatory fatality/catastrophe investigation + +Given the prior citation history, the 2026 fatality carries risk of "repeat" or "willful" OSHA classification, elevated penalties (up to $161,323 per willful violation), and potential reputational harm. This should be **actively monitored** in any ongoing KYC/EDD relationship. + +### 8.3 Recall Burden and Product Liability Exposure (MEDIUM) +With 21+ recalls since 2022 — including safety-critical items involving seat belts, steering, airbags, and loss of drive power — Rivian carries a higher-than-average recall rate for a new OEM. This indicates continued product quality compliance risk and potential for future product liability suits. No MDL or defect-based class action has been filed to date, but the current product liability suit (*Young v. Rivian*) should be monitored for any broadening. + +### 8.4 Intellectual Property Risk (LOW — Resolved) +The Tesla trade secret dispute, settled in December 2024/January 2025, underscored vulnerabilities associated with mass-hiring of employees from competing EV manufacturers. The resolution removes immediate litigation risk, but IP governance and trade secret controls remain an ongoing operational concern common to the EV industry. + +### 8.5 Sanctions & AML Risk (NONE) +No sanctions exposure identified. Rivian has no disclosed relationships with sanctioned persons, entities, or jurisdictions. Standard source-of-funds and beneficial ownership review consistent with a publicly listed U.S. company is appropriate. + +### 8.6 Environmental Risk (LOW) +No EPA enforcement actions or environmental consent decrees identified. The Georgia EPD permitting process is proceeding normally. Environmental risk is currently low but should be revisited as the Stanton Springs North facility commences full-scale operations. + +--- + +## 9. Methodology & Limitations + +- Research conducted using public sources: SEC EDGAR, OSHA IMIS, NHTSA recall portal, federal court dockets (PACER/Justia), state court records, DOE/EPA public filings, and news databases. +- OSHA penalty data for 2022–2024 citations is not fully publicly disclosed; specific dollar amounts for individual citations could not be confirmed. A formal FOIA request to OSHA's Peoria/Springfield Area Office would be required for complete citation-level data. +- Product liability dockets beyond *Young v. Rivian* may exist in state courts and are not captured by federal PACER searches. +- Sanctions screening reflects public list data as of research date; OFAC/EU/UN lists are updated frequently and should be re-screened at each transaction or relationship review. + +--- + +*Document prepared for KYC/EDD workpaper purposes. Not legal advice. All citations to external sources should be independently verified prior to reliance.* diff --git a/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/news-reputation.md b/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/news-reputation.md new file mode 100644 index 0000000..2153fc2 --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/news-reputation.md @@ -0,0 +1,230 @@ +# Rivian Automotive — News & Reputation Analysis +**Period Covered:** ~January 2024 – Mid-2025 (with select forward-looking 2025–2026 data points) +**Prepared by:** Media Intelligence Analysis +**Date:** 2025 + +--- + +## Executive Summary + +Rivian's overall media reputation in 2024–2025 is **mixed/neutral**, trending cautiously optimistic on product and technology but weighed down by financial pressures, production challenges, and recurring workforce reductions. The landmark Volkswagen joint venture significantly boosted strategic credibility, while the R2 reveal generated genuine consumer enthusiasm. Against this, 2025 delivery declines (~18% YoY), multiple rounds of layoffs, persistent cash burn, and a series of safety recalls have kept risk perception elevated. No single catastrophic reputational event emerged, but a recurring pattern of execution shortfalls and restructuring actions has shaped a narrative of a company still fighting to prove its industrial footing. + +--- + +## 1. Major Press Coverage — Last 12–18 Months + +### 1.1 Volkswagen Strategic Investment & Joint Venture *(Most Significant Story)* +The single biggest story of the period was Volkswagen Group's decision to invest in Rivian and form a jointly controlled software/electrical architecture venture. + +- **June 2024:** VW announced an investment of **up to $5 billion** in Rivian as part of a new, equally controlled JV focused on software and electrical/electronic (EE) architecture. + - Source: Reuters, Jun 25, 2024 — https://www.reuters.com/business/autos-transportation/volkswagen-invest-up-5-billion-rivian-part-tech-joint-venture-2024-06-25 +- **November 2024:** The JV was formally launched; total deal size increased to **up to $5.8 billion**, with first VW-brand models using Rivian's software and EE architecture targeted as early as 2027. + - Source: Rivian Newsroom, Nov 12, 2024 — https://rivian.com/newsroom/article/rivian-and-volkswagen-group-announce-the-launch-of-their-joint-venture + - Source: CNBC, Nov 12, 2024 — https://www.cnbc.com/2024/11/12/rivian-volkswagen-joint-venture.html + - JV website: https://rivianvw.tech/ +- **Context:** Coverage framed the deal as a **major de-risking event** for Rivian's technology roadmap and balance sheet, while noting that actual integration into VW-brand vehicles sold in the U.S. remains years away. + - Source: Automotive News, Apr 6, 2026 — https://www.autonews.com/volkswagen/an-vw-rivian-joint-venture-update-0406 + +### 1.2 R2 (and R3/R3X) Reveal — Consumer Demand Surge +- **March 2024:** Rivian unveiled the R2, a smaller, more affordable SUV targeting ~$45,000 starting price to expand its total addressable market. CEO RJ Scaringe announced that **more than 68,000 reservations** were taken within 24 hours. + - Source: Fortune, Mar 9, 2024 — https://fortune.com/2024/03/09/rivian-r2-electric-vehicles-elon-musk-tesla-cost-cutting/ + - Product page: https://rivian.com/en-CA/r2 +- The R2 reveal also included teaser previews of the R3 and R3X models, generating significant positive media coverage and demonstrating Rivian's intent to compete at lower price points. + +### 1.3 Normal, IL Plant Retooling & Path to Gross Profitability +- **May 2024:** Rivian completed a plant retooling of its Normal, Illinois factory, projected to reduce R1 vehicle bill-of-materials costs by **up to 50%**, a pivotal step toward gross profit. + - Source: Autoevolution, May 8, 2024 — https://www.autoevolution.com/news/rivian-plant-retooling-paves-the-way-to-profitability-by-the-end-of-2024-233577.html + - Source: WardsAuto, May 10, 2024 — https://www.wardsauto.com/news/archive-auto-rivian-completes-plant-retooling-pivotal-to-profitability/715673/ +- CFO Claire McDonough cited lower variable costs as the biggest driver of gross profit improvement in 2024. + +### 1.4 2024 Production Guidance Cut +- **October 2024:** Rivian cut its 2024 full-year production guidance after Q3 results disappointed, causing shares (RIVN) to fall ~3.2% to $10.44. + - Source: Yahoo Finance — https://finance.yahoo.com/news/rivian-shares-fall-3-slashes-141500557.html + +### 1.5 2025 Delivery Results — Below Expectations +- **January 2026:** Full-year 2025 deliveries totaled **42,247 vehicles**, down approximately **18% year-over-year** and slightly below analyst consensus of ~42,500. + - Source: Reuters, Jan 2, 2026 — https://www.reuters.com/business/autos-transportation/rivians-2025-deliveries-slip-below-expectations-ev-demand-pressure-persists-2026-01-02/ +- Despite volume declines, full-year 2025 financials showed **annual gross profit of $144 million** and revenue up 8%, a notable milestone. + - Source: Yahoo Finance, Apr 2, 2026 — https://sg.finance.yahoo.com/news/rivian-defies-expectations-despite-rough-023300613.html + +--- + +## 2. Leadership Changes & Executive Departures + +### 2.1 Wave of C-Suite Exits (Mid-2024) — *Pattern, Not Isolated* +- Within a span of roughly **eight weeks in summer 2024**, Rivian lost **four C-level executives**, a pattern that drew notable media attention. + - Source: Electric Vehicles (eletric-vehicles.com), Aug 20, 2024 — https://eletric-vehicles.com/rivian/rivian-loses-fourth-c-level-executive-in-less-than-2-months/ +- Specific named departures were not widely detailed by top-tier outlets; SEC 8-K filings are the authoritative primary source for individual names and roles. + +### 2.2 CEO Takes Over as Interim Marketing Chief (October 2025) +- Following the October 2025 layoff of 600+ workers (see Section 3.3), CEO **RJ Scaringe assumed the role of interim Chief Marketing Officer** as Rivian restructured key operations. + - Source: Automotive News (via Facebook), Oct 24, 2025 — https://www.facebook.com/AutoNews/posts/rivian-ceo-rj-scaringe-will-serve-as-interim-marketing-chief-as-the-ev-maker-res/1412337770751952/ + +### 2.3 Leadership Controversy — German Media Reporting (April 2025) +- A German business magazine published quotes from an unnamed "associate" implying dysfunction under CEO RJ Scaringe and general displeasure with his leadership style, suggesting an internal image problem that leaked into press. + - Source: The Autopian, Apr 24, 2025 — https://www.theautopian.com/someone-has-it-out-for-rivian-founder-rj-scaringe/ + - *Assessment:* Isolated incident at this stage; no corroborating accounts from named sources have surfaced in major outlets. + +--- + +## 3. Controversy, Scandal & Negative Press — Patterns vs. Isolated Incidents + +### 3.1 Layoffs — *Recurring Pattern* +Multiple rounds of workforce reductions across the period constitute a clear **pattern**, not a single incident: + +| Date | Scope | Source | +|------|-------|--------| +| February 2024 | ~10% of salaried workforce (SEC-confirmed) | WardsAuto — https://www.wardsauto.com/news/archive-auto-rivian-salaried-staff-reduction/708175/ | +| June 2025 | ~140 employees (~1% of workforce) ahead of R2 launch | Rivian Forums — https://www.rivianforums.com/rivian-lays-off-140-employees-to-improve-operational-efficiency-for-r2/ | +| October 2025 | 600+ workers (~4% of workforce); EV tax credit expiration cited as driver | WSJ — https://www.wsj.com/business/autos/rivian-to-layoff-more-than-600-workers-amid-ev-pullback-03a792e5 / CNBC — https://www.cnbc.com/2025/10/23/rivian-layoffs.html / Rivian Forums — https://www.rivianforums.com/rivian-to-lay-off-600-workers | + +- *Counterpoint:* By late 2025, Rivian's **total headcount actually increased** year-over-year as VW JV consolidation offset layoff numbers. + - Source: eletric-vehicles.com — https://eletric-vehicles.com/rivian/rivian-increases-headcount-in-2025-as-vws-joint-venture-consolidation-offsets-layoffs/ +- Rivian provided severance and benefits for affected workers in 2025 cuts, which modestly softened press tone. + - Source: The HR Digest — https://www.thehrdigest.com/the-rivian-layoffs-in-2025-come-with-severance-benefits-for-affected-workers/ + +### 3.2 Vehicle Recalls — *Pattern of Software/Safety Bulletins Typical of Young OEM* +Rivian issued multiple recalls across 2024–2025. No single recall was catastrophic, but the volume reflects immaturity in quality systems: + +- **2025 Seat Belt Anchor Recall:** ~24,214 R1S/R1T vehicles (2022–2025 model years) recalled for improperly installed D-ring seat belt anchor bolts. + - Source: Reddit/NHTSA filing — https://www.reddit.com/r/Rivian/comments/1l58b4m/rivian_automotive_llc_rivian_is_recalling_certain/ +- **2025 Hands-Free Highway Assist Defect:** Approximately 24,214 model-year 2025 R1S/R1T vehicles recalled for a defect in the Highway Assist hands-free driving system. + - Source: Recharged.com — https://recharged.com/articles/2025-rivian-r1s-recalls-list +- **Broader NHTSA Multi-OEM Recall Round (Feb 2025):** Rivian included in a sweep covering 225,000+ vehicles from Ford, Ram, and Rivian for visibility/safety issues. + - Source: CBT News, Feb 24, 2025 — https://www.cbtnews.com/nhtsa-announces-major-vehicle-recalls-affecting-multiple-automakers/ + - Source: Facebook/Courier Post — https://www.facebook.com/courierpost/posts/the-nhtsa-recently-announced-recalls-for-more-than-225000-vehicles-from-automake/1283537000474818/ +- Official Rivian recall page: https://rivian.com/support/article/recall-information +- *Assessment:* While recurring, recalls are **industry-standard practice** for an OEM of Rivian's age; no fatalities or systemic fleet-wide defect drew outsized negative attention. + +### 3.3 Production Delivery Underperformance — *Recurring Pattern* +Consecutive years of missing or reducing guidance: +- 2024 guidance cut (October 2024) → stock fell ~3% +- 2025 full-year deliveries came in ~18% below prior-year levels and slightly below consensus +- *Assessment:* This is a **persistent pattern** undermining bull-case narratives; however, the gross profit milestone in 2025 partially offset the negative optics. + +### 3.4 CEO Compensation vs. Per-Vehicle Losses — *Isolated but Resonant* +- Coverage emerged highlighting that CEO RJ Scaringe received **~$403 million in compensation** while the company was losing ~$39,000 per vehicle sold. + - Source: TheStreet (via Facebook) — https://www.facebook.com/TheStreet/posts/rivian-ceo-walks-away-with-403-million-despite-huge-lossesa-company-that-lost-bi/1505317951189584/ +- *Assessment:* Isolated story; no sustained activist campaign or governance proxy battle has emerged from it, but it feeds a broader narrative of EV startup excess. + +### 3.5 Price Hike Backlash — *No New 2024–2025 Incident* +- The major 2022 price-hike controversy (where Rivian retroactively raised prices on reservation holders) has **not been repeated** in the 2024–2025 window. Pricing discourse in this period centered constructively on the R2's affordability positioning and industry-wide EV discounting pressure. + +--- + +## 4. Overall Media Sentiment + +| Topic Area | Sentiment | Notes | +|---|---|---| +| Product & Design (R2, R3/R3X reveal) | **Positive** | Strong consumer resonance; 68k+ reservations in 24 hours; enthusiast and mainstream press favorable | +| VW Joint Venture | **Positive (tempered)** | Seen as strategic validation; tempered by long revenue lead times | +| Manufacturing & Cost Reduction | **Cautiously Optimistic** | Plant retooling coverage positive; gross profit milestone in 2025 seen as meaningful progress | +| Financial/Cash Position | **Negative–Neutral** | Cash burn, ~$39k per-vehicle losses (pre-retooling), reliance on JV capital; improving but not resolved | +| Production/Delivery Volume | **Negative** | Consecutive guidance cuts and YoY delivery decline are headwinds | +| Workforce Reductions | **Negative** | Multiple rounds framed as EV industry reset; softened by severance and JV headcount gains | +| Leadership Stability | **Negative–Neutral** | Four C-suite exits in 8 weeks (mid-2024); unverified German press reporting on CEO; not a dominant narrative but a noted risk signal | +| Safety/Recalls | **Neutral** | Multiple recalls but no fatality-linked systemic defect; industry-comparable | + +**Overall rating: Mixed/Neutral** — Product and technology perception represent genuine strengths; financial and operational execution remain the dominant drags on reputation. + +--- + +## 5. Analyst Opinions & Ratings + +- Consensus analyst framing through 2024–2025 emphasized: (a) **cash burn sustainability**, (b) **path to gross profit via cost reductions**, and (c) **R2 execution risk** as the key swing factors for the investment thesis. + - Source: Yahoo Finance analyst consensus — https://finance.yahoo.com/research/stock-forecast/RIVN +- The VW JV was broadly seen by analysts as **de-risking Rivian's technology roadmap** but not eliminating execution risk on manufacturing scale. +- Some analysts maintained a bullish contrarian view, with Rivian stock characterized as "outrageously cheap" relative to its long-term potential. + - Source: Yahoo Finance — https://finance.yahoo.com/markets/stocks/articles/rivian-stock-outrageously-cheap-heres-122500874.html +- Rivian Q1 2024 earnings coverage framed cost reductions as the key near-term catalyst. + - Source: Rivian Newsroom, Q1 2024 Results — https://rivian.com/newsroom/article/rivian-releases-first-quarter-2024-financial-results +- As of mid-2025, with R2 launch approaching, analyst focus shifted to **R2 volume ramp** as the next major inflection point. + - Source: Investing.com — https://www.investing.com/news/earnings/rivian-earnings-in-focus-as-r2-launch-approaches-93CH-4650346 + +--- + +## 6. Brand Perception & Social Media Sentiment + +- **Enthusiast/Owner Community:** Broadly positive, particularly around vehicle design, off-road capability, and software updates. The R2 and R3 generated strong organic social enthusiasm. +- **R2 Reservation Surge:** 68,000+ reservations in under 24 hours (March 2024) is a strong leading indicator of consumer brand health. +- **EV Industry-Wide Headwinds:** Macro EV demand hesitancy (charging infrastructure concerns, affordability, range anxiety) affected Rivian's addressable market independent of brand-specific sentiment. +- **Morning Consult Data Point:** Rivian scored a notable brand victory in Washington State in a recent Morning Consult automotive industry trust report, though broader national brand trust quantification remains sparse in public data. + - Source: LinkedIn/Morning Consult — https://www.linkedin.com/posts/jennifer-cox-mba_morning-consults-report-on-the-automotive-activity-7445131953277693952-If0u +- **Electrek:** Coverage characterizes Rivian as "riding high" on production/delivery momentum in positive periods, though this narrative fluctuated with guidance changes. + - Source: Electrek (via Facebook) — https://www.facebook.com/electrekco/posts/rivian-is-riding-high-and-recently-shared-production-and-delivery-numbers-ahead-/1383721003793627/ + +--- + +## 7. Key Reputational Risks + +| Risk | Severity | Pattern or Isolated? | +|---|---|---| +| **Cash burn & capital dependence** | High | Pattern — ongoing; mitigated but not resolved by VW JV proceeds and 2025 gross profit milestone | +| **R2 execution / production ramp** | High | Forward-looking; 2026 launch is a make-or-break moment | +| **Delivery volume decline** | Medium–High | Pattern — 2024 guidance cuts + 2025 YoY decline | +| **Recurring layoffs** | Medium | Pattern — three documented rounds in 2024–2025; each erodes workforce morale signals | +| **C-suite instability** | Medium | Pattern (mid-2024 wave); CEO doubling as CMO is a short-term stability concern | +| **EV demand environment / federal policy** | Medium–High | Macro/external; EV tax credit expiration cited as driver of Oct 2025 layoffs | +| **Competitive pressure (Tesla, legacy OEMs)** | Medium | Structural — Tesla maintains pricing/scale advantage; Ford F-150 Lightning, GM EV trucks competitive in Rivian's core truck/SUV space | +| **Recalls & quality maturation** | Low–Medium | Pattern of routine bulletins; no systemic fleet-wide defect to date | +| **CEO perception / governance optics** | Low | Isolated (unverified German press); compensation story resonant but not yet a sustained campaign | + +--- + +## 8. Distinguishing Patterns vs. Isolated Incidents + +**Patterns (recurring, structurally significant):** +1. **Layoffs** — Three documented rounds in under 24 months signal ongoing cost-structure challenges. +2. **Production/delivery guidance misses** — Multiple consecutive periods of cutting or missing volume targets. +3. **Recall/software bulletins** — Consistent with an early-stage OEM; volume of activity is notable. +4. **C-suite turnover** — Four executive departures in eight weeks (mid-2024) is statistically anomalous. + +**Isolated Incidents (not yet evidence of a pattern):** +1. **CEO anonymous criticism in German press** — Single-source, unverified; no corroborating coverage. +2. **CEO compensation vs. per-vehicle losses story** — Single media cycle; no governance escalation. +3. **Price hike backlash** — The major 2022 incident has not recurred; no 2024–2025 equivalent. + +--- + +## 9. Sources Index + +| # | Source | URL | +|---|--------|-----| +| 1 | Reuters – VW $5B Investment (Jun 2024) | https://www.reuters.com/business/autos-transportation/volkswagen-invest-up-5-billion-rivian-part-tech-joint-venture-2024-06-25 | +| 2 | Rivian Newsroom – VW JV Launch (Nov 2024) | https://rivian.com/newsroom/article/rivian-and-volkswagen-group-announce-the-launch-of-their-joint-venture | +| 3 | CNBC – VW JV $5.8B (Nov 2024) | https://www.cnbc.com/2024/11/12/rivian-volkswagen-joint-venture.html | +| 4 | Automotive News – VW JV Update | https://www.autonews.com/volkswagen/an-vw-rivian-joint-venture-update-0406 | +| 5 | Rivian VW JV Website | https://rivianvw.tech/ | +| 6 | Fortune – R2 Reveal / 68k Reservations (Mar 2024) | https://fortune.com/2024/03/09/rivian-r2-electric-vehicles-elon-musk-tesla-cost-cutting/ | +| 7 | Rivian – R2 Product Page | https://rivian.com/en-CA/r2 | +| 8 | Autoevolution – Plant Retooling (May 2024) | https://www.autoevolution.com/news/rivian-plant-retooling-paves-the-way-to-profitability-by-the-end-of-2024-233577.html | +| 9 | WardsAuto – Plant Retooling Complete (May 2024) | https://www.wardsauto.com/news/archive-auto-rivian-completes-plant-retooling-pivotal-to-profitability/715673/ | +| 10 | Reuters – 2025 Deliveries Miss (Jan 2026) | https://www.reuters.com/business/autos-transportation/rivians-2025-deliveries-slip-below-expectations-ev-demand-pressure-persists-2026-01-02/ | +| 11 | Yahoo Finance – 2025 Gross Profit / Revenue | https://sg.finance.yahoo.com/news/rivian-defies-expectations-despite-rough-023300613.html | +| 12 | WardsAuto – 10% Salaried Layoff (Feb 2024) | https://www.wardsauto.com/news/archive-auto-rivian-salaried-staff-reduction/708175/ | +| 13 | Rivian Forums – 140 Layoffs (Jun 2025) | https://www.rivianforums.com/rivian-lays-off-140-employees-to-improve-operational-efficiency-for-r2/ | +| 14 | Rivian Forums – 600+ Layoffs (Oct 2025) | https://www.rivianforums.com/rivian-to-lay-off-600-workers | +| 15 | WSJ – 600+ Layoffs (Oct 2025) | https://www.wsj.com/business/autos/rivian-to-layoff-more-than-600-workers-amid-ev-pullback-03a792e5 | +| 16 | CNBC – 600+ Layoffs (Oct 2025) | https://www.cnbc.com/2025/10/23/rivian-layoffs.html | +| 17 | The HR Digest – Layoff Severance (2025) | https://www.thehrdigest.com/the-rivian-layoffs-in-2025-come-with-severance-benefits-for-affected-workers/ | +| 18 | eletric-vehicles.com – Headcount Up YoY (2025) | https://eletric-vehicles.com/rivian/rivian-increases-headcount-in-2025-as-vws-joint-venture-consolidation-offsets-layoffs/ | +| 19 | eletric-vehicles.com – Four C-Suite Exits (Aug 2024) | https://eletric-vehicles.com/rivian/rivian-loses-fourth-c-level-executive-in-less-than-2-months/ | +| 20 | Automotive News – CEO as Interim CMO (Oct 2025) | https://www.facebook.com/AutoNews/posts/rivian-ceo-rj-scaringe-will-serve-as-interim-marketing-chief-as-the-ev-maker-res/1412337770751952/ | +| 21 | The Autopian – CEO Criticism in German Press (Apr 2025) | https://www.theautopian.com/someone-has-it-out-for-rivian-founder-rj-scaringe/ | +| 22 | Reddit/NHTSA – Seat Belt Recall (2025) | https://www.reddit.com/r/Rivian/comments/1l58b4m/rivian_automotive_llc_rivian_is_recalling_certain/ | +| 23 | Recharged.com – R1S 2025 Recalls List | https://recharged.com/articles/2025-rivian-r1s-recalls-list | +| 24 | CBT News – NHTSA Multi-OEM Recalls (Feb 2025) | https://www.cbtnews.com/nhtsa-announces-major-vehicle-recalls-affecting-multiple-automakers/ | +| 25 | Rivian – Official Recall Page | https://rivian.com/support/article/recall-information | +| 26 | Yahoo Finance – RIVN Production Guidance Cut (Oct 2024) | https://finance.yahoo.com/news/rivian-shares-fall-3-slashes-141500557.html | +| 27 | Rivian Newsroom – Q1 2024 Financials | https://rivian.com/newsroom/article/rivian-releases-first-quarter-2024-financial-results | +| 28 | Investing.com – R2 Launch / Earnings Preview | https://www.investing.com/news/earnings/rivian-earnings-in-focus-as-r2-launch-approaches-93CH-4650346 | +| 29 | Yahoo Finance – Analyst Stock Forecast (RIVN) | https://finance.yahoo.com/research/stock-forecast/RIVN | +| 30 | Yahoo Finance – "Outrageously Cheap" Bull Case | https://finance.yahoo.com/markets/stocks/articles/rivian-stock-outrageously-cheap-heres-122500874.html | +| 31 | TheStreet – CEO Compensation vs. Per-Vehicle Loss | https://www.facebook.com/TheStreet/posts/rivian-ceo-walks-away-with-403-million-despite-huge-lossesa-company-that-lost-bi/1505317951189584/ | +| 32 | Careery.pro – Layoff Tracker / SEC Confirmation | https://careery.pro/blog/layoffs/rivian-layoffs | +| 33 | LinkedIn/Morning Consult – Brand Trust Report | https://www.linkedin.com/posts/jennifer-cox-mba_morning-consults-report-on-the-automotive-activity-7445131953277693952-If0u | +| 34 | Electrek – Delivery/Production Sentiment | https://www.facebook.com/electrekco/posts/rivian-is-riding-high-and-recently-shared-production-and-delivery-numbers-ahead-/1383721003793627/ | + +--- + +*Note: A subset of findings carries low-confidence indicators from the research aggregation layer, particularly quantified social media sentiment scores and specific named executive departure details. For those fields, primary verification via SEC 8-K filings, Rivian's official investor relations page (investors.rivian.com), and direct social listening platforms is recommended before drawing firm conclusions.* diff --git a/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/rivian-due-diligence-report.md b/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/rivian-due-diligence-report.md new file mode 100644 index 0000000..ccf67de --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/reports/workpapers/rivian-due-diligence-report.md @@ -0,0 +1,365 @@ +# Due Diligence Report: Rivian Automotive, Inc. (NASDAQ: RIVN) +**Classification:** Draft — For Human Review and Verification +**Prepared:** April/May 2026 +**Research Basis:** SEC filings (EDGAR), Rivian Investor Relations, Cox Automotive/KBB, NHTSA recall portal, OSHA IMIS, court dockets, news sources. All claims carry inline citations. Medium- and low-confidence findings are explicitly flagged in Section 7. + +--- + +## Table of Contents +1. [Executive Summary](#1-executive-summary) +2. [Corporate Profile](#2-corporate-profile) +3. [Financial Overview](#3-financial-overview) +4. [Litigation and Regulatory Risk Assessment](#4-litigation-and-regulatory-risk-assessment) +5. [News and Reputation Analysis](#5-news-and-reputation-analysis) +6. [Competitive Landscape](#6-competitive-landscape) +7. [Confidence and Verification Notes](#7-confidence-and-verification-notes) +8. [Key Risk Flags and Areas Requiring Further Investigation](#8-key-risk-flags-and-areas-requiring-further-investigation) + +--- + +## 1. Executive Summary + +Rivian Automotive is an American electric vehicle manufacturer occupying a differentiated niche in the electric pickup, premium SUV, and commercial delivery van segments. Founded in 2009 by MIT-trained engineer RJ Scaringe and taken public in November 2021 in one of the largest U.S. IPOs on record (~$11.9B raised), Rivian has spent the subsequent years navigating the painful transition from startup to scaled manufacturer. As of mid-2026, the company has reached several meaningful milestones — including its first-ever annual gross profit ($144M for FY2025), a transformative $5.8B joint venture with Volkswagen Group, and the launch of its mass-market R2 vehicle — but remains deeply GAAP-unprofitable (FY2025 net loss estimated ~$3.85B) and faces a critical 18-month execution window to demonstrate that the R2 ramp can deliver sustainable unit economics. + +The strategic picture is one of genuine potential hedged by execution risk. Rivian's core strengths — brand differentiation in the adventure/outdoor space, a software-defined architecture licensed by VW, an exclusive 100,000-unit Amazon commercial fleet contract, and a $6.1B cash runway supplemented by a conditional $6.57B DOE loan — provide meaningful competitive moats that legacy OEMs cannot replicate cheaply or quickly. However, the R1T pickup lags both Tesla's Cybertruck and Ford's F-150 Lightning in unit volume by a wide margin, automotive gross margins remain negative (only software/services and regulatory credit revenue produced the headline gross profit), and a pattern of production guidance misses, multiple rounds of layoffs, and recurring workplace safety issues at the Normal, Illinois facility have created reputational and operational risk. + +From a due diligence risk perspective, the headline concerns are: (1) a $250M securities class action settlement pending final court approval (May 15, 2026), arising from alleged IPO misstatements about vehicle cost structures; (2) an open OSHA fatality investigation following a worker death at the Normal facility in March 2026; (3) continued negative automotive gross margins masked by JV-derived software revenue; and (4) significant policy exposure from EV federal tax credit volatility. This report rates Rivian as a **MEDIUM-HIGH** risk subject requiring enhanced due diligence on the litigation track and careful verification of the automotive unit economics underlying the reported gross profit milestone. + +--- + +## 2. Corporate Profile + +### 2.1 Legal Identity and Structure +Rivian Automotive, Inc. is a Delaware corporation (EIN: 47-3544981; SEC File No. 001-41042) listed on the Nasdaq Global Select Market under the ticker **RIVN**. It employs a dual-class share structure: Class A common stock is publicly traded; Class B shares carry additional voting rights. There is no parent company — Rivian is an independent public company. + +> **Source:** [SEC 10-K FY2024](https://www.sec.gov/Archives/edgar/data/1874178/000187417825000007/rivn-20241231.htm) · [SEC S-1](https://www.sec.gov/Archives/edgar/data/1874178/000119312521289903/d157488ds1.htm) + +### 2.2 Founding History +Rivian was founded in June 2009 in Rockledge, Florida by **Robert "RJ" Scaringe** under the original name Mainstream Motors. The company was renamed Rivian Automotive in 2011 and pivoted to electric adventure vehicles. Scaringe holds a B.S. from Rensselaer Polytechnic Institute and a Ph.D. in Mechanical Engineering from MIT and is the sole original founder. He was designated Board Chair in March 2018 and remains both CEO and Chair. + +> **Source:** [Rivian S-1](https://www.sec.gov/Archives/edgar/data/1874178/000119312521289903/d157488ds1.htm) + +### 2.3 Headquarters and Facilities + +| Location | Purpose | +|---|---| +| **14600 Myford Road, Irvine, CA 92606** | Principal Executive Offices (HQ) | +| **Normal, Illinois** | Operational manufacturing — R1T, R1S, EDV; R2 production launched April 2026 | +| **Stanton Springs North, Georgia** | Future plant (~2,000 acres); Phase 1 construction targeted 2026; production anticipated 2028; planned capacity 300,000 vehicles/year | + +> **Sources:** [Rivian Our Company](https://rivian.com/our-company) · [SEC 8-K Mar 18, 2026](https://www.sec.gov/Archives/edgar/data/1874178/000110465926031794/tm269292d1_8k.htm) · [Georgia.org](https://georgia.org/rivian) + +### 2.4 Key Executives + +| Name | Title | Notes | +|---|---|---| +| **RJ Scaringe** | Founder, CEO & Board Chair | Sole founder; Board Chair since 2018; served as interim CMO Oct 2025 | +| **Claire McDonough** | CFO | Board member of Rivian & VW Group Technologies JV | +| **Javier Varela** | COO | — | +| **Mike Callahan** | CAO & CLO | Board member of Mind Robotics, Inc. | +| **Greg Revelle** | CCO | Appointed January 12, 2026 | + +> **Sources:** [Rivian Our Company](https://rivian.com/our-company) · [Rivian 2026 Proxy](https://www.stocktitan.net/sec-filings/RIVN/def-14a-rivian-automotive-inc-de-definitive-proxy-statement-3c11f30d38d2.html) + +### 2.5 Board of Directors + +The board comprises seven directors including the CEO. Notable additions include **Aidan Gomez** (AI expert, joined April 21, 2025) and the recent resignation of **Rose Marcario** (effective January 1, 2026). Lead Independent Director is **Karen Boone**. Other independent directors include John Krafcik (former Waymo CEO) and Jay Flatley (former Illumina CEO). + +> **Source:** [Rivian 2026 Proxy](https://www.stocktitan.net/sec-filings/RIVN/def-14a-rivian-automotive-inc-de-definitive-proxy-statement-3c11f30d38d2.html) · [Rivian Newsroom – Aidan Gomez](https://rivian.com/en-NL/newsroom/article/aidan-gomez-joins-rivians-board-of-directors) + +### 2.6 Ownership Structure + +Major shareholders as of early 2026: + +| Shareholder | Approximate Stake | +|---|---| +| **Amazon** | ~12.9% | +| **Volkswagen Group** | ~11.7% (via convertible notes converting to equity) | +| **Global Oryx (Abdul Latif Jameel)** | ~9.0% | +| **Vanguard Group** | ~5.4% | + +> **Source:** [Rivian 2026 Proxy](https://www.stocktitan.net/sec-filings/RIVN/def-14a-rivian-automotive-inc-de-definitive-proxy-statement-3c11f30d38d2.html) · [SEC 8-K Mar 18, 2026](https://www.sec.gov/Archives/edgar/data/1874178/000110465926031794/tm269292d1_8k.htm) + +### 2.7 Subsidiaries and Affiliates +- **Rivian and Volkswagen Group Technologies, LLC** — 50/50 joint venture for software and electrical architecture development, launched November 2024. +- **Also, Inc.** — Micromobility spin-out; Rivian holds ~35.3% stake (2025). +- **Mind Robotics, Inc.** — Industrial robotics venture; Rivian holds ~37.6% stake (2025). + +### 2.8 Headcount + +| Year-End | Employees | YoY Change | +|---|---|---| +| 2022 | ~14,120 | +35.5% | +| 2023 | 16,790 | +18.9% | +| 2024 | 14,861 | **–11.5%** | +| 2025 | 15,232 | +2.5% | + +Headcount peaked in 2023 amid aggressive hiring, then was cut sharply in 2024 through multiple layoff rounds. The modest 2025 recovery is largely attributable to VW JV personnel consolidation offsetting operational workforce reductions. + +> **Sources:** [Macrotrends](https://www.macrotrends.net/stocks/charts/RIVN/rivian-automotive/number-of-employees) · [eletric-vehicles.com](https://eletric-vehicles.com/rivian/rivian-increases-headcount-in-2025-as-vws-joint-venture-consolidation-offsets-layoffs/) + +--- + +## 3. Financial Overview + +### 3.1 Pre-IPO Funding +Rivian raised over **$10.5B in private capital** across approximately 10 rounds before going public. Landmark investors include **Amazon** ($700M, February 2019), **Ford** ($500M, April 2019), **Cox Automotive** ($350M), and a series of T. Rowe Price-led rounds totaling $6.45B (December 2019 through July 2021). Ford fully exited its Rivian stake in 2023. + +> **Sources:** [NYT Feb 2019](https://www.nytimes.com/2019/02/15/business/rivian-amazon.html) · [Rivian Newsroom Jan 2021](https://rivian.com/newsroom/article/rivian-announces-2-65-billion-investment-round) · [PitchBook](https://pitchbook.com/news/articles/rivian-ipo-timeline-electric-vehicles) + +### 3.2 IPO +Rivian priced its IPO at **$78.00/share** on November 9, 2021, raising **~$11.9B** in gross proceeds — one of the largest U.S. IPOs on record. The stock closed its first trading day (November 10, 2021) at $100.73, giving Rivian a market cap briefly approaching **$100B**. As of April 2026, the stock trades approximately **78% below** its IPO-day close, with a market cap of approximately **$21.4B**. + +> **Sources:** [PitchBook](https://pitchbook.com/news/articles/rivian-ipo-timeline-electric-vehicles) · [Macrotrends Market Cap](https://www.macrotrends.net/stocks/charts/RIVN/rivian-automotive/market-cap) · [CompaniesMarketCap](https://companiesmarketcap.com/rivian/marketcap) + +### 3.3 Revenue + +| Fiscal Year | Revenue | YoY | +|---|---|---| +| FY 2023 | ~$4.43B *(est.)* | — | +| FY 2024 | **$4.970B** | +12.1% | +| FY 2025 | **$5.387B** | +8.4% | + +**Note on revenue composition (FY2025):** Automotive revenues declined 15% YoY to $3.83B, while software and services revenue surged 222% to $1.56B — driven almost entirely by VW JV development fees. This composition shift is significant: revenue growth is increasingly dependent on JV milestone payments rather than vehicle sales. + +> **Sources:** [Rivian FY2025 Earnings Release](https://rivian.com/newsroom/article/rivian-releases-fourth-quarter-full-year-2025-financial-results) · [Rivian FY2024 Earnings Release](https://rivian.com/newsroom/article/rivian-releases-fourth-quarter-full-year-2024-financial-results) + +### 3.4 Gross Profit — A Milestone with Caveats + +| Period | Consolidated GP | Automotive GP | Software & Services GP | +|---|---|---|---| +| FY 2024 (full year) | ~$(1.2B) | Negative | — | +| FY 2025 (full year) | **$144M** ✅ | **$(432M)** loss | **$576M** | +| Q4 2025 | $120M | $(59M) | $179M | + +Rivian achieved its first-ever positive annual gross profit in FY2025 — a genuine milestone. However, the underlying automotive segment remained materially loss-making (–$432M). The headline gross profit was entirely funded by software/services revenue from the VW JV. This distinction is critical: if JV milestone payments slow or stop (e.g., due to VW strategy shifts or milestone failures), consolidated gross profit would revert to deep negative territory. + +> **Source:** [Rivian FY2025 Earnings Release](https://rivian.com/newsroom/article/rivian-releases-fourth-quarter-full-year-2025-financial-results) + +### 3.5 Net Loss and Cash Burn +- **FY2024 net loss:** $(4.7B) (confirmed) +- **FY2025 net loss:** ~$(3.85B) *(estimated, analyst consensus; Rivian confirmed narrowed losses but full GAAP net income figure to be verified in 10-K filing)* +- **Q4 2025 net loss:** $(804M) (confirmed) +- **FY2025 free cash flow:** –$1.14B (confirmed via Q4 2025 earnings) +- **Year-end 2025 cash:** **$6.1B** *(confirmed via Q4 2025 earnings call)* + +> ⚠️ **Discrepancy note:** The financial-health workpaper estimated cash at ~$7.1–7.2B, but the confirmed Q4 2025 earnings release states **$6.1B in cash and equivalents** at year-end. The workpaper figure should be disregarded in favor of the confirmed number. + +> **Source:** [Q4 2025 Earnings (X/SawyerMerritt)](https://x.com/SawyerMerritt/status/2022058503699882159) · [Rivian FY2025 Earnings](https://rivian.com/newsroom/article/rivian-releases-fourth-quarter-full-year-2025-financial-results) + +### 3.6 Debt and Liquidity +- **Total debt:** ~$4.9B *(estimated; to be verified against FY2025 10-K)* +- **DOE ATVM Loan:** Up to **$6.57B** conditional loan for the Georgia facility — **undrawn** as of this writing; subject to ongoing DOE approval milestones +- **VW JV pipeline:** Additional ~$1.46B in milestone-gated tranches remaining under the $5.8B deal (after ~$3B+ already invested); next $460M equity investment expected when first VW-brand vehicle using JV tech reaches market +- **2026 CapEx guidance:** $1.95–$2.05B +- **2026 Adjusted EBITDA guidance:** $(1.8B)–$(2.1B) loss + +> **Sources:** [Rivian Q4 2025 Earnings](https://rivian.com/newsroom/article/rivian-releases-fourth-quarter-full-year-2025-financial-results) · [Electrek Mar 27, 2026](https://electrek.co/2026/03/27/volkswagen-groups-joint-venture-with-rivian-hits-latest-milestone-unlocking-another-1b-for-the-ev-automaker/) · [TechCrunch Mar 27, 2026](https://techcrunch.com/2026/03/27/rivian-gets-another-1b-from-volkswagen/) + +### 3.7 Delivery Performance and Forward Guidance + +| Period | Deliveries | YoY Change | +|---|---|---| +| FY 2024 | 51,579 | +3.8% | +| FY 2025 | **42,247** | **–18.1%** | +| FY 2026 Guidance | **62,000–67,000** | +47–59% *(projected)* | + +The 18% delivery decline in 2025 reflects the expiration of EV federal tax credits, production plant retooling for R2, and softened consumer demand. The 2026 guidance of 62,000–67,000 vehicles represents an ambitious ramp anchored by R2 customer deliveries beginning Q2 2026. Analysts polled by FactSet project ~17,200 R2 deliveries in 2026, while Rivian has implied 20,000–25,000. The R2 ramp is the single most important near-term financial catalyst. + +> **Sources:** [Rivian Q4 2025 Deliveries](https://finance.yahoo.com/news/rivian-releases-q4-2025-production-133000178.html) · [Sherwood News Q1 2026](https://sherwood.news/markets/rivian-reports-q1-earnings-2026/) · [Reuters Jan 2, 2026](https://www.reuters.com/business/autos-transportation/rivians-2025-deliveries-slip-below-expectations-ev-demand-pressure-persists-2026-01-02/) + +--- + +## 4. Litigation and Regulatory Risk Assessment + +> **EDD Recommendation:** Escalate. Two HIGH-risk items require immediate monitoring; additional MEDIUM-risk items aggregate into a meaningful operational risk profile. + +### 4.1 Securities Class Action — Crews v. Rivian ⚠️ HIGH RISK + +| Field | Detail | +|---|---| +| **Case** | *Crews v. Rivian Automotive*, No. 2:22-cv-01524-JLS-E (C.D. Cal.) | +| **Filed** | March 7, 2022 (consolidated) | +| **Settlement** | $250,000,000 cash | +| **Status** | Preliminary approval December 18, 2025; **Final hearing May 15, 2026** | + +Plaintiffs alleged Rivian misled investors in its November 2021 IPO registration statement regarding vehicle production costs and pricing, then hiked prices for pre-ordered vehicles in March 2022 just weeks after the IPO, causing a sharp stock decline. Rivian agreed to the $250M settlement in October 2025. Final court approval is pending; the settlement is not yet binding. + +**Implication:** This settlement carries significant implications — it validates the allegation that IPO-era disclosures were materially misleading. The $250M payment will draw down cash reserves. Insurers' contribution, if any, is not publicly confirmed and should be investigated. + +> **Sources:** [Reuters Oct 23, 2025](https://www.reuters.com/sustainability/boards-policy-regulation/rivian-agrees-pay-250-million-settle-ipo-fraud-lawsuit-2025-10-23/) · [CFO Dive](https://www.cfodive.com/news/rivian-pay-250m-settle-ipo-fraud-suit-electricvehicles/803780) · [Kessler Topaz](https://www.ktmc.com/news/kessler-topaz-achieves-250-million-settlement-in-rivian-ipo-suit) + +### 4.2 OSHA Workplace Fatality — Normal, IL ⚠️ HIGH RISK + +On **March 5, 2026**, a 61-year-old worker (Kevin Lancaster) was killed after being pinned between a semi-trailer and a loading dock at Rivian's Normal, Illinois warehouse. An OSHA fatality investigation is open; penalties and citation determinations are pending. + +This event occurs against a backdrop of a **pattern of OSHA serious citations** at the Normal facility: 16 initial "serious" citations were documented between 2022–2024 (Rivian disputes, citing only 2 sustained). A separate contractor was seriously injured on-site in April 2024. This is not an isolated incident — it is the most severe escalation of a documented safety compliance concern. + +> **Sources:** [25 News Now Mar 5, 2026](https://www.25newsnow.com/2026/03/05/man-pinned-between-semi-trailer-loading-dock-rivian-warehouse-dies/) · [WGLT Jan 16, 2025](https://www.wglt.org/local-news/2025-01-16/at-rivian-some-workers-say-production-comes-at-the-expense-of-safety) + +### 4.3 NHTSA Recalls — MEDIUM RISK + +21+ recalls have been issued since May 2022. Safety-critical items include: +- **26V-009:** Improperly secured seat belt D-ring assemblies (~24,214 vehicles, 2022–2025 MY) +- **26V-003:** Toe link joint separation risk +- **25V-537:** Ground connection causing loss of drive power +- **22V-744:** Steering knuckle fastener loosening +- **23V-109:** Passenger airbag sensor faults +- Rivian vehicles included in a **multi-OEM NHTSA sweep** (Feb 2025) covering 225,000+ vehicles from Ford, Ram, and Rivian + +No open NHTSA defect investigations are disclosed; no fatalities linked to recalled defects. The recall volume is consistent with a young OEM still maturing its quality processes. + +> **Sources:** [Rivian Recall Portal](https://rivian.com/support/article/recall-information) · [CBT News Feb 24, 2025](https://www.cbtnews.com/nhtsa-announces-major-vehicle-recalls-affecting-multiple-automakers/) + +### 4.4 Product Liability — Young v. Rivian (MEDIUM RISK) + +An active product liability suit (*Young v. Rivian Automotive*, C.D. Ill.) is currently pending. Specific allegations, damages sought, and case status details are not publicly disclosed beyond initial filing. Requires monitoring. + +### 4.5 Trade Secrets — Tesla v. Rivian (RESOLVED) + +Tesla's four-year trade secret lawsuit alleging misappropriation of battery technology via former Tesla employees hired by Rivian was **settled and dismissed** in December 2024/January 2025 on undisclosed terms. No ongoing exposure. + +> **Source:** [Proskauer](https://www.proskauer.com/blog/ev-trade-secrets-litigation-series-tesla-and-rivian-resolve-high-stakes-legal-clash-over-ip) + +### 4.6 Regulatory and Sanctions Screening + +| Category | Finding | +|---|---| +| **SEC** | No active investigations or enforcement actions | +| **FTC / DOJ** | No active investigations identified | +| **NLRB** | No enforcement actions identified | +| **OFAC / EU / UN Sanctions** | No designations | +| **EPA / Environmental** | No enforcement actions; Georgia EPD air quality permit issued August 2024 | +| **Georgia Plant Zoning** | Litigation dismissed; appellate affirmance September 30, 2024 — fully resolved | + +--- + +## 5. News and Reputation Analysis + +### 5.1 Overall Sentiment: Mixed / Neutral — Cautiously Optimistic on Technology, Weighed by Execution + +Rivian's media reputation across 2024–2026 is bifurcated: product and technology coverage is strongly positive, while financial execution, workforce volatility, and delivery misses generate persistent negative narratives. + +### 5.2 Positive Signals + +**Volkswagen JV** (June–November 2024): VW Group's commitment of up to $5.8B — including a 50/50 technology JV to license Rivian's zonal electrical/electronic architecture — was widely treated as major strategic validation. Media framing characterized it as de-risking Rivian's technology roadmap and providing essential capital. March 2026 saw a further $1B milestone tranche unlocked after successful winter testing of Rivian's SDV architecture in VW prototypes. +> **Source:** [Reuters Jun 25, 2024](https://www.reuters.com/business/autos-transportation/volkswagen-invest-up-5-billion-rivian-part-tech-joint-venture-2024-06-25) · [Electrek Mar 27, 2026](https://electrek.co/2026/03/27/volkswagen-groups-joint-venture-with-rivian-hits-latest-milestone-unlocking-another-1b-for-the-ev-automaker/) + +**R2 Reveal** (March 2024): 68,000+ reservations within 24 hours of the R2 reveal at ~$45K — a figure that generated genuine enthusiasm and validated demand for a more affordable Rivian product. +> **Source:** [Fortune Mar 9, 2024](https://fortune.com/2024/03/09/rivian-r2-electric-vehicles-elon-musk-tesla-cost-cutting/) + +**Gross Profit Milestone** (FY2025): $144M annual gross profit was reported as a landmark despite delivery volume declines, with positive media framing around financial maturation. +> **Source:** [Yahoo Finance Apr 2, 2026](https://sg.finance.yahoo.com/news/rivian-defies-expectations-despite-rough-023300613.html) + +### 5.3 Negative Patterns (Recurring, Not Isolated) + +**Layoffs (three rounds in 13 months):** February 2024 (~10% salaried workforce), June 2025 (~140 employees), October 2025 (600+ workers, with EV tax credit expiration cited as trigger). Despite the volume, total headcount was up slightly in 2025 due to VW JV additions. +> **Sources:** [WardsAuto Feb 2024](https://www.wardsauto.com/news/archive-auto-rivian-salaried-staff-reduction/708175/) · [WSJ Oct 2025](https://www.wsj.com/business/autos/rivian-to-layoff-more-than-600-workers-amid-ev-pullback-03a792e5) · [CNBC Oct 2025](https://www.cnbc.com/2025/10/23/rivian-layoffs.html) + +**Delivery underperformance:** 2024 guidance cut mid-year; 2025 actual deliveries (42,247) missed original guidance range of 46,000–51,000 by up to 9,000 units. Consecutive years of guidance misses have eroded analyst confidence in management forecasting. +> **Source:** [Reuters Jan 2, 2026](https://www.reuters.com/business/autos-transportation/rivians-2025-deliveries-slip-below-expectations-ev-demand-pressure-persists-2026-01-02/) + +**C-suite instability:** Four C-level executive departures in an approximately eight-week window in summer 2024. CEO Scaringe assumed the interim CMO role in October 2025 following restructuring, adding multiple responsibilities to a single executive. A new CCO (Revelle) was only appointed in January 2026. +> **Source:** [Automotive News Oct 2025](https://www.facebook.com/AutoNews/posts/rivian-ceo-rj-scaringe-will-serve-as-interim-marketing-chief-as-the-ev-maker-res/1412337770751952/) + +### 5.4 Isolated Reputational Risks + +**CEO criticism in German press** (April 2025): A German business magazine published unnamed-source quotes implying dysfunction under CEO Scaringe. No corroborating named sources have surfaced in major outlets. *Low confidence — unverified; monitor for recurrence.* + +**CEO compensation optics**: CEO total compensation (~$403M) versus a ~$39K loss per vehicle was a one-cycle media story. No governance escalation followed. + +**2022 price-hike incident**: The retroactive pricing change for pre-order customers shortly after IPO — the triggering event for the securities class action — has not recurred. Brand reputational damage from this incident appears largely contained. + +--- + +## 6. Competitive Landscape + +### 6.1 Rivian's Market Positioning + +Rivian competes across three EV segments: electric full-size pickup (R1T), premium 3-row SUV (R1S), and commercial last-mile delivery vans (EDV/RCV). The brand is positioned around **adventure, outdoor capability, and software-forward design** — a niche that differentiates it from both Tesla's tech-luxury positioning and Ford's mainstream utility positioning. + +In the U.S. EV market (total ~1.3M units in 2024), Rivian held approximately **4% share** with 51,579 total deliveries, ranking 4th behind Tesla, GM, and Ford. The R1S is the company's strongest product (26,934 units in 2024, outpacing Kia EV9 22,017 and Tesla Model X 19,855). The R1T trails badly in the pickup segment (11,085 units vs. Cybertruck's 38,965 and Lightning's 33,510). Commercial van (EDV: 13,560 units) narrowly beats Ford E-Transit (12,610 units) but faces competitive pressure from a well-resourced incumbent. + +The R2 — a ~$45K smaller SUV launching in Q2 2026 — is Rivian's most significant competitive pivot: moving down-market to compete in the volume EV space while retaining adventure brand identity. If the R2 ramp succeeds, it has the potential to materially close the volume gap versus larger competitors and be the key catalyst for automotive gross profit. + +> **Sources:** [Cox Automotive/KBB Q4 2024 EV Report](https://www.coxautoinc.com/wp-content/uploads/2025/01/Q4-2024-Kelley-Blue-Book-EV-Sales-Report.pdf) · [Rivian Q4 2024 Deliveries](https://rivian.com/newsroom/article/rivian-releases-q4-2024-production-and-delivery-figures) + +--- + +### 6.2 Competitor: Tesla, Inc. (NASDAQ: TSLA) + +Tesla is Rivian's most formidable competitor, operating from a position of overwhelming financial and scale advantage. With **$97.7B in FY2024 revenue**, **$7.1B net income**, and **$36.6B cash**, Tesla can absorb sustained pricing pressure that would be existential for Rivian. In pickups, the Cybertruck (38,965 U.S. units in 2024) outsold the R1T by 3.5x despite launching two years later. In SUVs, the R1S outperforms the Model X (26,934 vs. 19,855 units) — one of Rivian's few measurable volume wins over Tesla. The R1S's price advantage (~$2K cheaper at base), superior towing (7,700 vs. 5,000 lbs), longer range ceiling (410 vs. 335 miles), and purpose-built off-road capability represent genuine product advantages over the Model X. However, Tesla's FSD ecosystem ($596M recognized in FY2024) and charging network (now opened via NACS to Rivian owners) represent software and infrastructure moats that Rivian cannot match in the near term. Tesla's most significant current vulnerability relative to Rivian is CEO-brand toxicity: Elon Musk's political activities have driven measurable brand damage in key progressive and European markets, an area where Rivian's brand identity is comparatively clean and positively perceived. + +> **Sources:** [Tesla 2024 10-K](https://www.sec.gov/Archives/edgar/data/1318605/000162828025003063/tsla-20241231.htm) · [Cox Automotive EV Report](https://www.coxautoinc.com/wp-content/uploads/2025/01/Q4-2024-Kelley-Blue-Book-EV-Sales-Report.pdf) · [Tesla Model X page](https://www.tesla.com/modelx) · [Rivian R1S page](https://rivian.com/r1s) + +--- + +### 6.3 Competitor: Ford Motor Company (NYSE: F) + +Ford is Rivian's most direct competitor in the electric pickup and commercial van segments, and the only legacy OEM that was a major Rivian investor (exited 2023). Ford's F-150 Lightning (33,510 U.S. units in 2024, +39% YoY) outsells the R1T by 3x, backed by the F-Series brand (America's best-selling vehicle for 47 consecutive years), a 3,000-dealer service network, and a starting price of ~$54,780 vs. the R1T's ~$70,000+. Ford Pro's commercial fleet ecosystem (telematics, upfitting, financing) gives the E-Transit distribution and serviceability advantages over the Rivian EDV. However, Ford's EV financial position is structurally dire: the Ford Model e division lost **$5.1B in EBIT in FY2024**, implying a loss of **$48,000+ per EV sold** — worse unit economics than any other major OEM, including Rivian. Ford has deferred up to $12B in EV investment, scaled back Lightning production targets, and pivoted emphasis toward hybrids. Its Lightning platform is ICE-derivative rather than purpose-built, making it technically inferior to the R1T on software, OTA updates, and performance. Ford's dealer model also introduces service experience inconsistency that Rivian's direct model avoids. Critically, Amazon's equity stake in Rivian and exclusive EDV contract structurally closes the commercial van opportunity to Ford for the foreseeable future. + +> **Sources:** [Ford 2024 10-K](https://www.sec.gov/Archives/edgar/data/37996/000003799625000013/f-20241231.htm) · [Electrive Feb 6, 2025](https://www.electrive.com/2025/02/06/ford-posts-another-big-loss-for-its-ev-division-in-2024/) · [Ford F-150 Lightning page](https://www.ford.com/trucks/f150/f150-lightning) + +--- + +### 6.4 Competitor: Kia Corporation (KRX: 000270) + +Kia competes with Rivian most directly through the **EV9**, a 3-row electric SUV that won the 2024 North American Utility Vehicle of the Year and posted 22,017 U.S. deliveries in 2024 — the most direct head-to-head challenge to the R1S in the premium 3-row segment. Kia's key advantages over Rivian include pricing ($54,900 base vs. ~$75,900 for the R1S — a $21K gap), **800V E-GMP fast-charging architecture** (10–80% in ~24 min vs. Rivian's ~30–40 min), and Hyundai Motor Group backing (~$87B parent market cap with ~$8.85B operating profit in FY2024 alone). Kia's ~800 U.S. franchise dealers provide national coverage Rivian's direct-only model cannot match. However, the R1S maintains meaningful advantages: it starts with greater range (up to 410 miles vs. 304 miles), substantially more towing capacity (7,700 vs. 5,000 lbs), dramatically faster acceleration (2.6s vs. ~5.0s for Quad Motor), and unique capability features (Gear Tunnel, frunk, Camp Mode, Rock Crawl) that define the adventure-luxury niche. Kia's Georgia battery investments ($7B+ across SK On and LG Energy Solution JVs) represent a long-term structural IRA compliance advantage, but Rivian's U.S.-only manufacturing already qualifies for tax credits when in effect. The EV9's mainstream-premium positioning and Kia's massive pricing undercut represent genuine threats to R1S volume growth among family-oriented buyers who do not require off-road capability. + +> **Sources:** [Kia 2024 Annual Results](https://worldwide.kia.com/en/newsroom/view/?id=161160) · [Cox Automotive EV Report](https://www.coxautoinc.com/wp-content/uploads/2025/01/Q4-2024-Kelley-Blue-Book-EV-Sales-Report.pdf) · [Car and Driver R1S](https://www.caranddriver.com/rivian/r1s-2025) + +--- + +## 7. Confidence and Verification Notes + +The following findings carry medium or low confidence and should be verified by a human reviewer before the report is relied upon for investment or credit decisions. + +| # | Finding | Confidence | Issue | Recommended Action | +|---|---|---|---|---| +| 1 | **FY2025 net loss of ~$(3.85B)** | ⚠️ MEDIUM | Analyst estimate; full GAAP net income not confirmed against FY2025 10-K filing | Obtain and verify FY2025 10-K when filed | +| 2 | **Total debt ~$4.9B** | ⚠️ MEDIUM | Third-party aggregator estimate; not confirmed against FY2025 balance sheet | Verify against FY2025 10-K Note on Long-Term Debt | +| 3 | **FY2023 revenue ~$4.43B** | ⚠️ MEDIUM | Macrotrends aggregator figure, not directly sourced from SEC filing | Confirm against Rivian 10-K FY2023 | +| 4 | **VW equity stake ~11.7%** | ⚠️ MEDIUM | Based on convertible notes converting to equity tranches; actual ownership percentage fluctuates as tranches convert. The March 2026 8-K confirms a tranche, but cumulative percentage requires proxy verification | Cross-reference 2026 proxy statement for final beneficial ownership | +| 5 | **CEO criticism in German business press (April 2025)** | 🔴 LOW | Single unnamed-source report; no corroboration from named sources in major outlets | Monitor for recurrence; do not rely as established fact | +| 6 | **Four C-suite exits in eight weeks (Summer 2024)** | ⚠️ MEDIUM | Confirmed as a pattern by EV industry press, but individual names/roles not widely detailed by top-tier outlets | Verify against SEC 8-K filings for the applicable period (Summer 2024) | +| 7 | **Georgia plant capacity target of 300,000 vehicles/year** | ⚠️ MEDIUM | Based on recent expansion announcements; subject to DOE loan approval and Phase 1/2 construction timelines | Monitor DOE ATVM loan conditional approval status | +| 8 | **Kia EV9 vs. R1S off-road mode comparison** | ⚠️ MEDIUM | Detailed spec comparisons sourced from product pages and third-party reviews; may change with future OTA updates or trim changes | Refresh for any 2026 model year updates | + +**Key verified and high-confidence findings:** +- FY2025 gross profit of $144M: ✅ Confirmed via Rivian official press release +- FY2025 deliveries of 42,247: ✅ Confirmed via Rivian official press release +- Year-end 2025 cash of $6.1B: ✅ Confirmed via Q4 2025 earnings +- $250M securities class action settlement: ✅ Confirmed via multiple court and news sources +- OSHA fatality March 5, 2026: ✅ Confirmed via local news +- VW JV total up to $5.8B: ✅ Confirmed via SEC 8-K and multiple news sources +- R2 production launch April 2026 Normal, IL: ✅ Confirmed via Rivian newsroom + +--- + +## 8. Key Risk Flags and Areas Requiring Further Investigation + +### 🔴 Immediate / High Priority + +1. **Securities Class Action Final Approval (May 15, 2026):** The $250M settlement in *Crews v. Rivian* reaches its final approval hearing on May 15, 2026. Confirm: (a) court approval obtained; (b) insurance carrier contribution to settlement (if any); (c) impact on cash from operations. The underlying allegation — that Rivian's IPO materials misrepresented vehicle cost structures — raises questions about the quality and completeness of disclosures to investors. + +2. **OSHA Fatality Investigation — Normal, IL (March 2026):** An open OSHA fatality investigation following a worker death has no resolution timeline. Investigate: (a) expected penalty range; (b) potential for willful-violation designation (maximum OSHA penalty ~$156,259/violation); (c) pattern of prior citations and whether this fatality could trigger enhanced federal scrutiny of the entire Normal facility; (d) any potential impact on manufacturing throughput. + +3. **Automotive Gross Margin — Structural vs. Temporary?** Rivian's consolidated gross profit ($144M FY2025) is entirely funded by VW JV software/services revenue. The automotive segment lost $432M at the gross level. Investigate: (a) the trajectory of automotive gross margin as R2 volumes scale in 2026; (b) the specific cost-per-unit for R2 vs. R1 generation vehicles; (c) what portion of the ~$270M decline in regulatory credit sales in Q4 2025 is permanent vs. timing-related. + +### 🟡 Medium Priority + +4. **R2 Production Ramp Execution Risk:** The 2026 delivery guidance of 62,000–67,000 vehicles implies a near-doubling of volume, driven almost entirely by R2. Any stumble in the Normal, IL expansion (where construction is active and a fatality recently occurred), supply chain disruption, or demand softness could cause a severe miss. Verify: current Normal plant expansion status; battery supply chain agreements; R2 reservation-to-order conversion rates. + +5. **DOE ATVM Loan ($6.57B, Conditional and Undrawn):** This loan is a cornerstone of Rivian's Georgia factory financing. However, it is conditional, undrawn, and subject to ongoing DOE approval milestones under the Biden-era program. Investigate: current status under the current administration; any renegotiation risk; milestone conditions remaining before drawdown eligibility. + +6. **Dual-Class Governance Concentration:** RJ Scaringe holds Class B shares with superior voting rights, concentrating effective control in a single founder. Assess: (a) what percentage of total voting power Scaringe controls; (b) whether Amazon (12.9%), VW (11.7%), and Global Oryx (9.0%) stakes include any preferential governance rights that could create future conflicts of interest. + +7. **EV Tax Credit Policy Exposure:** The October 2025 layoffs were explicitly attributed to EV federal tax credit expiration. Any further adverse changes to the $7,500 IRA EV credit (eligibility criteria, income caps, or full repeal) would directly impact Rivian demand. Monitor legislative activity and Rivian's IRA compliance status for R2 qualification. + +8. **Rivian–Amazon Commercial Dependency:** Amazon holds a ~12.9% equity stake and has contracted for up to 100,000 EDV units. While this is a powerful revenue anchor, it also creates concentrated customer dependency. Investigate: (a) minimum purchase commitments remaining under the Amazon contract; (b) any penalties or renegotiation clauses; (c) Amazon's satisfaction and timeline for the full 100K order. + +9. **Ford's Exit and Potential Re-Entry:** Ford exited Rivian entirely in 2023 after walking back a co-development agreement. The circumstances of that exit (and any non-compete obligations or technology transfer provisions) should be reviewed given that Ford now competes directly with Rivian in the same segments. + +--- + +*This report is a draft prepared for human review. It is not a final investment or credit memo. All medium- and low-confidence findings are flagged in Section 7 and require independent verification before reliance. Sources are cited inline throughout.* diff --git a/python-recipes/parallel-deepagents-due-diligence/requirements.txt b/python-recipes/parallel-deepagents-due-diligence/requirements.txt new file mode 100644 index 0000000..40f3cd8 --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/requirements.txt @@ -0,0 +1,5 @@ +deepagents>=0.5.3 +langchain-parallel>=0.4.0 +langchain-anthropic>=0.3.0 +parallel-web>=0.1.0 +pydantic>=2.0 diff --git a/python-recipes/parallel-deepagents-due-diligence/sample_output_rivian.md b/python-recipes/parallel-deepagents-due-diligence/sample_output_rivian.md new file mode 100644 index 0000000..8406559 --- /dev/null +++ b/python-recipes/parallel-deepagents-due-diligence/sample_output_rivian.md @@ -0,0 +1,136 @@ +The full due diligence report has been written to `/workpapers/rivian-due-diligence-report.md`. Here is the complete synthesis: + +--- + +# Due Diligence Report: Rivian Automotive, Inc. (NASDAQ: RIVN) +**Draft — April/May 2026 | For Human Review** + +--- + +## 1. Executive Summary + +Rivian is an electric vehicle manufacturer occupying a differentiated niche across electric pickups (R1T), premium 3-row SUVs (R1S), and commercial delivery vans (EDV). Founded in 2009 by MIT-trained engineer RJ Scaringe and taken public in November 2021 (~$11.9B IPO), the company has reached several meaningful milestones but remains deeply unprofitable. + +**Overall risk rating: MEDIUM-HIGH.** Three drivers: +1. A **$250M securities class action settlement** pending final court approval May 15, 2026 — arising from alleged IPO misstatements about vehicle cost structures. +2. An **open OSHA fatality investigation** following a worker death at the Normal, IL facility in March 2026, against a backdrop of a documented pattern of prior serious citations. +3. **Automotive gross margins remain materially negative** — the headline FY2025 gross profit ($144M) was entirely funded by VW JV software/services revenue; the automotive segment lost $432M at the gross level. + +--- + +## 2. Corporate Profile + +- **Founded:** 2009 (Rockledge, FL) by sole founder **RJ Scaringe**; renamed from Mainstream Motors in 2011 +- **HQ:** Irvine, CA | **Manufacturing:** Normal, IL (operational) + Stanton Springs North, GA (planned 2028, 300K units/yr) +- **Structure:** Delaware corp; dual-class shares; no parent company +- **Key executives:** Scaringe (CEO/Chair), Claire McDonough (CFO), Javier Varela (COO), Mike Callahan (CAO/CLO) +- **Headcount:** 15,232 (end-2025) — peaked at 16,790 in 2023, cut to 14,861 in 2024, modest recovery in 2025 via VW JV consolidation +- **Major shareholders:** Amazon (~12.9%), Volkswagen (~11.7%), Global Oryx/ALJ (~9.0%), Vanguard (~5.4%) +- **Key subsidiaries/affiliates:** Rivian & VW Group Technologies LLC (50/50 JV); Also, Inc. (~35% stake, micromobility); Mind Robotics (~38% stake) + +--- + +## 3. Financial Overview + +| Metric | Value | Notes | +|---|---|---| +| Pre-IPO Capital Raised | >$10.5B | ~10 rounds; Amazon, Ford, T. Rowe Price, Cox | +| IPO (Nov 10, 2021) | $78/share; ~$11.9B raised | First-day close $100.73; mkt cap ~$100B | +| Current Market Cap | ~$21.4B | ~78% below IPO-day high | +| FY2025 Revenue | $5.387B (+8.4% YoY) | Automotive –15%; Software +222% (VW JV) | +| FY2025 Gross Profit | **$144M** ✅ | First-ever positive; but automotive GP = –$432M | +| FY2025 Deliveries | 42,247 (–18% YoY) | Tax credit expiration, plant retooling | +| FY2025 Net Loss | ~$(3.85B) *(est.)* | Q4 alone: –$804M confirmed | +| Year-End 2025 Cash | **$6.1B** | ⚠️ Workpaper estimated ~$7.1B — discrepancy; $6.1B is the confirmed figure | +| Total Debt | ~$4.9B *(est.)* | To be verified against FY2025 10-K | +| DOE ATVM Loan | Up to $6.57B | **Conditional and undrawn** — for Georgia plant | +| VW JV Total Commitment | Up to $5.8B | ~$3B+ invested to date; $1B+ in milestone tranches remain | +| FY2026 Delivery Guidance | 62,000–67,000 | ~47–59% YoY growth; R2 ramp is the key driver | + +**Critical caveat on gross profit:** The $144M gross profit is real but fragile. Automotive gross margin is still deeply negative (–$432M). The entire consolidated gross profit came from VW JV development fees. If VW milestones slip, miss, or the partnership restructures, Rivian's consolidated gross profit reverts to large negative. + +--- + +## 4. Litigation and Regulatory Risk + +| Item | Risk | Status | +|---|---|---| +| **Crews v. Rivian — $250M securities class action** | 🔴 HIGH | Final court approval hearing May 15, 2026 | +| **OSHA fatality investigation (Mar 5, 2026)** | 🔴 HIGH | Open; penalties TBD | +| OSHA pattern citations (Normal, IL 2022–2024) | 🟡 MEDIUM | 16 initial serious citations; some contested | +| Product liability — *Young v. Rivian* | 🟡 MEDIUM | Active; details not publicly disclosed | +| NHTSA recalls (21+ since 2022) | 🟡 MEDIUM | No open defect investigations; no fatalities linked | +| Tesla trade secrets suit | ✅ RESOLVED | Settled Dec 2024/Jan 2025; terms undisclosed | +| Georgia plant zoning litigation | ✅ RESOLVED | Dismissed; affirmed on appeal Sep 2024 | +| Sanctions (OFAC/EU/UN) | ✅ CLEAN | No designations | +| SEC / FTC / DOJ / EPA | ✅ CLEAN | No enforcement actions identified | + +The securities class action is the most financially material item. The OSHA fatality is the most operationally sensitive. + +--- + +## 5. News and Reputation + +**Overall: Mixed/Neutral.** Strong product and technology reputation; weighed by recurring execution shortfalls. + +**Positive:** VW JV as strategic validation; R2 demand (68K+ reservations in 24 hrs); first gross profit; Amazon milestone (1B packages delivered); plant retooling reducing R1 BOM costs up to 50%. + +**Negative patterns (not isolated incidents):** +- Three layoff rounds in 13 months (Feb 2024, Jun 2025, Oct 2025 — 600+ workers) +- Consecutive delivery guidance misses (2024 cut mid-year; 2025 missed range by up to 9,000 units) +- Four C-suite departures in ~8 weeks (summer 2024); CEO serving as interim CMO post-Oct 2025 restructuring +- Recurring NHTSA recalls (volume typical for young OEM, but notable) + +**Key forward reputational risk:** R2 production ramp in 2026 is the make-or-break story. Any major stumble will dominate headlines. + +--- + +## 6. Competitive Landscape + +**Rivian's position:** ~4% U.S. EV market share (4th overall); dominant in adventure/outdoor niche; strong in 3-row premium SUV (R1S outsells Tesla Model X); weak in pickup (R1T outsold 3:1 by Cybertruck and Lightning). + +### vs. Tesla +Tesla operates from an overwhelming financial position ($97.7B revenue, $7.1B net profit, $36.6B cash). Cybertruck outsells R1T 3.5:1. However, the R1S beats the Model X on volume, towing, range ceiling, and price. Tesla's FSD software moat and charging network are significant advantages. Tesla's CEO-brand toxicity is a genuine Rivian tailwind in adventure/sustainability demographics. The R2 at ~$45K is the most strategically threatening move Rivian has against Tesla's Model Y stronghold. + +### vs. Ford +Ford's F-150 Lightning outsells the R1T 3:1, backed by F-Series brand loyalty, 3,000 dealers, and ~$55K base pricing. However, Ford Model e lost $5.1B in FY2024 (~$48K per EV sold) — the worst unit economics in the industry. Ford has deferred $12B in EV investment and pivoted to hybrids. The Lightning is an ICE-derivative platform, technically inferior to the R1T on software and OTA. Amazon's exclusive Rivian EDV contract structurally closes the commercial van market to Ford. + +### vs. Kia +Kia EV9 is the most direct R1S challenger: 3-row premium EV SUV, 2024 North American Utility Vehicle of the Year, 22,017 U.S. sales. Key Kia advantages: $20K+ price undercut ($54,900 vs. $75,900 base), 800V fast-charging (10–80% in ~24 min vs. Rivian's ~30–40 min), ~800 U.S. dealers, and HMG parent strength ($8.85B operating profit). Key R1S advantages: 35% more range, 54% more towing, 2x faster 0–60, and exclusive adventure features (Camp Mode, Gear Tunnel, frunk, Rock Crawl). Kia is building toward full IRA compliance via $7B+ Georgia battery JVs — a long-term structural threat. + +--- + +## 7. Confidence and Verification Notes + +| # | Finding | Confidence | Action Required | +|---|---|---|---| +| 1 | FY2025 net loss ~$(3.85B) | ⚠️ MEDIUM | Verify against FY2025 10-K | +| 2 | Total debt ~$4.9B | ⚠️ MEDIUM | Verify against FY2025 10-K balance sheet | +| 3 | FY2023 revenue ~$4.43B | ⚠️ MEDIUM | Confirm against Rivian 10-K FY2023 | +| 4 | VW equity stake ~11.7% | ⚠️ MEDIUM | Cross-reference 2026 proxy for cumulative ownership | +| 5 | CEO criticism in German press | 🔴 LOW | Single unnamed source; do not rely on as established fact | +| 6 | Four C-suite exits, summer 2024 (individual names) | ⚠️ MEDIUM | Verify against SEC 8-K filings for summer 2024 | +| 7 | Georgia plant 300K/yr capacity | ⚠️ MEDIUM | Monitor DOE loan conditional approval status | + +**Verified/High-confidence:** FY2025 gross profit $144M ✅ | FY2025 deliveries 42,247 ✅ | Year-end cash $6.1B ✅ | $250M securities settlement ✅ | OSHA fatality March 2026 ✅ | VW JV up to $5.8B ✅ + +--- + +## 8. Key Risk Flags and Further Investigation Areas + +🔴 **Immediate/High Priority:** +1. **Securities settlement final approval (May 15, 2026)** — Confirm approval obtained; identify insurance carrier contribution; assess cash impact +2. **OSHA fatality investigation** — Assess penalty range; risk of willful-violation designation; potential manufacturing throughput impact +3. **Automotive gross margin trajectory** — Is negative automotive GP structural or R2-ramp-dependent? Obtain unit economics breakdown for R2 vs. R1 + +🟡 **Medium Priority:** +4. **R2 production ramp** — Verify Normal expansion status; battery supply chain; reservation-to-order conversion rates +5. **DOE ATVM Loan status** — Confirm current-administration position on $6.57B conditional loan; milestone conditions remaining +6. **Dual-class governance** — Quantify Scaringe voting control percentage; review Amazon/VW/Global Oryx governance rights +7. **EV tax credit exposure** — Monitor IRA credit status for R2 eligibility; legislative risk tracking +8. **Amazon commercial contract terms** — Minimum purchase commitments remaining; renegotiation clauses; customer concentration risk +9. **Ford exit terms (2023)** — Review any non-compete or technology transfer provisions from Ford's exit that could affect competitive positioning + +--- + +*Full workpapers available at:* `/workpapers/corporate-profile.md`, `/workpapers/financial-health.md`, `/workpapers/litigation-regulatory.md`, `/workpapers/news-reputation.md`, `/workpapers/competitive-landscape.md`, `/workpapers/competitor-tesla.md`, `/workpapers/competitor-ford.md`, `/workpapers/competitor-kia.md` \ No newline at end of file diff --git a/website/cookbook.json b/website/cookbook.json index ec77f79..2202e22 100644 --- a/website/cookbook.json +++ b/website/cookbook.json @@ -146,6 +146,18 @@ "imageUrl": null, "tags": ["deep-research", "task", "webhooks", "python", "notebook"] }, + { + "slug": "parallel-deepagents-due-diligence", + "popular": false, + "featured": false, + "title": "Due Diligence Agent (Deep Agents)", + "description": "Multi-agent due diligence recipe on LangChain's Deep Agents harness. Five Phase-1 subagents plus per-competitor Phase-2 fan-out. Uses parse_basis for per-field confidence and previous_interaction_id for chained follow-ups. Workpapers persist to disk via FilesystemBackend. Validated end-to-end on Rivian: 14 min, 10 Task calls, 33KB cited memo with comparative competitor analysis.", + "repoUrl": "https://github.com/parallel-web/parallel-cookbook/tree/main/python-recipes/parallel-deepagents-due-diligence", + "websiteUrl": "https://github.com/parallel-web/parallel-cookbook/tree/main/python-recipes/parallel-deepagents-due-diligence", + "creators": ["parallel-web"], + "imageUrl": null, + "tags": ["deep-research", "task", "search", "python", "deepagents", "langchain"] + }, { "slug": "large-scale-tasks", "popular": false,