From d5733b18b9e9105ea9c20343f4286c01eef7fcf3 Mon Sep 17 00:00:00 2001 From: Vellum Assistant Date: Wed, 25 Feb 2026 02:40:21 -0500 Subject: [PATCH 1/2] fix: restrict screen-recording skill to macOS via os metadata Co-Authored-By: Claude --- assistant/src/config/bundled-skills/screen-recording/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assistant/src/config/bundled-skills/screen-recording/SKILL.md b/assistant/src/config/bundled-skills/screen-recording/SKILL.md index bc286ae9ef5..50b0707b7f4 100644 --- a/assistant/src/config/bundled-skills/screen-recording/SKILL.md +++ b/assistant/src/config/bundled-skills/screen-recording/SKILL.md @@ -1,7 +1,7 @@ --- name: "Screen Recording" description: "Record the user's screen as a video file" -metadata: {"vellum": {"emoji": "🎬"}} +metadata: {"vellum": {"emoji": "🎬"}, "os": ["darwin"]} --- Capture screen recordings as video files attached to the conversation. From e295db90579ea06ab97a0500133764350174c583 Mon Sep 17 00:00:00 2001 From: Jason Zhou Date: Wed, 25 Feb 2026 02:44:58 -0500 Subject: [PATCH 2/2] fix: move os gate inside vellum metadata namespace (#8722) Co-authored-by: Vellum Assistant Co-authored-by: Claude --- assistant/src/config/bundled-skills/screen-recording/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assistant/src/config/bundled-skills/screen-recording/SKILL.md b/assistant/src/config/bundled-skills/screen-recording/SKILL.md index 50b0707b7f4..da25822dfa1 100644 --- a/assistant/src/config/bundled-skills/screen-recording/SKILL.md +++ b/assistant/src/config/bundled-skills/screen-recording/SKILL.md @@ -1,7 +1,7 @@ --- name: "Screen Recording" description: "Record the user's screen as a video file" -metadata: {"vellum": {"emoji": "🎬"}, "os": ["darwin"]} +metadata: {"vellum": {"emoji": "🎬", "os": ["darwin"]}} --- Capture screen recordings as video files attached to the conversation.