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.
npx agentmods add rules/desko77/cursor-1c-skills/1c-coding-standardsgit clone --depth 1 https://github.com/Desko77/cursor-1c-skillsWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.07881 |
| Opus 5 | $0.00000 | $0.03941 |
| Sonnet 5 | $0.00000 | $0.01576 |
| Haiku 4.5 | $0.00000 | $0.00788 |
Grade A, and why
1c-coding-standards 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 yesterday.
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.
How it starts
The opening of the file, as written. The whole thing — 602 lines — stays where its author put it; the contents beside it link to each section on GitHub.
1C Coding Standards
Стандарты написания кода на платформе 1С:Предприятие (BSL).
Применяется: при работе с кодом 1С (*.bsl, *.os).
Правила производительности (запросы в цикле, реквизиты через точку, кеширование), клиент-серверного взаимодействия (директивы компиляции, минимизация переходов, асинх-методы) и анти-паттерны описаны в anti_patterns.md и form_module_rules.md - здесь не дублируются.
Комментарии
Шапка метода - ОБЯЗАТЕЛЬНА и пишется ПО СТАНДАРТУ. Каждая процедура и функция (включая неэкспортные и обработчики форм) начинается с комментария-описания. Эталонный формат и порядок блоков - "Документация методов" ниже. Шапка - часть кода: правила про минимум комментариев ее НЕ отменяют, при "чистке комментариев" она НЕ удаляется.
Шапка описывает КОНТРАКТ метода, а не факт его существования. Запрещено: пересказ имени метода (// Решение о продлении отпусков перед Функция РешениеОПродленииОтпусков), пустые формулировки (// Выполняет обработку, // Служебная функция), выдуманные параметры и типы. Не знаешь тип параметра - посмотри фактический вызов и определение, а не угадывай.
В теле метода комментарии НЕ добавляй по умолчанию. Код должен быть понятен без них. Комментарий в теле допускается только когда добавляет ценность, которую невозможно выразить самим кодом:
- Мотивация неочевидного решения (почему выбран именно такой подход)
- Нетривиальный алгоритм (суть, а не пересказ кода)
- Ограничения и граничные случаи
- Технический долг (TODO, FIXME)
Запрещено:
- Комментарии вида
// Получаем данные,// Проверяем условие,// Записываем результат- они дублируют код - Комментарии к каждой строке или блоку - код не нуждается в построчном пересказе
- Комментарии-разделители (
// ---,// ***) вместо#Область - Ссылки на артефакты разработки:
// Задача B: ...,// Шаг 3,// Этап загрузки,// по п.3.2 плана- маркеры нашего внутреннего плана (и пунктов ТЗ) в код не попадают, они нужны только на время разработки; раздел кода метит#Область, факт правки - аудиторский маркер проекта
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.
- yesterday First seen · 602 lines · 0 tokens per session scan A 045f745d4af3
1c-coding-standards 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 7,881 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.
Other cursor rules, from other repositories
122-java-integration-testing
Java Integration testing guidelines.
133-java-data-oriented-programming
Java rules to apply data oriented programming style.
112-java-type-design
Type Design Thinking in Java.
114-java-secure-coding
Java Secure coding guidelines.
phased-implementation
Cursor rule "phased-implementation" from alkoleft/platform-context-exporter, covering phased implementation for level 4 tasks, 🔍 phased implementation overview, 📋 implementation phasing principles, 📋 standard implementation phases and phase 1: foundation phase.
workflow-level4
Cursor rule "workflow-level4" from alkoleft/platform-context-exporter, covering comprehensive workflow for level 4 tasks, 🔍 level 4 workflow overview, 🔄 level transition handling, 📋 workflow phases and phase 1: initialization.