From 1c-skills
Generates 1С subsystem XML from a JSON definition file or inline string. Use this to add or update a subsystem (section) in a 1С configuration export.
How this skill is triggered — by the user, by Claude, or both
Slash command
/1c-skills:subsystem-compile [-DefinitionFile <json> | -Value <json-string>] -OutputDir <ConfigDir> [-Parent <path>][-DefinitionFile <json> | -Value <json-string>] -OutputDir <ConfigDir> [-Parent <path>]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Принимает JSON-определение подсистемы → генерирует XML + файловую структуру + регистрирует в родителе (Configuration.xml или родительская подсистема).
Принимает JSON-определение подсистемы → генерирует XML + файловую структуру + регистрирует в родителе (Configuration.xml или родительская подсистема).
| Параметр | Описание |
|---|---|
DefinitionFile | Путь к JSON-файлу определения |
Value | Инлайн JSON-строка (альтернатива DefinitionFile) |
OutputDir | Корень выгрузки (где Subsystems/, Configuration.xml) |
Parent | Путь к XML родительской подсистемы (для вложенных) |
NoValidate | Пропустить авто-валидацию |
powershell.exe -NoProfile -File "${CLAUDE_SKILL_DIR}/scripts/subsystem-compile.ps1" -Value '<json>' -OutputDir '<ConfigDir>'
{
"name": "МояПодсистема",
"synonym": "Моя подсистема",
"comment": "",
"includeInCommandInterface": true,
"useOneCommand": false,
"explanation": "Описание раздела",
"picture": "CommonPicture.МояКартинка",
"content": ["Catalog.Товары", "Document.Заказ"]
}
Минимально: только name. Остальное — дефолты.
# Минимальная подсистема
... -Value '{"name":"Тест"}' -OutputDir config/
# С составом и картинкой
... -Value '{"name":"Продажи","content":["Catalog.Товары","Report.Продажи"],"picture":"CommonPicture.Продажи"}' -OutputDir config/
# Вложенная подсистема
... -Value '{"name":"Дочерняя"}' -OutputDir config/ -Parent config/Subsystems/Продажи.xml
npx claudepluginhub nikolay-shirokov/cc-1c-skills --plugin 1c-skills-pyAnalyzes 1C subsystem structure from XML export: composition, child subsystems, command interface, hierarchy tree. Use for navigating 1C configuration.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.