fix: sync upstream main with Windows validation and skill guidance cleanup (#457)

* fix: stabilize validation and tests on Windows

* test: add Windows smoke coverage for skill activation

* refactor: make setup_web script CommonJS

* fix: repair aegisops-ai frontmatter

* docs: add when-to-use guidance to core skills

* docs: add when-to-use guidance to Apify skills

* docs: add when-to-use guidance to Google and Expo skills

* docs: add when-to-use guidance to Makepad skills

* docs: add when-to-use guidance to git workflow skills

* docs: add when-to-use guidance to fp-ts skills

* docs: add when-to-use guidance to Three.js skills

* docs: add when-to-use guidance to n8n skills

* docs: add when-to-use guidance to health analysis skills

* docs: add when-to-use guidance to writing and review skills

* meta: sync generated catalog metadata

* docs: add when-to-use guidance to Robius skills

* docs: add when-to-use guidance to review and workflow skills

* docs: add when-to-use guidance to science and data skills

* docs: add when-to-use guidance to tooling and automation skills

* docs: add when-to-use guidance to remaining skills

* fix: gate bundle helper execution in Windows activation

* chore: drop generated artifacts from contributor PR

* docs(maintenance): Record PR 457 sweep

Document the open issue triage, PR supersedence decision, local verification, and source-only cleanup that prepared PR #457 for re-running CI.

---------

Co-authored-by: sickn33 <sickn33@users.noreply.github.com>
This commit is contained in:
Al-Garadi
2026-04-05 22:04:39 +03:00
committed by GitHub
parent f585040a39
commit ef285b5c97
152 changed files with 993 additions and 62 deletions

View File

@@ -10,7 +10,7 @@ import shutil
import subprocess
import tempfile
import json
from pathlib import Path
from pathlib import Path, PurePosixPath
MS_REPO = "https://github.com/microsoft/skills.git"
REPO_ROOT = Path(__file__).parent.parent
@@ -182,7 +182,7 @@ def find_skills_in_directory(source_dir: Path):
continue
try:
relative_path = item.relative_to(skills_source)
relative_path = PurePosixPath(item.relative_to(skills_source).as_posix())
except ValueError:
continue
@@ -212,7 +212,7 @@ def find_plugin_skills(source_dir: Path, already_synced_names: set):
if skill_name not in already_synced_names:
results.append({
"relative_path": Path("plugins") / skill_name,
"relative_path": PurePosixPath("plugins") / skill_name,
"skill_md": skill_file,
"source_dir": skill_dir,
})
@@ -238,7 +238,7 @@ def find_github_skills(source_dir: Path, already_synced_names: set):
if skill_dir.name not in already_synced_names:
results.append({
"relative_path": Path(".github/skills") / skill_dir.name,
"relative_path": PurePosixPath(".github/skills") / skill_dir.name,
"skill_md": skill_md,
"source_dir": skill_dir,
})