create-document

create-document is a skill for Claude Code from theYahia/WWmcp. It costs 19 tokens per session (867 once invoked), scanned A, original, MIT.

A tool for creating and posting documents in 1C, a business software system commonly used for accounting and operations. It checks the available document types and fields before writing data.

In plain words
What is it for?
It helps find business entities, create 1C documents, post them when appropriate, and retrieve the resulting document for verification.
Why use it?
It provides a defined sequence for adding records and distinguishes creating a document from posting it, which makes accidental or invalid database writes easier to avoid.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Good fit It helps find business entities, create 1C documents, post them when appropriate, and retrieve the resulting document for verification.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/theyahia/wwmcp/create-document
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 theYahia/WWmcp --skill create-document
Clone the repo
git clone --depth 1 https://github.com/theYahia/WWmcp

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 create-document

README.md
[![agentmods](https://agentmods.dev/badge/skills/theyahia/wwmcp/create-document.svg)](https://agentmods.dev/skills/theyahia/wwmcp/create-document)
Your own site
<a href="https://agentmods.dev/skills/theyahia/wwmcp/create-document"><img src="https://agentmods.dev/badge/skills/theyahia/wwmcp/create-document.svg" alt="Measured on agentmods" height="20"></a>
Per session 19 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 867 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.00019 $0.00867
Opus 5 $0.00010 $0.00434
Sonnet 5 $0.00004 $0.00173
Haiku 4.5 $0.00002 $0.00087

Measured yesterday against content hash 6eb7fd8cfe9c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

create-document 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.

servers/aprovodka/.claude/skills/create-document/SKILL.md · 61 lines

How it starts

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

/create-document — Запись в 1С

Запись в боевую базу необратима на уровне данных. Работай строго по шагам.

Алгоритм

  1. Уточни тип документа: get_config_preset (типовые имена) → list_entities (что реально есть в этой базе).
  2. describe_entity (entity) — точные имена и состав полей. Не угадывай имена полей: неверное поле 1С молча проигнорирует или вернёт ошибку.
  3. Подставь ссылки: find_by_description (entity, query) для контрагента и номенклатуры, get_by_key для проверки найденного GUID. В data кладутся значения полей с суффиксом _Key.
  4. create_document (document_type, data) — создание. Из ответа возьми Ref_Key.
  5. post_document (document_type, ref_key, operational) — проведение. Только после проведения пишутся движения по регистрам.
  6. Покажи пользователю созданный документ: get_by_key или get_recent_documents (document_type, top, posted_only).

Гейт записи ONEC_WRITE_MODE

Поведение зависит от режима, в котором запущен сервер. Определи его по ответу первой же записи:

Режим Что происходит
off (по умолчанию) Гейта нет, запись выполняется сразу. Максимум внимания к шагу 2.
deny Пишущие инструменты не зарегистрированы — их просто нет в списке. Режим только для чтения, обходить нечем.
preview Запись никогда не выполняется, вместо результата приходит конверт write_safety: preview с разбором «было → стало».
approval Первый вызов возвращает preview с op_hash. Затем approve_write (op_hash, reason) и повтор того же вызова с теми же аргументами.
  • Пришёл конверт write_safety: preview — ничего не записано. Покажи разбор пользователю и жди явного «да» перед approve_write.
  • В конверте write_safety: executed может быть rollback-токен → rollback_write (token) откатит операцию. Токен одноразовый и живёт в памяти процесса: после перезапуска сервера его нет.
  • Поля reversible и irreversible_reason в preview говорят, откатываемо ли действие. Создание нового документа автоматического отката не имеет — обратный ход только set_deletion_mark.

Read the full file on GitHub · 61 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. yesterday First seen · 61 lines · 19 tokens per session scan A 6eb7fd8cfe9c

Subscribe to this mod's changes

create-document is a skill published in the GitHub repository theYahia/WWmcp (28 stars, last pushed 2d ago), licensed MIT. It adds 19 tokens to every session and 867 once invoked, about $0.0001 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-09-06.