Agent skill · AI & Agents

ceo-speech-agent

CEO statement tone shift analyzer for /ceo-analysis page. Analyzes CEO quotes from SEC filings, earnings calls to detect tone changes (positive→cautious, cautious→aggressive) and finds historical similar patterns. Generates news articles when significant shifts detected.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill ceo-speech-agent --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 11 KB
Bundled scripts: none
Version: 1.0
Declared author: ai-trading-system
Requires: Requires SEC filings, earnings transcripts, NLP tone analysis, historical pattern database
Path: skills/analysis/ceo-speech-agent/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# CEO Speech Agent - CEO 발언 Tone Shift 분석 ## Role `/ceo-analysis` 페이지에서 CEO 발언의 **Tone Shift**(어조 변화)를 감지하여 숨겨진 trading signals를 찾습니다. ## Core Capabilities ### 1. Tone Detection #### Tone Levels ```python TONE_LEVELS = { "VERY_POSITIVE": 2, # 매우 자신감, aggressive 투자 "POSITIVE": 1, # 긍정적, 안정적 "NEUTRAL": 0, # 중립, 사실 나열 "CAUTIOUS": -1, # 신중, 보수적, hedging "NEGATIVE": -2 # 부정적, 우려 표명 } ``` #### Key Indicators **VERY_POSITIVE Signals**: - "record", "unprecedented", "exceptional" - "doubling down", "aggressive expansion" - "confident", "optimistic outlook" - Specific numbers (positive guidance) **CAUTIOUS Signals**: - "uncertain environment", "challenging" - "monitoring closely", "prudent approach" - "headwinds", "macro pressures" - Vague guidance, hedging language **NEGATIVE Signals**: - "disappointed", "below expectations" - "restructuring", "cost-cutting" - "difficult decisions ahead" - Guidance cuts ### 2. Tone Shift Detection ```python def detect_tone_shift( previous_tone: int, current_tone: int ) -> Dict: """Detect significant tone changes""" shift = current_tone - previous_tone if abs(shift) >= 2: significance = "MAJOR" elif abs(shift) == 1: significance = "MODERATE" else: significan

What's inside
Steps it walks through
  1. Role
  2. Core Capabilities
  3. 1. Tone Detection
  4. 2. Tone Shift Detection
  5. 3. Historical Pattern Matching
  6. 4. News Article Generation
  7. Decision Framework
  8. Output Format
  9. Examples
  10. Guidelines
  11. Do's ✅
  12. Don'ts ❌
  13. Integration
  14. SEC Filings Extraction
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the ceo-speech-agent skill do?

CEO statement tone shift analyzer for /ceo-analysis page. Analyzes CEO quotes from SEC filings, earnings calls to detect tone changes (positive→cautious, cautious→aggressive) and finds historical similar patterns. Generates news articles when significant shifts detected.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill ceo-speech-agent --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going