fix(skills): add sibling XML auto-resolve for directory paths

When a directory is passed (e.g. src/Name or Catalogs/Name), the
auto-resolve now also checks for a sibling file ../Name.xml, which
is the standard layout for both 1C config dumps and EPF/ERF sources.

Affected: meta-info, meta-edit, meta-validate, epf-validate,
subsystem-edit, subsystem-info, subsystem-validate (7 scripts).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Nick Shirokov
2026-02-21 19:04:55 +03:00
parent 4c5e10a958
commit 78e252af1e
7 changed files with 22 additions and 3 deletions
@@ -402,8 +402,11 @@ if ($Mode -eq "tree") {
if (Test-Path $SubsystemPath -PathType Container) {
$dirName = Split-Path $SubsystemPath -Leaf
$candidate = Join-Path $SubsystemPath "$dirName.xml"
$sibling = Join-Path (Split-Path $SubsystemPath) "$dirName.xml"
if (Test-Path $candidate) {
$SubsystemPath = $candidate
} elseif (Test-Path $sibling) {
$SubsystemPath = $sibling
} else {
Write-Host "[ERROR] No $dirName.xml found in directory. Use -Mode tree for directory listing."
exit 1