diff --git a/VERSION b/VERSION index 0df2c524d3..06277cf607 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.33.2.0 +1.33.3.0 diff --git a/setup b/setup index f812511e4d..8c3f3d2e55 100755 --- a/setup +++ b/setup @@ -401,12 +401,19 @@ link_claude_skill_dirs() { mkdir -p "$target" # Validate target isn't a symlink before creating the link if [ -L "$target/SKILL.md" ]; then rm "$target/SKILL.md"; fi - ln -snf "$gstack_dir/$dir_name/SKILL.md" "$target/SKILL.md" + if [ "$IS_WINDOWS" -eq 1 ]; then + cp -f "$gstack_dir/$dir_name/SKILL.md" "$target/SKILL.md" + else + ln -snf "$gstack_dir/$dir_name/SKILL.md" "$target/SKILL.md" + fi linked+=("$link_name") fi done if [ ${#linked[@]} -gt 0 ]; then echo " linked skills: ${linked[*]}" + if [ "$IS_WINDOWS" -eq 1 ]; then + echo " note: Windows install uses file copies. Re-run ./setup after every 'git pull' to refresh skill files." + fi fi }