Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

financial-analysis-earnings财务分析 收益

Agent Skill

financial-analysis-earnings 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

635

周安装

27

GitHub Stars

5

下载量

222
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:financial-analysis-earnings(财务分析 收益)
来源仓库:https://github.com/pionex-official/pionex-skills
仓库路径:skills/financial-analysis-earnings
安装命令:
npx skills add https://github.com/pionex-official/pionex-skills --skill financial-analysis-earnings
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/pionex-official/pionex-skills --skill financial-analysis-earnings

简介

用于查找、检索和筛选相关信息。financial-analysis-earnings 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在关键词搜索或任务场景下快速定位候选结果。
  • 可结合来源仓库和原始 README 进一步核验具体用法。
  • 安装前建议确认权限范围和维护状态,避免意外操作。
  • 注意检查是否会触发联网、命令执行或文件读写行为。

SKILL.md

Earnings Analysis

Analyze quarterly earnings for US-listed stocks. Combines SEC EDGAR XBRL filings with web search for consensus estimates, then produces a structured beat/miss report with trend analysis.

Setup

No dependencies required. All scripts use Python standard library only.

Workflow

Step 1 — Identify the quarter and find consensus (web search)

Always search first. Do NOT rely on training data for earnings results.

Search 0 — identify the most recently reported quarter:

  • [Company] [ticker] latest quarterly earnings results [current year]

Cross-check against today's date (calendar fiscal year companies):

  • Q1 results typically reported: Apr–May
  • Q2 results typically reported: Jul–Aug
  • Q3 results typically reported: Oct–Nov
  • Q4 results typically reported: Jan–Feb

Non-calendar fiscal years: Check the company's fiscal year end from SEC EDGAR data before mapping quarters. Common examples: Apple FY ends September (Q1 = Oct–Dec), Microsoft FY ends June (Q1 = Jul–Sep). Use the fiscal_year and fiscal_quarter fields from get_fundamentals.py output.

If today's date falls after the typical window for the next quarter, search again — a newer quarter may have been reported.

After confirming the quarter, run two searches:

Search A — reported results:

  • [Company] [confirmed quarter] earnings results revenue EPS

Search B — consensus estimates:

  • [Company] [confirmed quarter] earnings consensus estimate revenue EPS
  • [Ticker] earnings beat miss [confirmed quarter]

Search C (after A and B) — guidance:

  • [Company] [confirmed quarter] earnings guidance outlook next quarter [year]

Extract ALL of these before proceeding:

FieldNotes
Quarter reported (e.g. Q1 FY2026)Verify the date — do not assume
Revenue (reported)
Adj. EPS (reported)
Revenue consensus estimateMust be absolute dollar value (e.g. $27.2B)
Adj. EPS consensus estimateMust be a dollar figure (e.g. $2.84)
Next quarter guidanceRevenue or EPS range; say "not provided" if absent
Full-year guidanceRaised / lowered / maintained vs. prior
Key management commentary2-3 key points

If consensus is not found after two searches, run one more targeted search: [Ticker] EPS estimate Q[X] [year] analyst consensus. Only state "consensus not available" after three attempts.


Step 2 — Pull financial data (scripts)

Run the all-in-one script. Run in parallel with Search A and B from Step 1.

bash run.sh <SYMBOL>
# With peer comparison:
bash run.sh <SYMBOL> --peers <PEER1> <PEER2>

Returns JSON with: current quote, 8 quarters of SEC EDGAR financials, 3 years of annual data, and optional peer comps.

Important: 10-Q data from SEC EDGAR is YTD cumulative. Derive standalone quarters by subtraction:

  • Q1 standalone = Q1 YTD (no subtraction needed)
  • Q2 standalone = H1 YTD − Q1 YTD
  • Q3 standalone = 9M YTD − H1 YTD
  • Q4 standalone = Full-year (10-K) − 9M YTD

Apply subtraction to revenue, gross profit, operating income, and net income. Do NOT subtract EPS — EPS is a per-share figure, not a running sum, so subtracting Q1 EPS from H1 EPS does not give Q2 EPS (share counts differ across periods). For Q2/Q3 standalone EPS, use the value from web search (Step 1) or compute as standalone net income / diluted shares.

Q4 derivation note: Q4 standalone = 10-K full year − Q3 9M YTD. If the Q3 10-Q is not within the 8 periods returned by the script (too old), use web search to fill in Q4 standalone figures.

You must produce a YTD-to-standalone derivation table for the current quarter — see Section 3 in Output Format for the exact template and rules.

The all-in-one script (bash run.sh) is the preferred entry point. It aggregates quarterly, annual, quote, and peer data in a single call.


Step 3 — Beat/miss analysis

Present a three-column table:

Metric        | Reported  | Consensus        | Beat/(Miss)
--------------|-----------|------------------|------------------
Revenue       | $X.XB     | $X.XB            | +$XXM (+X.X%)
Adj. EPS      | $X.XX     | $X.XX            | +$X.XX (+X.X%)
Gross Margin  | XX.X%     | XX.X% (if avail) | +XXbps

If consensus is unavailable, write "n/a — consensus not found". Do not omit the row.

For each beat or miss, write one sentence explaining why — segment mix, pricing, cost changes, one-time items, etc.


Step 4 — Trend analysis

Use standalone quarterly figures derived in Step 2 — not YTD cumulative, which would inflate recent quarters and distort YoY comparisons. Show the last 8 quarters of actual reported results. The quarter being analyzed must appear as the last (most recent) row.

Data source requirement: For each quarter in the table, mark the data source:

  • (SEC) — derived from SEC EDGAR filing (preferred)
  • (web) — from web search (only if SEC filing not yet available)

Do NOT use web search data if SEC data is available. SEC EDGAR is the primary source of truth.

If the reported quarter's 10-Q/10-K has not yet been filed on SEC EDGAR, use figures from web search (Step 1) and mark the row with (web).

QuarterRevenueYoYGross MarginOp. MarginDiluted EPSSource
Q[X-7]$X.XB+X%XX.X%XX.X%$X.XXSEC
.....................
Q[X]$X.XB+X%XX.X%XX.X%$X.XXSEC/web

YoY must always be computed if both current and prior-year quarter are available.

After the table, comment on:

  • Margin expansion or compression trend
  • EPS growth vs. revenue growth (buyback effect or margin improvement?)
  • Acceleration or deceleration in the last 2-3 quarters

Step 5 — Guidance and outlook

Mandatory.

  • Next quarter guidance: metric, range, above/below/in-line with Street
  • Full-year guidance: raised / lowered / maintained vs. prior — quantify the change
  • If no guidance provided: state explicitly, then give a forward read based on trend data

Step 6 — Comparable valuation (only if user asks)

bash run.sh <SYMBOL> --peers <PEER1> <PEER2> ...

Returns revenue, margins, growth, P/E, P/S for up to 10 companies.


Output Format

Section 1 — Summary box (mandatory, always first):

[COMPANY] ([TICKER]) — Q[X] FY[YYYY] EARNINGS   Result: BEAT / INLINE / MISS / N/A

Revenue:      $X.XB   (consensus: $X.XB  |  beat by +$XXM, +X.X%)
Adj. EPS:     $X.XX   (consensus: $X.XX  |  beat by +$X.XX, +X.X%)
Gross Margin: XX.X%   (vs. XX.X% a year ago, +XXbps YoY)

All figures in the Summary box must be standalone quarterly values — never full-year or YTD.

Set Result to N/A if consensus is unavailable for both Revenue and Adj. EPS.

Section 2 — Key takeaways (3-5 bullets). Lead with a number: "Revenue grew 15.7% to $143.8B" not "Strong revenue performance".

Section 3 — SEC Data Derivation (mandatory)

Show the YTD-to-standalone derivation table for the current quarter — this is the audit trail proving figures came from the SEC filing, not a web source. Without it, the reader cannot verify the math. Use this format:

SEC EDGAR Derivation: Q4 FY2025 Standalone
| Metric       | FY Annual   | − Q3 YTD    | = Q4 Standalone |
|--------------|-------------|-------------|-----------------|
| Revenue      | $XXX.XB     | $XXX.XB     | $XX.XB ✓        |
| Net Income   | $XX.XB      | $XX.XB      | $XX.XB          |

Only show Revenue and Net Income (the two most critical metrics). The ✓ indicates cross-validation with web search results. This table must appear before presenting any standalone quarterly figures.

Section 4 — Revenue & segment analysis

Section 5 — Margin analysis

Section 6 — 8-quarter trend table (mandatory — from Step 4, must include Source column)

Section 7 — Guidance (mandatory — from Step 5)

Section 8 — Valuation (only if requested)

Deliver all mandatory sections before offering follow-up options.


Formatting Rules

  • Revenue / profit: B or M, e.g. "$143.8B", "$890M"
  • Margins: one decimal percent, e.g. "48.2%"
  • Margin changes: basis points, e.g. "+130bps YoY"
  • EPS: two decimals, e.g. "$2.84"
  • Growth rates: one decimal, e.g. "+15.7% YoY"

Limitations

  • SEC EDGAR lag: filed data may lag 2-5 days after earnings release; use web search figures for the latest quarter if filing is unavailable
  • 10-Q is cumulative YTD: always subtract prior periods to derive standalone quarters (see Step 2)
  • No earnings call transcript: summarize management commentary from web search only
  • US stocks only: SEC EDGAR covers US-listed equities only
  • Consensus from web search: always note the source; if unavailable after three attempts, say so explicitly

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.79%
按下载量换算73

Claude

31.74%
按下载量换算70

Cursor

17.49%
按下载量换算39

Gemini CLI

9.89%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills