Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions equity-research/commands/sec-compare.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# /sec-compare [ticker] [period1] [period2]
Compare specific sections of two SEC filings to identify narrative shifts.

## Arguments
- `ticker`: Stock symbol (e.g., AAPL)
- `period1`: Base filing (e.g., 2024-10K)
- `period2`: Target filing (e.g., 2025-Q1)

## Instructions
1. Use the **SEC EDGAR MCP** to fetch both filings.
2. Isolate the "Management's Discussion and Analysis" (MD&A) sections.
3. Perform a semantic diff to highlight:
- New risks added.
- Deletions of previous guidance.
- Changes in specific numerical targets (e.g., CAPEX guidance).
4. Summarize "The Delta" in 3 bullet points.
12 changes: 12 additions & 0 deletions financial-analysis/skills/visual-standards/SKILL.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Financial Visualization Standards
Ensures all Python-generated charts follow professional financial formatting.

## Standards
- **Palette**: Primary: #003366 (Navy), Secondary: #808080 (Gray), Accent: #CC0000 (Alert).
- **Rules**:
- No vertical gridlines; Y-axis only.
- Labels must include currency and unit (e.g., "USD in Millions").
- Always add "Source: [MCP Provider]" watermark.

## Implementation
When generating matplotlib/seaborn code, use these color hex codes and formatting rules by default.