db-list

db-list is a skill for Claude Code from Nikolay-Shirokov/cc-1c-skills. It costs 46 tokens per session (2,432 once invoked), scanned A, original, MIT.

A command for listing and managing the 1C databases registered in a project's .v8-project.json file.

In plain words
What is it for?
Use it to list databases, view their details, add a database to the registry, or remove one.
Why use it?
It keeps database connection details, names, aliases, and branch links in one place instead of requiring them each time.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

Part of the 1c-skills plugin — 79 skills, 2 hooks shipped together

Good fit Use it to list databases, view their details, add a database to the registry, or remove one.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/nikolay-shirokov/cc-1c-skills/db-list
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Nikolay-Shirokov/cc-1c-skills --skill db-list
Clone the repo
git clone --depth 1 https://github.com/Nikolay-Shirokov/cc-1c-skills

Made for: Claude Code.

Or install 1c-skills, the plugin that ships this one along with the rest of its 79 skills, 2 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for db-list

README.md
[![agentmods](https://agentmods.dev/badge/skills/nikolay-shirokov/cc-1c-skills/db-list/github.svg)](https://agentmods.dev/skills/nikolay-shirokov/cc-1c-skills/db-list)
Your own site
<a href="https://agentmods.dev/skills/nikolay-shirokov/cc-1c-skills/db-list"><img src="https://agentmods.dev/badge/skills/nikolay-shirokov/cc-1c-skills/db-list/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for db-list

Your own site · 80×15
<a href="https://agentmods.dev/skills/nikolay-shirokov/cc-1c-skills/db-list"><img src="https://agentmods.dev/badge/skills/nikolay-shirokov/cc-1c-skills/db-list.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,432 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium analysis-evasion · line 1
    Suspicious Unicode normalization or mixed-script content
    Fix: Review the flagged content for security risks. Ensure no credentials, secrets, or sensitive data are exposed.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00046 $0.02432
Opus 5 $0.00023 $0.01216
Sonnet 5 $0.00009 $0.00486
Haiku 4.5 $0.00005 $0.00243

Measured 5d ago against content hash 2729b8b173b8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

db-list scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/db-list/SKILL.md · 214 lines

How it starts

The opening of the file, as written. The whole thing — 214 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/db-list — Управление реестром баз данных

Управляет файлом .v8-project.json — реестром информационных баз проекта. Файл хранит параметры подключения, алиасы, привязку к веткам Git.

Usage

/db-list                    — показать список баз
/db-list add                — добавить базу (интерактивно)
/db-list remove <id>        — удалить базу из реестра
/db-list show <id|alias>    — подробности по базе

Формат .v8-project.json

Файл размещается в корне проекта (рядом с .git/).

{
  "v8path": "C:\\Program Files\\1cv8\\8.3.25.1257\\bin",
  "v8args": ["/UseHwLicenses+"],
  "databases": [
    {
      "id": "dev",
      "name": "Разработка",
      "type": "file",
      "path": "C:\\Bases\\MyApp_Dev",
      "user": "Admin",
      "password": "",
      "aliases": ["dev", "разработка"],
      "branches": ["dev", "develop", "feature/*"],
      "configSrc": "C:\\WS\\myapp\\cfsrc",
      "repository": {
        "path": "\\\\srv01\\repo\\MyApp",
        "user": "Ivanov",
        "password": ""
      },
      "extensions": [
        {
          "name": "МоёРасширение",
          "src": "src\\cfe\\МоёРасширение",
          "repository": { "path": "\\\\srv01\\repo\\MyApp_Ext", "user": "Ivanov", "password": "" }
        }
      ]
    },
    {
      "id": "test",
      "name": "Тестовая",
      "type": "server",
      "server": "srv01",
      "ref": "MyApp_Test",
      "user": "Admin",
      "password": "123",
      "aliases": ["test", "тест"]
    }
  ],
  "default": "dev"
}

Поля корневого объекта

Поле Тип Описание
v8path string Каталог bin платформы 1С. Необязательный — если не задан, автоопределение
v8args array Доп. аргументы запуска 1cv8.exe для всех навыков, напр. ["/UseHwLicenses+"]
ibcmdargs array Доп. аргументы ibcmd (форма --ключ=значение)
newObjectPosition "end" / "byName" Куда попадает новый объект в составе конфигурации: в конец своего вида (по умолчанию) или на место по имени. Переопределяется в databases[]
extensionApplyCheck bool Проверять ли применимость расширения после загрузки в базу (по умолчанию true). Разово отключается ключом -NoApplyCheck
externalCheck bool Проверять ли исходники внешней обработки/отчёта платформой перед сборкой (по умолчанию true). Разово отключается ключом -Checks off
databases array Массив баз данных
default string id базы по умолчанию

Read the full file on GitHub · 214 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago Changed · +2 lines 2729b8b173b8
  2. 12d ago First seen · 212 lines · 46 tokens per session scan A 7237fcf1229f

Subscribe to this mod's changes

db-list is a skill published in the GitHub repository Nikolay-Shirokov/cc-1c-skills (595 stars, last pushed 4d ago), licensed MIT. It adds 46 tokens to every session and 2,432 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.