📦 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
@@ -1,6 +1,6 @@
{
"name": "antigravity-bundle-web-designer",
"version": "13.7.0",
"version": "13.9.0",
"description": "Editorial \"Web Designer\" bundle for Claude Code from Antigravity Awesome Skills.",
"author": {
"name": "sickn33 and contributors",
@@ -1,6 +1,6 @@
{
"name": "agyb-web-designer",
"version": "13.7.0",
"version": "13.9.0",
"description": "Install the \"Web Designer\" editorial skill bundle from Antigravity Awesome Skills.",
"author": {
"name": "sickn33 and contributors",
@@ -71,6 +71,19 @@ import re
import json
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
class MobileAuditor:
def __init__(self):
self.issues = []
@@ -612,11 +625,12 @@ class MobileAuditor:
def audit_directory(self, directory: str) -> None:
extensions = {'.tsx', '.ts', '.jsx', '.js', '.dart'}
for root, dirs, files in os.walk(directory):
dirs[:] = [d for d in dirs if d not in {'node_modules', '.git', 'dist', 'build', '.next', 'ios', 'android', 'build', '.idea'}]
for file in files:
if Path(file).suffix in extensions:
self.audit_file(os.path.join(root, file))
skipped = {'node_modules', '.git', 'dist', 'build', '.next', 'ios', 'android', 'build', '.idea'}
for path in safe_user_path(directory).rglob("*"):
if not path.is_file() or any(part in skipped for part in path.parts):
continue
if path.suffix in extensions:
self.audit_file(str(path))
def get_report(self):
return {
@@ -633,7 +647,7 @@ def main():
print("Usage: python mobile_audit.py <directory>")
sys.exit(1)
path = sys.argv[1]
path = safe_user_path(sys.argv[1])
is_json = "--json" in sys.argv
auditor = MobileAuditor()