📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-03 16:04:10 +00:00
parent 2bf579321a
commit b40381458b
482 changed files with 8324 additions and 2007 deletions
@@ -17,6 +17,19 @@ import json
import re
from pathlib import Path
def safe_user_path(path_value, base_dir="."):
"""Resolve a CLI path under the current workspace."""
if base_dir != ".":
raise ValueError("Custom base directories are not supported for CLI paths")
base_path = Path.cwd().resolve()
resolved_path = Path(path_value).expanduser().resolve()
try:
resolved_path.relative_to(base_path)
except ValueError as exc:
raise ValueError(f"Path escapes allowed directory: {path_value}") from exc
return resolved_path
# ── Constants ──────────────────────────────────────────────────────────────
FORBIDDEN_PATTERNS = [
@@ -43,7 +56,7 @@ REGISTRY_PATH = SKILLS_ROOT / "agent-orchestrator" / "data" / "registry.json"
def resolve_existing_dir(path) -> Path:
"""Resolve a user-provided directory and require it to exist."""
resolved = Path(path).expanduser().resolve()
resolved = safe_user_path(path).expanduser().resolve()
if not resolved.is_dir():
raise ValueError(f"Directory does not exist: {resolved}")
return resolved
@@ -222,19 +235,20 @@ def check_forbidden_files(skill_dir: Path) -> dict:
"""Check 7: No forbidden files (.env, credentials, keys, etc.)."""
found_forbidden = []
for root, _dirs, files in os.walk(skill_dir):
for f in files:
f_lower = f.lower()
for pattern in FORBIDDEN_PATTERNS:
if pattern.startswith("*."):
ext = pattern[1:] # e.g., ".key"
if f_lower.endswith(ext):
found_forbidden.append(os.path.join(root, f))
break
else:
if f_lower == pattern.lower():
found_forbidden.append(os.path.join(root, f))
break
for path in safe_user_path(skill_dir).rglob("*"):
if not path.is_file():
continue
f_lower = path.name.lower()
for pattern in FORBIDDEN_PATTERNS:
if pattern.startswith("*."):
ext = pattern[1:] # e.g., ".key"
if f_lower.endswith(ext):
found_forbidden.append(str(path))
break
else:
if f_lower == pattern.lower():
found_forbidden.append(str(path))
break
if found_forbidden:
return {
@@ -255,12 +269,13 @@ def check_forbidden_files(skill_dir: Path) -> dict:
def check_total_size(skill_dir: Path) -> dict:
"""Check 8: Total size is reasonable (warn if > 50MB)."""
total = 0
for root, _dirs, files in os.walk(skill_dir):
for f in files:
try:
total += os.path.getsize(os.path.join(root, f))
except OSError:
pass
for path in safe_user_path(skill_dir).rglob("*"):
if not path.is_file():
continue
try:
total += path.stat().st_size
except OSError:
pass
size_mb = total / (1024 * 1024)
ok = size_mb <= MAX_SIZE_MB
@@ -360,7 +375,7 @@ def validate(skill_dir: Path, strict: bool = False, registry_path: Path = None)
except ValueError as e:
return {
"valid": False,
"skill_dir": str(Path(skill_dir).expanduser()),
"skill_dir": str(safe_user_path(skill_dir).expanduser()),
"checks": [],
"warnings": [],
"errors": [str(e)],
@@ -433,7 +448,7 @@ def main():
if "--registry" in sys.argv:
idx = sys.argv.index("--registry")
if idx + 1 < len(sys.argv):
registry_path = Path(sys.argv[idx + 1]).expanduser().resolve()
registry_path = safe_user_path(sys.argv[idx + 1]).expanduser().resolve()
result = validate(skill_dir, strict=strict, registry_path=registry_path)
print(json.dumps(result, indent=2, ensure_ascii=False))