change-tracking

change-tracking is a skill for Claude Code from theYahia/WWmcp. It costs 23 tokens per session (600 once invoked), scanned A, original, MIT.

A change-tracking workflow for a 1C database, a business accounting and records system. It retrieves records changed after a saved time marker, including document details and document line items.

In plain words
What is it for?
Use it to incrementally sync changed records, inspect recent documents, retrieve document lines, and query several record types in one pass.
Why use it?
It avoids downloading an entire database on every check. It also makes it possible to continue through large result sets, while noting that deletions are not detected by date polling alone.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Good fit Use it to incrementally sync changed records, inspect recent documents, retrieve document lines, and query several record types in one pass.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/theyahia/wwmcp/change-tracking/github.svg)](https://agentmods.dev/skills/theyahia/wwmcp/change-tracking)
Your own site
<a href="https://agentmods.dev/skills/theyahia/wwmcp/change-tracking"><img src="https://agentmods.dev/badge/skills/theyahia/wwmcp/change-tracking/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 change-tracking

Your own site · 80×15
<a href="https://agentmods.dev/skills/theyahia/wwmcp/change-tracking"><img src="https://agentmods.dev/badge/skills/theyahia/wwmcp/change-tracking.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 600 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.00023 $0.00600
Opus 5 $0.00012 $0.00300
Sonnet 5 $0.00005 $0.00120
Haiku 4.5 $0.00002 $0.00060

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

Security

Grade A, and why

change-tracking 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/change-tracking/SKILL.md · 49 lines

What it actually says

/change-tracking — Что изменилось в базе

Синхронизация без полной перевыгрузки. Только чтение.

Алгоритм

  1. list_subscriptions — какие сущности пригодны для отслеживания (отвечает статикой, в базу не ходит).
  2. Определи поле даты: describe_entity (entity) — у документов это обычно Date, у справочника поля изменения может не быть вовсе.
  3. poll_changes_since (entity, since, date_field, top, select) — записи, изменившиеся после метки времени.
  4. Из ответа возьми next_cursor и сохрани его — это метка для следующего запроса. Поле has_more: true значит, что за один вызов забрали не всё: повтори с новым курсором, пока has_more не станет false.
  5. Свежие документы конкретного типа быстрее взять через get_recent_documents (document_type, top, posted_only).
  6. Нашли документ, нужны детали: get_document_by_number (document_type, number, date, select) → get_document_lines для табличной части.
  7. Несколько сущностей за один проход — batch_query (queries, concurrency).

Важно

  • Это опрос по дате, а не подписка на события: удаления и пометки на удаление таким способом не ловятся — периодически сверяй count_entities.
  • Курсор двигай только после того, как обработал всю страницу, иначе изменения потеряются безвозвратно.
  • since — литерал даты OData; часовой пояс базы и клиента могут расходиться, поэтому бери метку с запасом в несколько минут назад.

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

## Изменения с 2026-09-01T00:00:00

Сущность: Document_РеализацияТоваровУслуг
Новых и изменённых: 37
has_more: false
Следующий курсор: 2026-09-02T11:42:15

| Номер | Дата | Контрагент | Сумма | Проведён |
|-------|------|------------|-------|----------|
| ТД-00123 | 2026-09-02 | ООО Ромашка | 148 200 ₽ | да |

Примеры

/change-tracking Document_РеализацияТоваровУслуг 2026-09-01
/change-tracking что нового за сегодня
/change-tracking последние 10 проведённых реализаций
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 · 49 lines · 23 tokens per session scan A d0ffde4563cb

Subscribe to this mod's changes

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

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

supabase-schema-generator

An SRE-grade automation skill to parse SQL schemas and auto-generate safe TypeScript interfaces for the frontend and Row Level Security (RLS) policies for Supabase.

aragaobruno/toolbelt · 0 tokens

supabase

Operate Supabase via its two REST surfaces — the Management API (org/project admin) and per-project APIs (PostgREST database queries, Auth, Storage, Realtime, Edge Functions). Use when the user wants to list/create projects, fetch project API keys, or read/write their database without the MCP server installed.

mnlt/teleport · 67 tokens

database-design

Database design and optimization skill covering ER diagrams, normalization, indexing, sharding, query optimization, and database best practices. Use this skill when designing database schemas, optimizing queries, planning data architecture, or need guidance on database scaling and performance tuning.

ProjAnvil/MindForge · 52 tokens

javascript-typescript

Professional JavaScript and TypeScript development skill covering modern ES6+, TypeScript, Node.js, Express, React, testing frameworks, and best practices. Use this skill when developing JavaScript/TypeScript applications, building React/Node.js projects, implementing RESTful APIs, or need guidance on modern JS/TS…

ProjAnvil/MindForge · 69 tokens

review-implement-phase

Implements triaged review actions, commits focused fixes, and posts Done plus resolves threads. Use when the user wants only the implementation phase of the review-framework workflow.

prisma/orm · 38 tokens