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
co-authored by Claude Opus 4.6
parent 4c5e10a958
commit 78e252af1e
7 changed files with 22 additions and 3 deletions
@@ -58,10 +58,13 @@ if ($DefinitionFile) {
if (Test-Path $ObjectPath -PathType Container) {
$dirName = Split-Path $ObjectPath -Leaf
$candidate = Join-Path $ObjectPath "$dirName.xml"
$sibling = Join-Path (Split-Path $ObjectPath) "$dirName.xml"
if (Test-Path $candidate) {
$ObjectPath = $candidate
} elseif (Test-Path $sibling) {
$ObjectPath = $sibling
} else {
Write-Error "Directory given but no $dirName.xml found inside"
Write-Error "Directory given but no $dirName.xml found inside or as sibling"
exit 1
}
}