From afe0dff5f908a47aedd6de48a95d228b651ffba5 Mon Sep 17 00:00:00 2001 From: sjat Date: Sun, 10 May 2026 18:00:22 +0200 Subject: [PATCH] fix: exclude superpowers/ from marp slide discovery Prevents AI tooling docs (specs, plans) from being built as presentations. The grep pattern matched marp: true inside code examples in plan files. Co-Authored-By: Claude Sonnet 4.6 --- build-slides.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-slides.sh b/build-slides.sh index 6419836..dfaf746 100755 --- a/build-slides.sh +++ b/build-slides.sh @@ -8,7 +8,7 @@ OUTPUT_DIR="$REPO_ROOT/slides" SLIDES=() while IFS= read -r f; do SLIDES+=("$f") -done < <(grep -rl "^marp: true" "$REPO_ROOT/docs" --include="*.md" 2>/dev/null || true) +done < <(grep -rl "^marp: true" "$REPO_ROOT/docs" --include="*.md" --exclude-dir=superpowers 2>/dev/null || true) if [ ${#SLIDES[@]} -eq 0 ]; then echo "No marp presentations found in docs/."