From ecc1fb8bc0b82f1d3c7a92a82167ae8e8e613a67 Mon Sep 17 00:00:00 2001 From: Curtis 'Fjord' Hawthorne Date: Wed, 11 Mar 2026 16:54:05 -0700 Subject: [PATCH] Update playwright-interactive examples for original image detail (#261) Ensure that as https://github.com/openai/codex/pull/14175 rolls out, this skill will take advantage of it (adding the arg before the change rolls out is a no-op, so this is safe to add now). --- skills/.curated/playwright-interactive/SKILL.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/skills/.curated/playwright-interactive/SKILL.md b/skills/.curated/playwright-interactive/SKILL.md index 8575c02..7d85f82 100644 --- a/skills/.curated/playwright-interactive/SKILL.md +++ b/skills/.curated/playwright-interactive/SKILL.md @@ -365,6 +365,7 @@ var emitJpeg = async function (bytes) { await codex.emitImage({ bytes, mimeType: "image/jpeg", + detail: "original", }); }; @@ -559,6 +560,7 @@ Web desktop raw emit: await codex.emitImage({ bytes: await page.screenshot({ type: "jpeg", quality: 85 }), mimeType: "image/jpeg", + detail: "original", }); ``` @@ -568,6 +570,7 @@ Electron raw emit: await codex.emitImage({ bytes: await appWindow.screenshot({ type: "jpeg", quality: 85 }), mimeType: "image/jpeg", + detail: "original", }); ``` @@ -577,6 +580,7 @@ Mobile raw emit after the mobile web context is already running: await codex.emitImage({ bytes: await mobilePage.screenshot({ type: "jpeg", quality: 85 }), mimeType: "image/jpeg", + detail: "original", }); ```