bsp

bsp is a skill for Codex from brake71/1c-ssl-skills. It costs 157 tokens per session (2,764 once invoked), scanned A, original, MIT.

A guide for developing and reviewing business software in 1C with its Standard Subsystems Library, a collection of shared building blocks for common tasks.

In plain words
What is it for?
Use it when writing or reviewing 1C code for scheduled jobs, data exchange, printing, files, access control, updates, electronic signatures, and related library features.
Why use it?
It helps developers choose the correct shared modules and public functions, use their parameters correctly, and avoid obsolete or internal interfaces.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it when writing or reviewing 1C code for scheduled jobs, data exchange, printing, files, access control, updates, electronic signatures, and related library features.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/brake71/1c-ssl-skills/bsp
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 brake71/1c-ssl-skills --skill bsp
Clone the repo
git clone --depth 1 https://github.com/brake71/1c-ssl-skills

Made for: Codex.

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 bsp

README.md
[![agentmods](https://agentmods.dev/badge/skills/brake71/1c-ssl-skills/bsp/github.svg)](https://agentmods.dev/skills/brake71/1c-ssl-skills/bsp)
Your own site
<a href="https://agentmods.dev/skills/brake71/1c-ssl-skills/bsp"><img src="https://agentmods.dev/badge/skills/brake71/1c-ssl-skills/bsp/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 bsp

Your own site · 80×15
<a href="https://agentmods.dev/skills/brake71/1c-ssl-skills/bsp"><img src="https://agentmods.dev/badge/skills/brake71/1c-ssl-skills/bsp.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 157 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,764 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.00157 $0.02764
Opus 5 $0.00078 $0.01382
Sonnet 5 $0.00031 $0.00553
Haiku 4.5 $0.00016 $0.00276

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

Security

Grade A, and why

bsp 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.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/bsp_api.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/bsp/SKILL.md · 136 lines

How it starts

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

Применение БСП 3.1.11 в прикладной разработке

Скил учит правильно применять Библиотеку стандартных подсистем 1С (версия 3.1.11) в прикладном коде: какие общие модули и методы вызывать, с какими параметрами, какие нюансы и антипаттерны. Скил самодостаточен — в нём нет ссылок на внешнюю документацию и хардкод-номеров строк; параметры и рабочие примеры даны inline в references/.

Каждый reference — workflow-сценарии вида «задача → функция (полная сигнатура

  • регион) → параметры → пример → нюансы/антипаттерны». Это не карта методов (которую отдаёт греп), а знание как применять БСП правильно.

Подтверждение сигнатур/регионов — по исходникам src/cf/ через скрипт scripts/bsp_api.py или греп (см. ниже). Регион БСП = имя #Область …: ПрограммныйИнтерфейс (stable, вызывать), СлужебныйПрограммныйИнтерфейс / СлужебныеПроцедурыИФункции (⚠️ служебный), УстаревшиеПроцедурыИФункции (⚠️ deprecated), модули *Переопределяемый (хук переопределения — БСП вызывает, прикладной код реализует, не вызывается напрямую).

Порядок работы

  1. Определи прикладную задачу и выбери по таблице ниже один основной reference. Подключай второй только для действительно сквозного сценария, например печати в фоне.
  2. Найди внутри reference подходящий сценарий по заголовкам ### и ключевым словам через rg -n; затем прочитай диапазон строк со сценарием, сигнатурами, примером и антипаттернами. Загружай файл целиком только когда чтение диапазона недоступно; не переноси в контекст несвязанные сценарии большого файла.
  3. Выбирай прямой вызов только из стабильного ПрограммныйИнтерфейс. Служебный или устаревший метод предлагай лишь с явным предупреждением и когда публичной альтернативы нет. Метод *Переопределяемый показывай как реализацию хука без прямого вызова через имя общего модуля.
  4. Если в проекте доступна выгрузка с CommonModules/, перед финальным ответом проверь каждую рекомендуемую сигнатуру через bsp_api.py. Если выгрузки нет, используй reference и явно не заявляй, что выполнил сверку с исходниками.
  5. В ответе дай выбранный API, контекст выполнения (клиент/сервер), минимальный BSL-пример и важные ограничения. Не выдумывай отсутствующие методы для симметрии с другими модулями. Отсутствующие, служебные и запрещённые вызовы описывай текстом или inline-кодом, но не помещай в исполняемый fenced BSL-блок: такой пример легко ошибочно скопировать как рекомендацию.

Read the full file on GitHub · 136 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 16ad84bf1522
  2. 10d ago First seen · 136 lines · 157 tokens per session scan A fe513ae3f4a6

Subscribe to this mod's changes

bsp is a skill published in the GitHub repository brake71/1c-ssl-skills (61 stars, last pushed 5d ago), licensed MIT. It adds 157 tokens to every session and 2,764 once invoked, about $0.0008 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.

Related

Other skills, from other repositories