From 268061b0fd1936e7bc12eb13ecbc04a3fd06c743 Mon Sep 17 00:00:00 2001 From: Reza Rezvani Date: Wed, 25 Mar 2026 14:53:01 +0100 Subject: [PATCH] fix: move browser-automation and spec-driven-workflow scripts to scripts/ directory Validator expects scripts in scripts/ subdirectory, not at skill root. Moved 6 scripts to match repo convention. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../browser-automation/{ => scripts}/anti_detection_checker.py | 0 .../browser-automation/{ => scripts}/form_automation_builder.py | 0 engineering/browser-automation/{ => scripts}/scraping_toolkit.py | 0 engineering/spec-driven-workflow/{ => scripts}/spec_generator.py | 0 engineering/spec-driven-workflow/{ => scripts}/spec_validator.py | 0 engineering/spec-driven-workflow/{ => scripts}/test_extractor.py | 0 6 files changed, 0 insertions(+), 0 deletions(-) rename engineering/browser-automation/{ => scripts}/anti_detection_checker.py (100%) rename engineering/browser-automation/{ => scripts}/form_automation_builder.py (100%) rename engineering/browser-automation/{ => scripts}/scraping_toolkit.py (100%) rename engineering/spec-driven-workflow/{ => scripts}/spec_generator.py (100%) rename engineering/spec-driven-workflow/{ => scripts}/spec_validator.py (100%) rename engineering/spec-driven-workflow/{ => scripts}/test_extractor.py (100%) diff --git a/engineering/browser-automation/anti_detection_checker.py b/engineering/browser-automation/scripts/anti_detection_checker.py similarity index 100% rename from engineering/browser-automation/anti_detection_checker.py rename to engineering/browser-automation/scripts/anti_detection_checker.py diff --git a/engineering/browser-automation/form_automation_builder.py b/engineering/browser-automation/scripts/form_automation_builder.py similarity index 100% rename from engineering/browser-automation/form_automation_builder.py rename to engineering/browser-automation/scripts/form_automation_builder.py diff --git a/engineering/browser-automation/scraping_toolkit.py b/engineering/browser-automation/scripts/scraping_toolkit.py similarity index 100% rename from engineering/browser-automation/scraping_toolkit.py rename to engineering/browser-automation/scripts/scraping_toolkit.py diff --git a/engineering/spec-driven-workflow/spec_generator.py b/engineering/spec-driven-workflow/scripts/spec_generator.py similarity index 100% rename from engineering/spec-driven-workflow/spec_generator.py rename to engineering/spec-driven-workflow/scripts/spec_generator.py diff --git a/engineering/spec-driven-workflow/spec_validator.py b/engineering/spec-driven-workflow/scripts/spec_validator.py similarity index 100% rename from engineering/spec-driven-workflow/spec_validator.py rename to engineering/spec-driven-workflow/scripts/spec_validator.py diff --git a/engineering/spec-driven-workflow/test_extractor.py b/engineering/spec-driven-workflow/scripts/test_extractor.py similarity index 100% rename from engineering/spec-driven-workflow/test_extractor.py rename to engineering/spec-driven-workflow/scripts/test_extractor.py