EA

Fetches earnings data for US stocks with market caps over $2B for weekly reviews.

Install

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

Installs to .claude/skills/earnings-calendar-k1064190

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.

This skill retrieves upcoming earnings announcements for US stocks using the Financial Modeling Prep (FMP) API. Use this when the user requests earnings calendar data, wants to know which companies are reporting earnings in the upcoming week, or needs a weekly earnings review. The skill focuses on mid-cap and above companies (over $2B market cap) that have significant market impact, organizing the data by date and timing in a clean markdown table format. Supports multiple environments (CLI, Desktop, Web) with flexible API key management.
543 chars✓ has a “when” triggerlonger than Claude Code's old 250-char listing cap (fine on current versions)
Beginner

Key capabilities

  • Retrieve upcoming earnings announcements for US stocks
  • Filter companies by market capitalization (over $2B)
  • Organize earnings data by date and timing
  • Include EPS and revenue estimates in the report
  • Support multiple environments for API key management

How it works

The skill first determines the current date and calculates the target week. It then uses a Python script to fetch earnings data from the FMP API, filtering by market cap and organizing the results into a markdown report.

Inputs & outputs

You give it
A request for upcoming earnings announcements, e.g., "Get earnings for the upcoming week."
You get back
An organized markdown report of upcoming US stock earnings, grouped by date and timing, including EPS and revenue estimates for companies over $2B market cap.

When to use earnings-calendar

  • Get earnings for the upcoming week
  • Create a weekly earnings review
  • Filter earnings data by market cap

About this skill

Market: US only. This skill depends on US-specific data sources that have no KR equivalent.

Market: US only. This skill depends on US-specific data sources that have no KR equivalent.

Earnings Calendar

Overview

This skill retrieves upcoming earnings announcements for US stocks using the Financial Modeling Prep (FMP) API. It focuses on companies with significant market capitalization (mid-cap and above, over $2B) that are likely to impact market movements. The skill generates organized markdown reports showing which companies are reporting earnings over the next week, grouped by date and timing (before market open, after market close, or time not announced).

Key Features:

  • Uses FMP API for reliable, structured earnings data
  • Filters by market cap (>$2B) to focus on market-moving companies
  • Includes EPS and revenue estimates
  • Multi-environment support (CLI, Desktop, Web)
  • Flexible API key management
  • Organized by date, timing, and market cap

Prerequisites

FMP API Key

This skill requires a Financial Modeling Prep API key.

Get Free API Key:

  1. Visit: https://site.financialmodelingprep.com/developer/docs
  2. Sign up for free account
  3. Receive API key immediately
  4. Free tier: 250 API calls/day (sufficient for weekly earnings calendar)

API Key Setup by Environment:

Claude Code (CLI):

export FMP_API_KEY="your-api-key-here"

Claude Desktop: Set environment variable in system or configure MCP server.

Claude Web: API key will be requested during skill execution (stored only for current session).

Core Workflow

Step 1: Get Current Date and Calculate Target Week

CRITICAL: Always start by obtaining the accurate current date.

Retrieve the current date and time:

  • Use system date/time to get today's date
  • Note: "Today's date" is provided in the environment (<env> tag)
  • Calculate the target week: Next 7 days from current date

Date Range Calculation:

Current Date: [e.g., November 2, 2025]
Target Week Start: [Current Date + 1 day, e.g., November 3, 2025]
Target Week End: [Current Date + 7 days, e.g., November 9, 2025]

Why This Matters:

  • Earnings calendars are time-sensitive
  • "Next week" must be calculated from the actual current date
  • Provides accurate date range for API request

Format dates in YYYY-MM-DD for API compatibility.

Step 2: Run the FMP Script (MANDATORY)

CRITICAL: Always run the Python script to fetch real data. Do NOT use web search as a substitute.

# Load FMP_API_KEY from .env with auto-export so the child Python process
# sees it. Plain `source .env && uv run ...` only sets SHELL variables, not
# ENV variables, so `os.environ.get("FMP_API_KEY")` would return None
# inside the script. `set -a` toggles bash's allexport flag.
set -a; source /home/cwh/projects/stock-expectation/.env; set +a
uv run python .claude/skills/earnings-calendar/scripts/fetch_earnings_fmp.py

If the script fails (error exit code), THEN fall back to web search as a secondary source. But always attempt the script first. Do NOT skip the script just because you can answer from training data.

Step 2b: Load FMP API Guide (if script needs debugging)

If needed, load the comprehensive FMP API guide:

Read: references/fmp_api_guide.md

This guide contains:

  • FMP API endpoint structure and parameters
  • Authentication requirements
  • Market cap filtering strategy (via Company Profile API)
  • Earnings timing conventions (BMO, AMC, TAS)
  • Response format and field descriptions
  • Error handling strategies
  • Best practices and optimization tips

Step 3: API Key Detection and Configuration

Detect API key availability based on environment.

Multi-Environment API Key Detection:

3.1 Check Environment Variable (CLI/Desktop)

if [ ! -z "$FMP_API_KEY" ]; then
  echo "✓ API key found in environment"
  API_KEY=$FMP_API_KEY
fi

If environment variable is set, proceed to Step 4.

3.2 Prompt User for API Key (Desktop/Web)

If environment variable not found, use AskUserQuestion tool:

Question Configuration:

Question: "This skill requires an FMP API key to retrieve earnings data. Do you have an FMP API key?"
Header: "API Key"
Options:
  1. "Yes, I'll provide it now" → Proceed to 3.3
  2. "No, get free key" → Show instructions (3.2.1)
  3. "Skip API, use manual entry" → Jump to Step 8 (fallback mode)

3.2.1 If user chooses "No, get free key":

Provide instructions:

To get a free FMP API key:

1. Visit: https://site.financialmodelingprep.com/developer/docs
2. Click "Get Free API Key" or "Sign Up"
3. Create account (email + password)
4. Receive API key immediately
5. Free tier includes 250 API calls/day (sufficient for daily use)

Once you have your API key, please select "Yes, I'll provide it now" to continue.

3.3 Request API Key Input

If user has API key, request input:

Prompt:

Please paste your FMP API key below:

(Your API key will only be stored for this conversation session and will be forgotten when the session ends. For regular use, consider setting the FMP_API_KEY environment variable.)

Store API key in session variable:

API_KEY = [user_input]

Confirm with user:

✓ API key received and stored for this session.

Security Note:
- API key is stored only in current conversation context
- Not saved to disk or persistent storage
- Will be forgotten when session ends
- Do not share this conversation if it contains your API key

Proceeding with earnings data retrieval...

Step 4: Retrieve Earnings Data via FMP API

Use the Python script to fetch earnings data from FMP API.

Script Location:

scripts/fetch_earnings_fmp.py

Execution:

Option A: With Environment Variable (CLI):

python scripts/fetch_earnings_fmp.py 2025-11-03 2025-11-09

Option B: With Session API Key (Desktop/Web):

python scripts/fetch_earnings_fmp.py 2025-11-03 2025-11-09 "${API_KEY}"

Script Workflow (automatic):

  1. Validates API key and date parameters
  2. Calls FMP Earnings Calendar API for date range
  3. Fetches company profiles (market cap, sector, industry)
  4. Filters companies with market cap >$2B
  5. Normalizes timing (BMO/AMC/TAS)
  6. Sorts by date → timing → market cap (descending)
  7. Outputs JSON to stdout

Expected Output Format (JSON):

[
  {
    "symbol": "AAPL",
    "companyName": "Apple Inc.",
    "date": "2025-11-04",
    "timing": "AMC",
    "marketCap": 3000000000000,
    "marketCapFormatted": "$3.0T",
    "sector": "Technology",
    "industry": "Consumer Electronics",
    "epsEstimated": 1.54,
    "revenueEstimated": 123400000000,
    "fiscalDateEnding": "2025-09-30",
    "exchange": "NASDAQ"
  },
  ...
]

Save to file (recommended for use with report generator):

python scripts/fetch_earnings_fmp.py 2025-11-03 2025-11-09 "${API_KEY}" > earnings_data.json

Or capture to variable:

earnings_data=$(python scripts/fetch_earnings_fmp.py 2025-11-03 2025-11-09 "${API_KEY}")

Error Handling:

If script returns errors:

  • 401 Unauthorized: Invalid API key → Verify key or re-enter
  • 429 Rate Limit: Exceeded 250 calls/day → Wait or upgrade plan
  • Empty Result: No earnings in date range → Expand date range or note in report
  • Connection Error: Network issue → Retry or use cached data if available

Step 5: Process and Organize Data

Once earnings data is retrieved (JSON format), process and organize it:

5.1 Parse JSON Data

Load JSON data from script output:

import json
earnings_data = json.loads(earnings_json_string)

Or if saved to file:

with open('earnings_data.json', 'r') as f:
    earnings_data = json.load(f)

5.2 Verify Data Structure

Confirm data includes required fields:

  • ✓ symbol
  • ✓ companyName
  • ✓ date
  • ✓ timing (BMO/AMC/TAS)
  • ✓ marketCap
  • ✓ sector

5.3 Group by Date

Group all earnings announcements by date:

  • Sunday, [Full Date] (if applicable)
  • Monday, [Full Date]
  • Tuesday, [Full Date]
  • Wednesday, [Full Date]
  • Thursday, [Full Date]
  • Friday, [Full Date]
  • Saturday, [Full Date] (if applicable)

5.4 Sub-Group by Timing

Within each date, create three sub-sections:

  1. Before Market Open (BMO)
  2. After Market Close (AMC)
  3. Time Not Announced (TAS)

Data is already sorted by timing from the script, so maintain this order.

5.5 Within Each Timing Group

Companies are already sorted by market cap descending (script output):

  • Mega-cap (>$200B) first
  • Large-cap ($10B-$200B) second
  • Mid-cap ($2B-$10B) third

This prioritization ensures the most market-moving companies are listed first.

5.6 Calculate Summary Statistics

Compute:

  • Total Companies: Count of all companies in dataset
  • Mega/Large Cap Count: Count where marketCap >= $10B
  • Mid Cap Count: Count where marketCap between $2B and $10B
  • Peak Day: Day of week with most earnings announcements
  • Sector Distribution: Count by sector (Technology, Healthcare, Financial, etc.)
  • Highest Market Cap Companies: Top 5 companies by market cap

Step 6: Generate Markdown Report

Use the report generation script to create a formatted markdown report from the JSON data.

Script Location:

scripts/generate_report.py

Execution:

Option A: Output to stdout:

python scripts/generate_report.py earnings_data.json

Option B: Save to file:

python scripts/generate_report.py earnings_data.json earnings_calendar_2025-11-02.md

What the script does:

  1. Loads earnings data from JSON file
  2. Groups by date and timing (BMO/AMC/TAS)
  3. Sorts by market cap within each group
  4. Calculates summary statistics
  5. Generates formatted markdown report
  6. Outputs to stdout or saves to file

The script automatically handles all formatting including:

  • Proper markdown table structure
  • Date grouping and day names
  • Market cap sorting
  • EPS and revenue for

Content truncated.

When not to use it

  • When the user requests earnings data for non-US stocks
  • When the user needs earnings data for companies with market cap under $2B
  • When the user is asking for real-time stock prices or other financial data

Prerequisites

Financial Modeling Prep (FMP) API key

Limitations

  • The skill is limited to US stocks.
  • It focuses on mid-cap and above companies (over $2B market cap).
  • The free tier of the FMP API has a limit of 250 API calls/day.

How it compares

This skill provides a structured, API-driven method to generate a weekly earnings calendar specifically for US stocks with significant market impact, automating data retrieval and formatting compared to manual data collection from various s

Compared to similar skills

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

SkillInstallsUpdatedSafetyDifficulty
earnings-calendar (this skill)03moReviewBeginner
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