1c-cfe-patch-method

1c-cfe-patch-method is a skill for Claude Code, Codex from Desko77/cursor-1c-skills. It costs 61 tokens per session (1,588 once invoked), scanned A, original, MIT.

A tool for creating method interceptors in a 1C configuration extension. 1C is business software, and an interceptor can run code before, after, or instead of an inherited method.

In plain words
What is it for?
Use it to generate or maintain .bsl interceptor files for extension methods, including before, after, replacement, and change-control variants.
Why use it?
It helps customize borrowed objects without directly changing the original configuration, and can compare or update interceptors after the main configuration changes.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

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.

agentmods
npx agentmods add skills/desko77/cursor-1c-skills/1c-cfe-patch-method
Any agent
npx skills add Desko77/cursor-1c-skills --skill 1c-cfe-patch-method
Clone the repo
git clone --depth 1 https://github.com/Desko77/cursor-1c-skills

Made for: Claude Code, 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 1c-cfe-patch-method

README.md
[![agentmods](https://agentmods.dev/badge/skills/desko77/cursor-1c-skills/1c-cfe-patch-method.svg)](https://agentmods.dev/skills/desko77/cursor-1c-skills/1c-cfe-patch-method)
Your own site
<a href="https://agentmods.dev/skills/desko77/cursor-1c-skills/1c-cfe-patch-method"><img src="https://agentmods.dev/badge/skills/desko77/cursor-1c-skills/1c-cfe-patch-method.svg" alt="Measured on agentmods" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,588 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00061 $0.01588
Opus 5 $0.00030 $0.00794
Sonnet 5 $0.00012 $0.00318
Haiku 4.5 $0.00006 $0.00159

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

Security

Grade A, and why

1c-cfe-patch-method 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 6d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/cfe-patch-method.ps1, scripts/cfe-patch-method.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/1c-cfe-patch-method/SKILL.md · 115 lines

How it starts

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

/cfe-patch-method - Генерация перехватчика метода

Генерирует .bsl файл с декоратором перехвата для заимствованного объекта расширения. Создает файл, дописывает в существующий регион или, если перехватчик &ИзменениеИКонтроль уже стоит, сверяет его с оригиналом и переносит правки в новую редакцию метода.

Предусловие

Объект должен быть заимствован в расширение (/cfe-borrow). Скрипт читает NamePrefix из Configuration.xml расширения для формирования имени процедуры.

Параметры

Параметр Описание По умолчанию
ExtensionPath Путь к расширению (обязат.) -
ModulePath Путь к модулю (обязат.) -
MethodName Имя перехватываемого метода (обязат.) -
InterceptorType Before / After / Instead / ModificationAndControl обязателен вне -Check и -Actualize
ConfigPath Исходники основной конфигурации: оттуда берутся сигнатура, тело и директива компиляции -
Context Директива контекста модуля формы из оригинала, иначе НаКлиенте
IsFunction Метод - функция (когда ConfigPath не задан) false
Check Сверить перехватчики &ИзменениеИКонтроль со всеми оригиналами, ничего не записывая false
Actualize То же плюс перенос правок в новую редакцию оригиналов false

ModulePath принимается и как имя объекта (CommonModule.X), и как путь к файлу модуля (CommonModules/X/Ext/Module.bsl).

Формат ModulePath

ModulePath Файл
Catalog.X.ObjectModule Catalogs/X/Ext/ObjectModule.bsl
Catalog.X.ManagerModule Catalogs/X/Ext/ManagerModule.bsl
Catalog.X.Form.Y Catalogs/X/Forms/Y/Ext/Form/Module.bsl
CommonModule.X CommonModules/X/Ext/Module.bsl
Document.X.ObjectModule Documents/X/Ext/ObjectModule.bsl
Document.X.Form.Y Documents/X/Forms/Y/Ext/Form/Module.bsl

Аналогично для Report, DataProcessor, InformationRegister и других типов.

Типы перехвата

InterceptorType Декоратор Назначение
Before &Перед Код до вызова оригинального метода
After &После Код после вызова оригинального метода
Instead &Вместо Замена метода с явным ПродолжитьВызов
ModificationAndControl &ИзменениеИКонтроль Копия тела метода с маркерами #Вставка/#Удаление

Read the full file on GitHub · 115 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 6d ago First seen · 115 lines · 61 tokens per session scan A b438d4e7cedc

Subscribe to this mod's changes

1c-cfe-patch-method is a skill published in the GitHub repository Desko77/cursor-1c-skills (55 stars, last pushed 4d ago), licensed MIT. It adds 61 tokens to every session and 1,588 once invoked, about $0.0003 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

1c-form-compile

Компиляция управляемой формы 1С из JSON-определения или из метаданных объекта. Используй когда нужно создать форму с нуля по описанию элементов или сгенерировать типовую форму.

Desko77/claude-code-skills-1c · 50 tokens

1c-bsp-registration

Добавить функцию регистрации БСП (СведенияОВнешнейОбработке) в модуль объекта обработки.

Desko77/claude-code-skills-1c · 27 tokens

1c-form-patterns

Справочник паттернов компоновки управляемых форм 1С. Используй как справочник при проектировании форм - архетипы, конвенции, продвинутые приемы.

Desko77/claude-code-skills-1c · 48 tokens

docx-from-sample

Создать новый DOCX в оформлении готового образца: взять чужой документ как шаблон стилей и наполнить своими данными, сохранив титул, заголовки с нумерацией, стили таблиц, ширины столбцов, заливку шапок, колонтитулы, книжные и альбомные секции. Используй когда просят сделать документ по образцу, в том же формате, как в…

Desko77/claude-code-skills-1c · 115 tokens

1c-config-index

Индекс XML-выгрузки конфигурации 1С в один JSON - какие объекты есть, их реквизиты, табличные части, измерения и ресурсы регистров, экспортные методы общих модулей. Нужен другим навыкам для проверок, где объект сверяется с остальной конфигурацией.

Desko77/claude-code-skills-1c · 76 tokens

1c-db-load-xml

Загрузка конфигурации 1С из XML-файлов. Используй когда пользователь просит загрузить конфигурацию из файлов, XML, исходников, LoadConfigFromFiles.

Desko77/claude-code-skills-1c · 44 tokens