From 1c-skills
Creates new 1C informational bases (file or server) via PowerShell script. Supports templates, auto-detects platform path, and offers registration in .v8-project.json. Use for new or empty 1C databases.
npx claudepluginhub nikolay-shirokov/cc-1c-skills --plugin 1c-skillsThis skill uses the workspace's default tool permissions.
---
Launches 1C:Enterprise information bases in user mode from file or server. Reads .v8-project.json for config, matches Git branches, supports EPF execution and parameters.
Creates, manages, and automates LibreOffice Base databases in ODB format with forms, reports, data operations, SQL queries, and connections to MySQL, PostgreSQL, SQLite via Python UNO or CLI.
Creates React and Vite code apps for Power Apps. Scaffolds projects, checks prerequisites like Node.js and pac CLI, authenticates, builds, and deploys to Power Platform.
Share bugs, ideas, or general feedback.
Создаёт новую информационную базу 1С (файловую или серверную) и предлагает зарегистрировать в .v8-project.json.
/db-create <path> — файловая база по указанному пути
/db-create <server>/<name> — серверная база
/db-create — интерактивно
Прочитай .v8-project.json из корня проекта для v8path (путь к платформе).
Если v8path не задан — автоопределение: Get-ChildItem "C:\Program Files\1cv8\*\bin\1cv8.exe" | Sort -Desc | Select -First 1
После создания базы предложи зарегистрировать через /db-list add.
powershell.exe -NoProfile -File "${CLAUDE_SKILL_DIR}/scripts/db-create.ps1" <параметры>
| Параметр | Обязательный | Описание |
|---|---|---|
-V8Path <путь> | нет | Каталог bin платформы (или полный путь к 1cv8.exe) |
-InfoBasePath <путь> | * | Путь к файловой базе |
-InfoBaseServer <сервер> | * | Сервер 1С (для серверной базы) |
-InfoBaseRef <имя> | * | Имя базы на сервере |
-UseTemplate <файл> | нет | Создать из шаблона (.cf или .dt) |
-AddToList | нет | Добавить в список баз 1С |
-ListName <имя> | нет | Имя базы в списке |
*— нужен либо-InfoBasePath, либо пара-InfoBaseServer+-InfoBaseRef
| Код | Описание |
|---|---|
| 0 | Успешно |
| 1 | Ошибка (см. лог) |
.v8-project.json (через /db-list add)/UseTemplate — предупреди что конфигурация будет загружена из шаблона# Создать файловую базу
powershell.exe -NoProfile -File "${CLAUDE_SKILL_DIR}/scripts/db-create.ps1" -InfoBasePath "C:\Bases\NewDB"
# Создать серверную базу
powershell.exe -NoProfile -File "${CLAUDE_SKILL_DIR}/scripts/db-create.ps1" -InfoBaseServer "srv01" -InfoBaseRef "MyApp_Test"
# Создать из шаблона CF
powershell.exe -NoProfile -File "${CLAUDE_SKILL_DIR}/scripts/db-create.ps1" -InfoBasePath "C:\Bases\NewDB" -UseTemplate "C:\Templates\config.cf"
# Создать и добавить в список баз
powershell.exe -NoProfile -File "${CLAUDE_SKILL_DIR}/scripts/db-create.ps1" -InfoBasePath "C:\Bases\NewDB" -AddToList -ListName "Новая база"