From d1d3c9c133696d83fa0685d5ef333acfe3ebc5c6 Mon Sep 17 00:00:00 2001 From: Yimikami Date: Wed, 11 Mar 2026 16:34:04 +0300 Subject: [PATCH] fix: install all agent categories for copilot --- scripts/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index ddfd701..d1dc201 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -285,7 +285,7 @@ install_copilot() { local count=0 mkdir -p "$dest" local dir f first_line - for dir in design engineering marketing product project-management \ + for dir in design engineering game-development marketing paid-media product project-management \ testing support spatial-computing specialized; do [[ -d "$REPO_ROOT/$dir" ]] || continue while IFS= read -r -d '' f; do @@ -293,7 +293,7 @@ install_copilot() { [[ "$first_line" == "---" ]] || continue cp "$f" "$dest/" (( count++ )) || true - done < <(find "$REPO_ROOT/$dir" -maxdepth 1 -name "*.md" -type f -print0) + done < <(find "$REPO_ROOT/$dir" -name "*.md" -type f -print0) done ok "Copilot: $count agents -> $dest" }