routine_assignment_ext_processor

A coding rule and example for starting background jobs from an external 1C processing file through the 1C Standard Subsystems long-running-operations feature. An external processing file is a separately opened 1C tool rather than one stored in the application catalogue.

In plain words
What is it for?
Use it when writing BSL code for background jobs launched from external processing files. It covers opening the file, placing it in temporary storage, making a server copy, and passing that copy to the long-running operation.
Why use it?
The server cannot normally find a processing file opened directly from a file, so the background job cannot use it. The pattern first copies the file to the server through temporary storage.

Cursor rule

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 rules/desko77/cursor-1c-skills/routine_assignment_ext_processor
Clone the repo
git clone --depth 1 https://github.com/Desko77/cursor-1c-skills
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 1,202 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 $0.00000 $0.01202
Opus 5 $0.00000 $0.00601
Sonnet 5 $0.00000 $0.00240
Haiku 4.5 $0.00000 $0.00120

Measured 2d ago against content hash 96feddbe451f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

routine_assignment_ext_processor 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 2d 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.

rules/routine_assignment_ext_processor.mdc · 96 lines

How it starts

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

Фоновые задания из внешней обработки (БСП)

Применяется: BSL, БСП 3.0+, платформа 8.3.13+. Запуск фоновых заданий из внешних обработок через подсистему "Длительные операции" БСП.


Проблема

Процедуры ДлительныеОперации работают на сервере. Если обработка открыта через "файл-открыть" (а не из справочника ДополнительныеОтчетыИОбработки), БСП не может найти ее на сервере. Решение: создать копию обработки на сервере через временное хранилище.

Шаблон: копирование обработки на сервер

&НаКлиенте
Процедура ПриОткрытии(Отказ)
    Если ЭтоВнешняяОбработка() Тогда
        ОписаниеОповещения = Новый ОписаниеОповещения(
            "ОбработатьРезультатПомещенияФайлаОбработки", ЭтотОбъект);
        НачатьПомещениеФайлов(ОписаниеОповещения,
            ИмяФайлаОбработки(), Ложь, УникальныйИдентификатор);
    КонецЕсли;
КонецПроцедуры

&НаКлиенте
Процедура ОбработатьРезультатПомещенияФайлаОбработки(ПомещенныеФайлы, ОбработчикЗавершения) Экспорт
    Если ПомещенныеФайлы <> Неопределено Тогда
        ХранениеФайлаОбработки = КопияОбработкиНаСервере(ПомещенныеФайлы[0].Хранение);
    КонецЕсли;
КонецПроцедуры

&НаСервере
Функция КопияОбработкиНаСервере(Хранение)
    Результат = ПолучитьИмяВременногоФайла();
    ДвоичныеДанные = ПолучитьИзВременногоХранилища(Хранение);
    ДвоичныеДанные.Записать(Результат);
    Возврат Результат;
КонецФункции

Шаблон: запуск фонового задания

&НаСервере
Функция НачатьВыполнениеФоновогоЗаданияНаСервере()
    ЭтоВнешняяОбработка = ЭтоВнешняяОбработка();
    ИмяОбработки = ?(ЭтоВнешняяОбработка,
        ХранениеФайлаОбработки,
        РеквизитФормыВЗначение("Объект").Метаданные().ПолноеИмя());

    ПараметрыЗадания = Новый Структура;
    ПараметрыЗадания.Вставить("ИмяОбработки", ИмяОбработки);
    ПараметрыЗадания.Вставить("ИмяМетода", "<Имя процедуры в модуле объекта>");
    ПараметрыЗадания.Вставить("ПараметрыВыполнения", ПараметрыВыполненияОбработки);
    ПараметрыЗадания.Вставить("ЭтоВнешняяОбработка", ЭтоВнешняяОбработка);

    ПараметрыВыполнения = ДлительныеОперации.ПараметрыВыполненияВФоне(УникальныйИдентификатор);
    ПараметрыВыполнения.НаименованиеФоновогоЗадания = "<Описание задания>";
    ПараметрыВыполнения.ЗапуститьВФоне = Истина;

    Возврат ДлительныеОперации.ВыполнитьВФоне(
        "ДлительныеОперации.ВыполнитьПроцедуруМодуляОбъектаОбработки",
        ПараметрыЗадания, ПараметрыВыполнения);
КонецФункции

Read the full file on GitHub · 96 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. 2d ago First seen · 96 lines · 0 tokens per session scan A 96feddbe451f

Subscribe to this mod's changes

routine_assignment_ext_processor is a cursor rule published in the GitHub repository Desko77/cursor-1c-skills (53 stars, last pushed 4d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,202 tokens. 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.