earnings-calendar
Get upcoming earnings dates with timing (before/after market) and EPS estimates. Use when user asks about earnings dates, earnings calendar, when a company…
Output PDF path. Defaults to same directory and basename as the input file.
$ npx -y skills add staskh/trading_skills --skill markdown-to-pdf --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/markdown-to-pdfContext preview
The summary Claude sees to decide when to auto-load this skill.
Output PDF path. Defaults to same directory and basename as the input file.
name: markdown-to-pdf
description: Convert a markdown file to PDF using mistune + reportlab. Use when the user wants to convert a .md file to PDF, or when another skill needs to produce a PDF from markdown output.
user_invocable: true
arguments:
- name: file
description: Path to the input markdown file
required: true
- name: output
description: Output PDF path. Defaults to same directory and basename as the input file.
required: false
dependencies: ["trading-skills"]Converts a markdown file to a professionally formatted PDF. Pure Python — no system tools required.
Requires two Python packages (already in `pyproject.toml`):
mistune>=3.2 reportlab>=4.0
Install with: `uv sync` (or `pip install mistune reportlab`)
uv run python .claude/skills/markdown-to-pdf/scripts/markdown_to_pdf.py <input.md> [output.pdf]
The script returns JSON with:
After conversion, tell the user the output PDF path.
# Convert sandbox/report.md → sandbox/report.pdf (default output) uv run python .claude/skills/markdown-to-pdf/scripts/markdown_to_pdf.py sandbox/report.md # Explicit output path uv run python .claude/skills/markdown-to-pdf/scripts/markdown_to_pdf.py sandbox/report.md sandbox/AAPL_Report_2026-05-20_1430.pdf
Most retail traders juggle 5+ tabs — broker, charting platform, screener, news feed, spreadsheet — just to decide whether to enter a trade. This project collapses all of that into a single conversational interface powered by Claude.
Get upcoming earnings dates with timing (before/after market) and EPS estimates. Use when user asks about earnings dates, earnings calendar, when a company…
Get fundamental financial data including financials, earnings, and key metrics. Use when user asks about financials, earnings, revenue, profit, balance sheet,…
Calculate option Greeks (delta, gamma, theta, vega) and implied volatility for specific options. Use when user asks about Greeks, delta, gamma, theta, vega,…
Get account summary from Interactive Brokers including cash balance, buying power, and account value. Use when user asks about their account, balance, buying…
Generate tactical collar strategy reports for protecting PMCC positions through earnings or high-risk events. Requires TWS or IB Gateway running locally.
Consolidate IBRK trade CSV files from a directory into a summary report. Groups trades by symbol, underlying, date, strike, buy/sell, and open/close. Outputs…