1c-cfe-patch-method

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

A generator and checker for method interceptors in a 1C configuration extension. An interceptor lets extension code run before, after, instead of, or while controlling the original method.

In plain words
What is it for?
Use it to create, check, or update interceptors for borrowed objects and methods in a 1C extension.
Why use it?
It helps extend existing behavior without copying the whole original method and can compare controlled interceptors with updated originals.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

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/claude-code-skills-1c/1c-cfe-patch-method
Any agent
npx skills add Desko77/claude-code-skills-1c --skill 1c-cfe-patch-method
Clone the repo
git clone --depth 1 https://github.com/Desko77/claude-code-skills-1c

Made for: Claude Code.

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/claude-code-skills-1c/1c-cfe-patch-method.svg)](https://agentmods.dev/skills/desko77/claude-code-skills-1c/1c-cfe-patch-method)
Your own site
<a href="https://agentmods.dev/skills/desko77/claude-code-skills-1c/1c-cfe-patch-method"><img src="https://agentmods.dev/badge/skills/desko77/claude-code-skills-1c/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,634 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.01634
Opus 5 $0.00030 $0.00817
Sonnet 5 $0.00012 $0.00327
Haiku 4.5 $0.00006 $0.00163

Measured 6d ago against content hash 5e3ecdd85ad9, 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 · 120 lines

How it starts

The opening of the file, as written. The whole thing — 120 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 · 120 lines

Files

What ships with it

3 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 · 120 lines · 61 tokens per session scan A 5e3ecdd85ad9

Subscribe to this mod's changes

1c-cfe-patch-method is a skill published in the GitHub repository Desko77/claude-code-skills-1c (55 stars, last pushed 3d ago), licensed MIT. It adds 61 tokens to every session and 1,634 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

humanize-ai-text

Применять при переписывании текстов, сгенерированных LLM-агентами (отчеты, README, доки, письма, посты), в живой человеческий стиль. Триггеры - пользователь пишет 'убери AI-стиль', 'перепиши по-человечески', 'сделай естественно', 'убери воду', 'не как ChatGPT', 'убери LLM-штампы'; либо на входе текст с явными…

Desko77/cursor-1c-skills · 329 tokens

transcribe

Транскрибирование видео и аудио файлов. Используй когда пользователь просит транскрибировать, расшифровать запись, сделать конспект встречи, извлечь речь из видео или аудио, преобразовать речь в текст. Для аудио (m4a/mp3/wav/ogg/flac/aac/wma) по умолчанию локальный faster-whisper + диаризация с автодетектом числа…

Desko77/cursor-1c-skills · 196 tokens

composing-1c-queries

Rules and patterns for writing correct 1C:Enterprise query language (язык запросов 1С). Queries are executed via the executequery tool/endpoint.

Desko77/cursor-1c-skills · 9 tokens

1c-naparnik

1C:Naparnik (1С:Напарник) MCP server tools - BSL code analysis, review, rewriting, ITS knowledge base, platform documentation search, configuration documentation. Use when checking BSL code quality, searching ITS standards, reading platform docs, comparing versions, or finding configuration-specific documentation.

Desko77/cursor-1c-skills · 68 tokens

1c-web-test

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

Desko77/cursor-1c-skills · 46 tokens

lmstudio-api

Справочник по HTTP-API LM Studio (сервер локальных моделей, обычно порт 1234). Используй когда надо программно управлять моделями на LM Studio - узнать что загружено, загрузить или выгрузить модель, задать длину контекста и параллельность, отключить размышления модели, - а также при диагностике: модель…

Desko77/cursor-1c-skills · 199 tokens