Files
cc-1c-skills/tests/skills/cases/mxl-info/template-overview.json
T
Nick Shirokov 8b38f8f78d feat: add mxl-* tests (batch 3), support cwd in skill config and preRun
- mxl-compile, mxl-validate, mxl-info, mxl-decompile: 4 cases
- runner: cwd option in _skill.json and preRun steps for skills
  that resolve OutputPath relative to current directory
- Finding: mxl-compile only accepts relative OutputPath

21 tests across 9 skills, all passing.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-28 13:44:37 +03:00

14 lines
433 B
JSON

{
"name": "Обзор макета",
"preRun": [
{
"script": "mxl-compile/scripts/mxl-compile",
"input": { "columns": 3, "areas": [{ "name": "Заголовок", "rows": [["A", "B", "C"]] }] },
"args": { "-JsonPath": "{inputFile}", "-OutputPath": "Template.xml" },
"cwd": "{workDir}"
}
],
"params": { "templatePath": "Template.xml" },
"expect": { "stdoutContains": "Заголовок" }
}