What problem does it solve? Quantitative researchers need a consistent way to turn raw options chain data into a validated implied volatility surface before running Greeks or strategy analysis, without hand-writing fitting logic each time. ## Core Features & Use Cases - Vol Surface Construction: Calls the published build_vol_surface tool to read options chain CSV data and generate surface point sets with expiry, strike, side, and implied volatility. - Schema-Validated Output: Produces a Pydantic-validated VolSurfaceResult including underlying, forward price, points, interpolation method, and data quality flags. - Pipeline Integration: Triggers downstream Greeks calculation (calc_greeks / options-greeks) and optionally persists results to artifacts/options/{strategy_name}/vol_surface.json. - Use Case: After an options brainstorm produces an OptionsSpec for a GC vol carry strategy, run this Skill to fit the surface from the sample options CSV, validate that implied vols fall within [0, 5], and hand off to the Greeks step. ## Quick Start Fit an implied volatility surface from the sample GC options CSV for my OptionsSpec and pass the validated VolSurfaceResult to the Greeks calculation step.