Computed 2026-08-05 against hypothesis.md (commit f32599d, pre-registered
before any claim was classified). Reproducible via
python -m src.domains.domain_d_us_energy.compute.
Every single quarter, for both companies, supply/production language was net-positive. Capex language was never net-positive — it was flat-to-negative in every quarter with a nonzero score.
| Company | Quarter | Capex net direction | Supply net direction | Status |
|---|---|---|---|---|
| XOM | FY2025Q2 | −1 | +2 | divergent |
| XOM | FY2025Q3 | −2 | +4 | divergent |
| XOM | FY2025Q4 | 0 | +4 | indeterminate |
| XOM | FY2026Q1 | 0 | +3 | indeterminate |
| XOM | FY2026Q2 | 0 | +1 | indeterminate |
| CVX | FY2025Q2 | 0 | +3 | indeterminate |
| CVX | FY2025Q3 | −1 | +3 | divergent |
| CVX | FY2025Q4 | 0 | +5 | indeterminate |
| CVX | FY2026Q1 | +1 | +5 | aligned |
XOM: 0 aligned, 2 divergent, 3 indeterminate. CVX: 1 aligned, 1 divergent, 2 indeterminate. Not one quarter, for either company, shows capex language net-positive while supply language is also positive by coincidence — capex is either negative or silent, and supply is always positive. This is exactly the pattern visible directly in the source quotes captured during discovery — Exxon's CFO and CEO explicitly framing lower capex guidance as "disciplined capital spending... not cutting CapEx, but spending it in a wise way," while simultaneously guiding Permian production from 1.6 to 2.3 million barrels/day by 2030. The "capital discipline while still growing production" narrative is not a one-off talking point in this sample — it's the consistent shape of every quarter checked.
| Fiscal quarter | Pooled capex drift (XOM+CVX) | EIA QoQ growth, same quarter | EIA QoQ growth, next quarter |
|---|---|---|---|
| FY2025Q3 | −2 | +2.03% | −0.09% |
| FY2025Q4 | +3 | −0.09% | −1.39% |
| FY2026Q1 | +1 | −1.39% | +1.81% |
| FY2026Q2 | 0 | +1.81% | (not yet available) |
With only 4 comparable quarters, no consistent same-quarter or next-quarter relationship is visible — drift and EIA growth move in the same direction in 1 of 4 same-quarter comparisons and 2 of 4 next-quarter comparisons, indistinguishable from chance at this sample size. As pre-registered, no threshold was applied and none is implied by this table — it is reported as description, not a test result. This is not a surprising non-finding given the antithesis concerns stated in advance (two companies' partly-global guidance vs. a US-only production series; capex today mechanically affects production years, not one quarter, later).
Status: PRE-REGISTERED, 2026-08-05. No claim classification, drift
score, or correlation has been computed at the time this file is
committed — only a structure/coverage sample (metadata, not results):
one search_earnings_transcripts query each for XOM and CVX to confirm
the claim schema, and one EIA series lookup. Per project principle, this
hypothesis will not be edited after results are computed; if it fails,
the failure is recorded, not the hypothesis.
Earnings-call claims — search_earnings_transcripts, search_target='claims'.
Not a SQL schema — a bespoke, quote-anchored claim graph. Each claim
carries, among other fields: fiscal_period (e.g. FY2025Q3),
calendar_date, claim_family, topic_path (e.g.
capital.capex_guidance_reduction, supply_capacity.production_growth_guidance),
direction (up/down/flat/na), value, unit, vs_prior
(explicit comparative language against the prior guidance, when present),
and the verbatim quote. direction and topic_path are the only
fields this domain's computation reads — classification is by exact
string prefix match on topic_path, done in compute.py, never by this
project's own reading of the quote text.
Companies: confirmed rich, real coverage for XOM (5 fiscal
quarters returned in the sample query: FY2025Q2 through FY2026Q2) and
CVX (at least 3: FY2025Q2, FY2025Q3, FY2026Q1). Scoped to these two
supermajors only — both are consistently covered, both discuss capex and
production guidance explicitly and often ("disciplined capital
spending," "production growth guidance range," vs_prior language).
Expanding to COP, SLB, OXY or others is a natural extension, not done in
this pass — declared as a bounded scope, not an oversight.
EIA production — FactIQ eia schema:
TOTAL.PAPRPUS.M — "Total Monthly Crude Oil Production in the United
States," thousand barrels per day, monthly, 1973-01 through 2026-06.
This is the headline US crude production series (there is also a
Lower-48-only variant, TOTAL.PAPRP48.M; the all-US total is used here
as the more relevant comparator against a global-major capex/supply
narrative, though the two track closely in practice).
This is explicitly a small-sample, exploratory first pass, stated as such in advance. Only 3-5 quarters of transcript data exist per company; no formal correlation threshold is pre-declared for falsification, for the same reason H2 in Domain B and H2 in Domain E had none — with this few observations, a fixed numeric cutoff would be theater, not a real test. What is pre-declared is the method and what counts as a directionally notable observation.
Method (deterministic, in compute.py):
1. For each company, for each fiscal quarter, filter claims to
topic_path starting with capital. and compute
capex_net_direction = count(direction=='up') - count(direction=='down')
(claims with flat/na direction are excluded from the count, not
treated as zero-weighted up/down).
2. Separately, filter claims to topic_path starting with
supply_capacity. and compute supply_net_direction the same way.
3. Compute quarter-over-quarter drift (the change from the prior
available quarter for that company) in both scores — the level itself
is not the signal, consistent with the original spec's "language
drift, not absolute sentiment."
4. Pool across the two companies per calendar quarter (sum of both
companies' capex_net_direction drift, only for quarters where both
report) and compare, informally, against the EIA production series'
own QoQ % growth (monthly values averaged into quarters) for the same
and the following quarter.
What counts as notable: a pooled capex-drift sign that is followed by a same-direction move in EIA production growth in a later quarter is noted as directionally consistent with the real-world mechanism (capex today, production months-to-quarters later); a mismatch is reported as exactly that, not explained away. Given the sample size, this section will read as description, not statistical proof, and is written to be read that way.
Self-contained, does not depend on EIA data or sample size in the same
way — this simply asks, for each company-quarter where both a
capex_net_direction and a supply_net_direction score exist: do they
point the same way (both up, both down) or opposite ways (e.g., capex
language turning more cautious while supply/production guidance stays
confident or improves — the "efficiency/discipline" narrative visible
directly in the XOM sample: "take the changes in the CapEx... as...
disciplined capital spending, which is not cutting CapEx, but spending
it in a wise way")?
Method: for each company-quarter with both scores present, record
aligned (same sign) or divergent (opposite sign, or one is zero and
the other is not). Report the count and list of divergent quarters
explicitly, with the underlying claims cited — this is the piece of the
domain closest to "checkable by hand," per the project's scout-agent
citation principle applied early.
H1's
pooled score is a sum of two companies, not a sector index.search_earnings_transcripts is explicitly documented as retrieval by
matching, not a complete index of every claim a company made — the
claim counts used here are a sample of what the tool's matching
surfaced for the queries run, not a verified-complete census of every
capex/supply statement on each call. A different query phrasing could
surface a different claim set. This is a structural limitation of the
data source, not a bug to fix.value/unit fields are used for context (not for
H1/H2's core computation, which is direction-only), nominal dollar
guidance figures are not inflation-adjusted.Password required.