From 1c-skills
Scaffolds an empty 1C configuration (XML sources) from scratch. Use when starting a new 1C project.
How this skill is triggered — by the user, by Claude, or both
Slash command
/1c-skills:cf-init <Name> [-Synonym <name>] [-OutputDir src]<Name> [-Synonym <name>] [-OutputDir src]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
Создаёт scaffold исходников пустой конфигурации 1С: `Configuration.xml`, `Languages/Русский.xml`.
Создаёт scaffold исходников пустой конфигурации 1С: Configuration.xml, Languages/Русский.xml.
| Параметр | Описание |
|---|---|
Name | Имя конфигурации (обязат.) |
Synonym | Синоним (= Name если не указан) |
OutputDir | Каталог для создания (default: src) |
Version | Версия конфигурации |
Vendor | Поставщик |
CompatibilityMode | Режим совместимости (default: Version8_3_24) |
powershell.exe -NoProfile -File "${CLAUDE_SKILL_DIR}/scripts/cf-init.ps1" -Name "МояКонфигурация"
# Базовая конфигурация
... -Name МояКонфигурация -Synonym "Моя конфигурация" -OutputDir test-tmp/cf
# С версией и поставщиком
... -Name TestCfg -Synonym "Тестовая" -Version "1.0.0.1" -Vendor "Фирма 1С" -OutputDir test-tmp/cf2
# Другой режим совместимости
... -Name TestCfg -CompatibilityMode Version8_3_27 -OutputDir test-tmp/cf3
/cf-init TestConfig -OutputDir test-tmp/cf
/cf-info test-tmp/cf — проверить созданное
/cf-validate test-tmp/cf — валидировать
npx claudepluginhub nikolay-shirokov/cc-1c-skills --plugin 1c-skills-pyScaffolds XML sources for a 1C configuration extension (CFE). Use when creating a new extension for patching, customizing, or adding to a 1C configuration.
Scaffolds Frappe Framework v15 apps with multi-layer architecture (Controller → Service → Repository), modules, API, and best practices. For new Frappe/ERPNext custom apps.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.