From 494e4b2699eab6230fa0c9f575ce4ee0c09cb7c6 Mon Sep 17 00:00:00 2001 From: Matt Pocock Date: Wed, 6 May 2026 14:22:15 +0100 Subject: [PATCH] Exclude deprecated skills from linking in the link-skills script --- scripts/link-skills.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/link-skills.sh b/scripts/link-skills.sh index a988256..9f99b41 100755 --- a/scripts/link-skills.sh +++ b/scripts/link-skills.sh @@ -23,7 +23,7 @@ fi mkdir -p "$DEST" -find "$REPO/skills" -name SKILL.md -not -path '*/node_modules/*' -print0 | +find "$REPO/skills" -name SKILL.md -not -path '*/node_modules/*' -not -path '*/deprecated/*' -print0 | while IFS= read -r -d '' skill_md; do src="$(dirname "$skill_md")" name="$(basename "$src")"