How this skill is triggered — by the user, by Claude, or both
Slash command
/tvremix:optionsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Analyse the options chain for: `$ARGUMENTS`
Analyse the options chain for: $ARGUMENTS
Before starting, read ../mcp-tools.md and ../presentation.md.
mcp__tvremix__search_symbols.2026-05-16), use it. Otherwise, pick the nearest weekly/monthly expiration that's at least 7 days out.mcp__tvremix__get_option_expirations(symbol=<SYMBOL>)
mcp__tvremix__get_quote(symbol=<SYMBOL>)
get_quote gives you the underlying price you need for ATM / ITM / OTM classification and for min_strike/max_strike framing.
mcp__tvremix__get_option_chain(symbol=<SYMBOL>, expiration=<PICKED_EXPIRATION>)
Don't pass option_type unless the user explicitly asked for just calls or just puts — the full chain lets you show the calls/puts table side-by-side.
If the returned chain is huge (hundreds of strikes), filter in-code to strikes within ±15% of spot. Keep ≈ 10 calls + 10 puts bracketing ATM.
One table per expiration, strikes in the centre, calls on the left, puts on the right:
| Call Vol | Call Δ | Call IV% | Call Ask | Strike | Put Ask | Put IV% | Put Δ | Put Vol |
|---|---|---|---|---|---|---|---|---|
| … | … | … | … | (ATM) $185 | … | … | … | … |
bid/ask are 0 and theoPrice is populated, use theoPrice and add a footnote: "market likely closed — theo prices shown".After the table, in 2–3 lines:
Pick one or two strategies from this list that match the stated view. Always quote the real bid/ask from the chain — never estimate:
For each suggested strategy, give:
Run mcp__tvremix__get_earnings_calendar(symbols=[<SYMBOL>]) to check whether earnings fall inside the option window. If yes, flag it — the option premium probably already prices in the move.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub tvremix/claude-plugin --plugin tvremix