From 710e0e5be0aaa054f9042331774ba1b28a41574c Mon Sep 17 00:00:00 2001 From: xiaolai Date: Mon, 20 Jul 2026 18:43:43 +0000 Subject: [PATCH] fix: split malformed curl instruction into a fenced code block The Execute Installation step collapsed `mkdir -p ...` and `curl -sSL ... -o ...` into a single inline-code span prefixed with the literal word "bash", instead of a fenced ```bash block. An agent or human following the instruction literally invokes `bash mkdir -p ...`, which fails (bash treats "mkdir" as a script argument, not a command name). The correctly-formatted version of this identical instruction already exists at skills/conductor-setup/SKILL.md:182-187; this brings conductor-new-track/SKILL.md in line with it. --- skills/conductor-new-track/SKILL.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/skills/conductor-new-track/SKILL.md b/skills/conductor-new-track/SKILL.md index cca2a93c..95757b6f 100644 --- a/skills/conductor-new-track/SKILL.md +++ b/skills/conductor-new-track/SKILL.md @@ -123,7 +123,12 @@ Adhere to this sequence precisely. - **1p (Official):** Present as a verified Conductor skill. - **3p (Community):** Present as a third-party skill. You MUST warn the user: *"Attention: This is a third-party skill. It will be installed as a frozen version (commit ) for your safety."* - **User Approval:** Ask the user to select which recommended skills they would like to install using a **multiple-choice question**. - - **Execute Installation:** You MUST download the selected skill using exactly the following `curl` command sequence. Do not modify the parameters or add flags: `bash mkdir -p .agents/skills/ curl -sSL SKILL.md -o .agents/skills//SKILL.md` + - **Execute Installation:** You MUST download the selected skill using exactly the following `curl` command sequence. Do not modify the parameters or add flags: + + ```bash + mkdir -p .agents/skills/ + curl -sSL SKILL.md -o .agents/skills//SKILL.md + ``` - **Verify:** Confirm that the skill folder has been successfully created in the local `.agents/skills/` directory. - **If no missing skills found:** Skip this section.