earnings-call-processor

Automated earnings call processing workflow. Transcribes earnings call audio, fetches related stock/financial data, generates structured analysis, and publishes output as a Feishu document draft. Use when the user wants to process an earnings call (财报电话会), analyze a quarterly earnings call recording, or generate an earnings call report. Triggers on phrases like "处理财报电话会", "分析earnings call", "生成财报分析", "earnings call report".

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "earnings-call-processor" with this command: npx skills add terrycarter1985/earnings-call-processor

Earnings Call Processor

Automated workflow: audio → transcript → financial data → structured analysis → Feishu draft.

Workflow

  1. Transcribe audio — Use Whisper (or available transcription tool) to convert earnings call audio to text.
  2. Fetch financial data — Use the finance skill tools (yfinance) to pull stock price, company info, and historical data for the target ticker.
  3. Generate structured analysis — Combine transcript + financial data into a structured report. See references/analysis-template.md for the output structure.
  4. Publish to Feishu — Use the feishu-doc skill to create a Feishu document draft with the analysis content.

Step-by-Step

1. Transcribe Audio

# If whisper is available
whisper <audio_file> --model turbo --language en --output_format txt --output_dir /tmp/whisper_out

# Otherwise, use any available transcription approach

If no audio file is provided, ask the user for the audio path or URL.

2. Fetch Financial Data

Use the finance skill's yfinance tools:

  • yfinance_get_stock_price(symbol) — current price
  • yfinance_get_stock_info(symbol) — company info, market cap, PE, etc.
  • yfinance_get_historical_data(symbol, period="3mo") — recent price trend

3. Generate Structured Analysis

Read the transcript and financial data, then produce a structured analysis following the template in references/analysis-template.md.

Key sections:

  • Executive Summary — 3-5 sentence overview
  • Financial Highlights — revenue, EPS, guidance vs expectations
  • Key Themes & Management Commentary — strategic priorities, risks, opportunities
  • Q&A Highlights — notable analyst questions and management responses
  • Stock Price Context — recent price action and valuation metrics
  • Outlook & Takeaways — forward-looking assessment

4. Publish to Feishu

Use the feishu-doc skill:

python3 <feishu-doc-path>/scripts/doc_ctl.py create "财报电话会分析: {COMPANY} {QUARTER}" --content "<structured markdown>"

Return the Feishu document URL to the user.

Configuration

No special configuration required. Relies on:

  • finance skill (for financial data)
  • feishu-doc skill (for document publishing)
  • Whisper or equivalent transcription tool (for audio)

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Research

孩子学习行为分析工具

Conducts video analysis of learning behavior for children/students, identifies poor learning habits, provides structured analysis reports and family educatio...

Registry SourceRecently Updated
Research

UUMuse Brain

Access, search, manage, and retrieve information from your UUMuse uploaded documents, knowledge bases, and long-term memory across sessions.

Registry SourceRecently Updated
Research

Autoresearch.Bak

Autonomous experiment loop for AI agents. Use when the user wants to run systematic experiments — optimizing hyperparameters, searching for better configurat...

Registry SourceRecently Updated
Research

Clone Anywebsite

High-fidelity visual-first web rebuilding from design references. Screenshot-driven analysis, DOM interrogation for exact CSS values, asset inspection (WebGL...

Registry SourceRecently Updated