gitextract_wakc4r5b/ ├── .github/ │ └── workflows/ │ └── quarterly_run.yml ├── README.md ├── data/ │ └── holdings/ │ ├── 2026-04-08_claude_round1.json │ ├── 2026-04-08_final_analysis.json │ ├── 2026-04-08_holdings_parsed.json │ ├── 2026-04-08_options.json │ ├── 2026-04-08_raw_holdings.json │ ├── 2026-04-08_scores.json │ ├── 2026-05-18_backtest.json │ ├── 2026-05-18_claude_round1.json │ ├── 2026-05-18_final_analysis.json │ ├── 2026-05-18_holdings_parsed.json │ ├── 2026-05-18_options.json │ ├── 2026-05-18_raw_holdings.json │ └── 2026-05-18_scores.json ├── reports/ │ ├── 2026-04-08_report.html │ └── 2026-05-18_report.html ├── requirements.txt └── src/ ├── analyze_claude_round1.py ├── analyze_claude_round2.py ├── backtest.py ├── config.py ├── date_check.py ├── fetch_filings.py ├── multi_quarter.py ├── notify.py ├── options_lookup.py ├── parse_13f.py ├── scoring.py └── send_report.py