From ead3567d1b9e12ce9de0d17d1c7fa9b1fa386863 Mon Sep 17 00:00:00 2001 From: Alba Rivas Date: Tue, 30 Jun 2026 12:06:03 +0200 Subject: [PATCH] Include writing scripts in skill trigger conditions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The skill was only invoked for scan/run/deploy/init but not when writing entrypoint.py, causing agents to miss the required patterns (e.g., toPandas → transform → createDataFrame). --- skills/developing-datacloud-code-extension/SKILL.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/skills/developing-datacloud-code-extension/SKILL.md b/skills/developing-datacloud-code-extension/SKILL.md index 393cfe0..06f48a5 100644 --- a/skills/developing-datacloud-code-extension/SKILL.md +++ b/skills/developing-datacloud-code-extension/SKILL.md @@ -1,6 +1,6 @@ --- name: developing-datacloud-code-extension -description: "Develop and deploy Data Cloud Code Extensions using SF CLI plugin. Use this skill when creating custom Python transformations for Data Cloud, deploying code extensions, or testing data transformations. Supports init, run, scan, and deploy operations." +description: "Develop and deploy Data Cloud Code Extensions using SF CLI plugin. Use this skill when writing or updating code extension scripts, creating new projects, scanning, testing, or deploying. Covers the full lifecycle: write, init, scan, run, and deploy." metadata: version: "1.0" --- @@ -13,6 +13,7 @@ This skill provides a complete workflow for developing, testing, and deploying c ## When to Use +- User wants to write or update a code extension script (entrypoint.py) - User wants to create a new code extension project - User needs to test a code extension locally - User wants to scan code for required permissions