What problem does it solve? Manually copying JSDoc code examples out of Effect source files to try them is tedious and error-prone. This Skill locates the example nearest your cursor or selection and writes it to a ready-to-use TypeScript file in the scratchpad directory. ## Core Features & Use Cases - Nearest-example extraction: Selects the JSDoc **Example** block containing the cursor line, or the closest following or preceding example. - Automatic runner handling: Detects existing Effect runners, appends Effect.runPromise(program) when a top-level program binding exists, or asks how to proceed when no runner is found. - Safe file creation: Generates descriptive filenames from the source file and example title, and never overwrites existing scratchpad files by appending numeric suffixes. - Use Case: While reading packages/effect/src/Schedule.ts, you want to experiment with the retrying example. Invoke the skill at that line and get scratchpad/Schedule-retrying-and-repeating-effects.ts ready to run. ## Quick Start Ask the assistant to extract the JSDoc example at your current cursor position in the active TypeScript file into the scratchpad.