Creates actionable financial summary reports for pre-earnings analysis.

Install

mkdir -p .claude/skills/earnings-prep && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/12462" && unzip -o skill.zip -d .claude/skills/earnings-prep && rm skill.zip

Installs to .claude/skills/earnings-prep

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Pre-earnings preparation report for the night before a company reports
70 charsno explicit “when” trigger
Advanced

Key capabilities

  • Look up company by ticker and capture financial anchors
  • Recap last quarter's full financials and KPIs
  • Summarize the story of last quarter in bullet points
  • Pull and present outstanding guidance for the upcoming quarter
  • Search filings for directional and qualitative guidance
  • Compute guidance credibility and whisper number from historical data

How it works

The skill generates a pre-earnings report by gathering financial data, guidance, and historical performance for a given company. It calculates a whisper number and identifies key metrics to watch.

Inputs & outputs

You give it
Company ticker symbol
You get back
Pre-earnings preparation report in HTML format

When to use earnings-prep

  • Prepare earnings report
  • Summarize last quarter financials
  • Analyze quarterly performance

About this skill

Generate a pre-earnings preparation report for the company specified by the user: $ARGUMENTS

This is the note a L/S equity analyst reads the night before a company reports — it tells them exactly what to focus on when the print drops.

Before starting, read ../data-access.md for data access methods and ../design-system.md for formatting conventions. Follow the data access detection logic and design system throughout this skill.

Source quality (MANDATORY, applies to every web search in this skill): Follow ../data-access.md Section 2.5 — cite only primary sources (SEC filings, IR pages, press releases, transcripts) and Tier-1 financial press (Reuters, Bloomberg, WSJ, FT). Never use or cite Yahoo Finance editorial, Benzinga, Seeking Alpha, Motley Fool, Zacks, TipRanks, StockTwits, Reddit, or similar aggregators/blogs.

Follow these steps:

1. Company Lookup

Look up the company by ticker using discover_companies. Capture:

  • company_id
  • latest_calendar_quarter — anchor for all period calculations below (see ../data-access.md Section 1.5)
  • latest_fiscal_quarter
  • Firm name for report attribution (default: "Daloopa") — see ../data-access.md Section 4.5

Determine the upcoming quarter — the one AFTER latest_calendar_quarter. This is the quarter the company is about to report. All analysis is oriented around preparing the analyst for this print.

2. Last Quarter Recap

Pull the most recent quarter's full financials from Daloopa. Calculate 4 quarters backward from latest_calendar_quarter (for YoY context).

Pull:

  • Revenue, Gross Profit, Operating Income, EBITDA, Net Income, Diluted EPS
  • Operating Cash Flow, CapEx, FCF (calc.)
  • Segment/product revenue breakdown
  • Company-specific KPIs (use the business-model taxonomy: SaaS → ARR/NRR/RPO; Consumer → DAU/ARPU; E-commerce → GMV/take rate; etc.)

Summarize the story of last quarter in 3-5 bullets:

  • What beat expectations (guidance or consensus)?
  • What missed or disappointed?
  • What was the stock reaction? (use get_stock_prices per ../data-access.md Section 1.7 to get the actual next-day move; supplement with WebSearch for narrative context if needed)
  • What narrative emerged from the call? (e.g., "AI monetization acceleration," "margin expansion story intact," "consumer weakness")
  • What was the single most debated metric?

This is the baseline everyone on the upcoming call will be anchoring to.

3. Outstanding Guidance for Upcoming Quarter

Search for ALL guidance series using keywords: "guidance", "outlook", "estimate", "forecast", "target". Apply the +1 quarter offset to identify which guidance applies to the upcoming print:

  • CRITICAL: Guidance from Q(N) earnings call applies to Q(N+1) results
  • The guidance issued during the latest_calendar_quarter earnings call is what applies to the upcoming quarter

Pull and present:

  • Revenue guidance (point estimate or range)
  • EPS guidance
  • Margin guidance (gross, operating, EBITDA)
  • CapEx guidance
  • Segment-level guidance (if available)
  • KPI guidance (subscriber adds, unit volumes, ARPU targets, etc.)

Search filings for directional/qualitative guidance:

  • Search documents for: "expect", "anticipate", "similar to", "consistent with"
  • Search documents for: "low single digit", "mid single digit", "double digit", "sequential"
  • Search documents for: "headwind", "tailwind", "conservatively", "assumes"
  • Capture exact management quotes with document citations

Flag any guidance updates between quarters:

  • Search for "pre-announce", "update", "revise" in the most recent quarter's filings
  • Check if the company issued an 8-K updating guidance after the last earnings call

Present all guidance in a single table: Metric | Guidance Value | Source Quarter | Type (Quantitative/Directional).

4. Guidance Credibility & Whisper Number

This section MUST be built entirely from Daloopa data — guidance series AND actual result series pulled via get_company_fundamentals. Do not use web search or estimates for this analysis.

Step 1: Pull 8 quarters of guidance data. You already discovered guidance series in Section 3. Now pull ALL of those guidance series for the last 8 quarters (from latest_calendar_quarter backward). These are the guidance values management provided each quarter.

Step 2: Pull 8 quarters of corresponding actuals. For every guided metric, identify the corresponding actual result series (e.g., if there is a "Revenue guidance" series, pull the actual "Revenue" series). Pull these actuals for the same 8-quarter period.

Step 3: Build the complete beat/miss table. Apply the +1 quarter offset: guidance from Q(N) is compared to the actual result in Q(N+1). For EVERY quarter where both a guidance value and a corresponding actual exist, compute:

  • Guidance value (midpoint if range)
  • Actual value
  • Delta (Actual - Guidance midpoint)
  • Beat/Miss % ((Actual - Guidance midpoint) / |Guidance midpoint| × 100)
  • Classification: Beat / In-line / Miss (use +/-1% threshold for in-line)

Present a FULL detail table — every quarter, every guided metric. This is the core analytical engine of the whisper number. Do not summarize or abbreviate — show all rows. Format:

| Guidance Source Qtr | Metric | Guidance (Mid) | Actual Qtr | Actual | Delta | Beat/Miss % |

If a company provides range guidance (low/high), show the midpoint and note the range width. If a company only provides directional guidance for some metrics (e.g., "revenue growth in low teens"), convert to an implied numeric value for comparison (e.g., 12-13% → midpoint ~12.5% applied to prior year actual).

Step 4: Compute summary statistics from the detail table:

  • Beat rate per metric (% of quarters where actual > guidance midpoint)
  • Average beat magnitude per metric (in absolute terms and %)
  • Beat pattern trend: is the beat getting larger (sandbagging increasing), shrinking (guidance getting more accurate), or volatile? Look at the last 4 vs. prior 4.
  • Range width trend: is management tightening or widening guidance ranges?

Step 5: Calculate the implied "whisper number":

  • Whisper = Current guidance midpoint + Average historical beat (from the detail table above)
  • This is the REAL bar the stock is trading against, not the stated guidance
  • If the company beats by 2% on average, the market expects a 2% beat — an in-line result to guidance is effectively a miss
  • Calculate whisper for EVERY guided metric, not just revenue

Present the whisper summary: | Metric | Current Guidance (Mid) | Avg Historical Beat | Implied Whisper | Beat Rate (n/N) |

Credibility verdict: Is management's guidance informative (tight, accurate) or performative (always sandbagged, uninformative)? If the beat rate is >90%, say so — it means the guidance number is a floor, not a forecast. If the beat magnitude is increasing, management is becoming MORE conservative over time.

5. Peer & Adjacent Company Read-Throughs

This is the most differentiated section. For companies in the same sector that have ALREADY reported this earnings season, their results contain direct signal about the upcoming print.

Identify the read-through universe (aim for 5-8 companies):

  • Competitors: Direct rivals in the same market
  • Suppliers: Companies that sell to the target company
  • Customers: Companies that buy from the target company
  • Industry bellwethers: Large companies whose results signal sector trends

CRITICAL: Always use Daloopa as the primary data source for peer analysis. For each peer:

  1. Look up the peer in Daloopa: discover_companies with the peer's ticker. If Daloopa has the company, check latest_calendar_quarter to determine whether they have already reported the relevant quarter.
  2. If the peer has data for the current earnings season quarter: Pull their financials from Daloopa (discover_company_seriesget_company_fundamentals). Focus on 2-4 metrics most relevant to the read-through (e.g., for a supplier: revenue, segment breakdown, inventory; for a competitor: revenue growth, market share proxies, pricing commentary).
  3. Search the peer's filings in Daloopa: search_documents with keywords related to the target company's products, markets, or industry (e.g., for an Apple supplier, search for "Apple", "smartphone", "consumer electronics").
  4. Use WebSearch only to supplement Daloopa data — for earnings-season timing confirmation, stock price reactions, or analyst commentary that Daloopa filings don't cover.

For each read-through, extract (with Daloopa citations):

  1. The specific data point — the peer's metric that creates signal. Cite the Daloopa fundamental_id.
  2. The implication — bullish or bearish for the target company, and why
  3. Confidence level — High (direct disclosed relationship), Moderate (inferred from industry), Low (circumstantial)

For peers that haven't reported yet: Note them as "reports after {TICKER}" — their results will be a read-through in the opposite direction.

Group read-throughs by:

  • Competitors — share shift signals, pricing environment, demand trends
  • Suppliers — order book signals, inventory levels, capacity commentary
  • Customers — demand signals, inventory destocking/restocking, spending priorities
  • Industry Bellwethers — macro/sector health, end-market demand

Web research for sector context (supplementary only — after Daloopa pulls):

  • Search: "{TICKER} sector earnings season {year} read through" — analyst commentary on cross-company signals
  • Search: "{TICKER} competitors results {upcoming_quarter_label} {year}" — what peers have already signaled

6. Key Metrics to Watch

Identify the 5-7 metrics the analyst should focus on when the print drops. For each metric:

| Metric | Current Level | Guidance/Expected | Bullish Threshold | Bearish Threshold | Why It Matters |

Be specific with thresholds — not "revenue growth" but "revenue above $95B signals iPhon


Content truncated.

When not to use it

  • When the user needs real-time market data
  • When the user needs to analyze company performance during the earnings call

Prerequisites

Access to `discover_companies` functionAccess to `get_stock_prices` functionAccess to `get_company_fundamentals` function

Limitations

  • Relies on Daloopa data for guidance credibility and whisper number calculations
  • Does not use web search or estimates for guidance credibility analysis
  • Assumes specific business-model taxonomy for KPIs

How it compares

This skill compiles a complete pre-earnings report tailored for equity analysts, focusing on critical metrics and guidance, unlike general financial summaries.

Compared to similar skills

earnings-prep side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
earnings-prep (this skill)02moNo flagsAdvanced
quant-analyst1032moNo flagsAdvanced
stock-analyzer712moReviewBeginner
creating-financial-models368moReviewAdvanced

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

quant-analyst

zenobi-us

Expert quantitative analyst specializing in financial modeling, algorithmic trading, and risk analytics. Masters statistical methods, derivatives pricing, and high-frequency trading with focus on mathematical rigor, performance optimization, and profitable strategy development.

103355

stock-analyzer

FrancyJGLisboa

Provides comprehensive technical analysis for stocks and ETFs using RSI, MACD, Bollinger Bands, and other indicators. Activates when user requests stock analysis, technical indicators, trading signals, or market data for specific ticker symbols.

71214

creating-financial-models

anthropics

This skill provides an advanced financial modeling suite with DCF analysis, sensitivity testing, Monte Carlo simulations, and scenario planning for investment decisions

36161

reconciliation

anthropics

Reconcile accounts by comparing GL balances to subledgers, bank statements, or third-party data. Use when performing bank reconciliations, GL-to-subledger recs, intercompany reconciliations, or identifying and categorizing reconciling items.

30139

analyzing-financial-statements

anthropics

This skill calculates key financial ratios and metrics from financial statement data for investment analysis

32134

us-stock-analysis

tradermonty

Comprehensive US stock analysis including fundamental analysis (financial metrics, business quality, valuation), technical analysis (indicators, chart patterns, support/resistance), stock comparisons, and investment report generation. Use when user requests analysis of US stock tickers (e.g., "analyze AAPL", "compare TSLA vs NVDA", "give me a report on Microsoft"), evaluation of financial metrics, technical chart analysis, or investment recommendations for American stocks.

24137

Search skills

Search the agent skills registry