balances

balances is a skill for Claude Code from theYahia/WWmcp. It costs 27 tokens per session (676 once invoked), scanned A, original, MIT.

A 1C accounting and inventory reporting workflow for balances, movements, documents, and reports. 1C is a Russian business-management system that stores stock and accounting records in registers.

In plain words
What is it for?
Use it to retrieve stock balances, accounting totals, account movements, register entries, document lines, and reports for a period, then compare them.
Why use it?
It helps distinguish real balances from individual movements and detect differences caused by unposted documents.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Good fit Use it to retrieve stock balances, accounting totals, account movements, register entries, document lines, and reports for a period, then compare them.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/theyahia/wwmcp/balances
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 balances
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 balances

README.md
[![agentmods](https://agentmods.dev/badge/skills/theyahia/wwmcp/balances/github.svg)](https://agentmods.dev/skills/theyahia/wwmcp/balances)
Your own site
<a href="https://agentmods.dev/skills/theyahia/wwmcp/balances"><img src="https://agentmods.dev/badge/skills/theyahia/wwmcp/balances/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for balances

Your own site · 80×15
<a href="https://agentmods.dev/skills/theyahia/wwmcp/balances"><img src="https://agentmods.dev/badge/skills/theyahia/wwmcp/balances.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 676 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.00027 $0.00676
Opus 5 $0.00014 $0.00338
Sonnet 5 $0.00005 $0.00135
Haiku 4.5 $0.00003 $0.00068

Measured 4d ago against content hash 983dd85c1a2f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

balances 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 4d 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.

servers/aprovodka/.claude/skills/balances/SKILL.md · 54 lines

How it starts

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

/balances — Остатки, обороты, сальдо

Алгоритм — складские и товарные остатки

  1. Найди имя регистра: list_entities с фильтром по регистрам накопления, либо возьми типовое имя из get_config_preset.
  2. get_accumulation_balance (register_name, period, condition) — остатки регистра накопления на дату. Префикс AccumulationRegister_ опционален.
  3. Нужны движения, а не итог — get_register (register_type: AccumulationRegister или InformationRegister, register_name, filter, select, top, skip, orderby).

Алгоритм — бухгалтерские итоги

  1. get_accounting_balance (register_name, table, period либо start_period + end_period, condition, account_condition, extra) — сальдо и обороты по счетам.
  2. Проводки построчно — get_accounting_register (register_name, filter, select, top, orderby).
  3. Готовый отчёт конфигурации, если он выведен в OData, — get_report (report_url).

Алгоритм — сверка с документами

  1. get_documents (document_type, filter по полю Date, top, orderby) — документы периода.
  2. get_document_lines — табличная часть конкретного документа.
  3. Расхождение остатка и документов почти всегда = непроведённые документы: отфильтруй по признаку Posted eq false.

Важно

  • has_more: true в ответе = выборка обрезана. Сумму, максимум и «всего» по ней не считать: либо страница дальше со skip: next_skip, либо сузить фильтр, либо count_entities.
  • Даты в OData-фильтрах — литерал вида datetime'2026-08-01T00:00:00', без него 1С вернёт ошибку разбора.
  • Итог на дату и сумма движений до даты — разные вещи; для «сколько лежит сейчас» бери get_accumulation_balance, а не сумму по get_register.

Формат ответа

## Остатки на 2026-09-01

Регистр: ТоварыНаСкладах

| Номенклатура | Склад | Количество |
|--------------|-------|------------|
| Кружка синяя | Основной | 128 |

Записей вернулось: 100, has_more: true → выборка неполная, итог не считаю.

Примеры

/balances ТоварыНаСкладах 2026-09-01
/balances сальдо по счёту 62 за август
/balances движения регистра ВзаиморасчётыСКонтрагентами

Read the full file on GitHub · 54 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. 4d ago First seen · 54 lines · 27 tokens per session scan A 983dd85c1a2f

Subscribe to this mod's changes

balances is a skill published in the GitHub repository theYahia/WWmcp (29 stars, last pushed 3d ago), licensed MIT. It adds 27 tokens to every session and 676 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.

Related

Other skills, from other repositories

okx-cex-portfolio

This skill should be used when the user asks about 'account balance', 'how much USDT do I have', 'my funding account', 'show my positions', 'open positions', 'position P&L', 'unrealized PnL', 'closed positions', 'position history', 'realized PnL', 'account bills', 'transaction history', 'trading fees', 'fee tier'…

okx/agent-trade-kit · 236 tokens

pdf-invoice-extractor

OCR a PDF invoice with mistralocr and extract structured line-item data (vendor, date, amounts, VAT) for accounting reconciliation. Use when the user provides an invoice PDF to process.

Swih/mistral-mcp · 39 tokens

database-query-subagent

Sous-agent spécialisé dans les requêtes base de données — SQL generation, exécution et analyse de résultats. Se déclenche avec "sous-agent DB", "database agent", "SQL agent", "agent base de données", "query agent", "agent qui requête", "text-to-SQL agent", "NL2SQL". Also triggers on "database query agent", "text to…

khalilbenaz/claude-skills-collection · 87 tokens

data-analyst-agent

Création d'agents d'analyse de données qui explorent, visualisent et expliquent les données. Se déclenche avec "data analyst agent", "agent analyse données", "agent data", "agent qui analyse", "automated analysis", "data exploration agent", "agent SQL", "agent pandas". Also triggers on "agent that analyzes data"…

khalilbenaz/claude-skills-collection · 81 tokens

french-invoice-reminder

Rédige une relance de facture B2B en français avec un ton contrôlé (poli, ferme, ou final). À utiliser quand l'utilisateur demande une relance facture, un rappel de paiement, un mail de recouvrement, ou une dunning letter en français.

Swih/mistral-mcp · 58 tokens

drizzle-orm-expert

Expert in Drizzle ORM for TypeScript — schema design, relational queries, migrations, serverless DB integration. Use when building type-safe database layers with Drizzle, migrating from Prisma, or optimizing edge runtime DB access.

RaNDoM6913/claude-code-superkit · 50 tokens