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.
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- Role
- Core Capabilities
- 1. Tone Detection
- 2. Tone Shift Detection
- 3. Historical Pattern Matching
- 4. News Article Generation
- Decision Framework
- Output Format
- Examples
- Guidelines
- Do's ✅
- Don'ts ❌
- Integration
- SEC Filings Extraction
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.
