원클릭으로
earnings
Look up earnings dates, EPS beat/miss history, analyst consensus estimates, and estimate revisions for US/global stocks.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Look up earnings dates, EPS beat/miss history, analyst consensus estimates, and estimate revisions for US/global stocks.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Plot probability-over-time chart for a Polymarket prediction market using cached history data.
Schedule reminders and recurring tasks.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Deploy a meme coin on pump.fun — collect required fields then call the meme tool.
Summarize or extract text/transcripts from URLs, podcasts, and local files (great fallback for “transcribe this YouTube/video”).
Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.
| name | earnings |
| description | Look up earnings dates, EPS beat/miss history, analyst consensus estimates, and estimate revisions for US/global stocks. |
Use this skill when the user asks about:
| User intent | Command | Key params |
|---|---|---|
| Next earnings date | calendar | symbol |
| Upcoming earnings for a list | upcoming | symbols, days_ahead |
| Beat/miss history | surprise | symbol, limit |
| Forward EPS/revenue estimates | consensus | symbol |
| Estimate revision trend | revisions | symbol |
Call earnings_calendar with command="calendar" and the ticker:
earnings_calendar(command="calendar", symbol="AAPL")
Report: next date, EPS estimate range (low/avg/high), revenue estimate range.
Call surprise to get the last 8 reported quarters:
earnings_calendar(command="surprise", symbol="NVDA", limit=8)
Format the response as a table: date | EPS est | EPS actual | surprise % | beat/miss. Summarise the beat rate (e.g. "beat in 7 of the last 8 quarters").
Call consensus for forward estimates:
earnings_calendar(command="consensus", symbol="MSFT")
Report: current quarter EPS avg/low/high, year-over-year growth, revenue estimate, analyst count and recommendation.
Call revisions to see upgrade/downgrade counts over recent periods:
earnings_calendar(command="revisions", symbol="META")
Interpret the result:
up_last_30_days than down_last_30_days → analysts are bullish / raising numbersdown_last_30_days → negative revision trend, worth flaggingeps_trend to show the actual EPS estimate drift (e.g. current vs 90 days ago)The user must provide a list of symbols (FinClaw cannot scan the whole market).
Ask for their watchlist if not given, then call upcoming:
earnings_calendar(command="upcoming", symbols="AAPL,MSFT,NVDA,AMZN,TSLA,META,GOOGL", days_ahead=7)
Group results by date. For each company show: ticker, date, EPS estimate.
upcoming is slow for large lists (one API call per ticker). Keep to ≤ 30 symbols.surprise only shows reported quarters — future dates are excluded automatically."error": "No earnings calendar available", it may be a non-US stock, ETF, or the data is simply not in Yahoo Finance for that ticker.