debiteurenbeheer

debiteurenbeheer is a skill for Claude Code from iwebdevnl/exact-online-ai-connect. It costs 124 tokens per session (3,254 once invoked), scanned A, original, MIT.

A bookkeeping assistant for following up unpaid customer invoices in Exact Online, an accounting system. It reviews overdue amounts and prepares reminder messages.

In plain words
What is it for?
Use it to review outstanding and overdue invoices, analyse payment behaviour, identify collection risks, and draft payment reminders.
Why use it?
It helps you see which customers are late, how long they have been late, and which debts may need escalation instead of checking invoices one by one.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the exact-online-ai-connect plugin — 10 skills, 4 commands, 1 MCP server shipped together

Good fit Use it to review outstanding and overdue invoices, analyse payment behaviour, identify collection risks, and draft payment reminders.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/iwebdevnl/exact-online-ai-connect/debiteurenbeheer
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 iwebdevnl/exact-online-ai-connect --skill debiteurenbeheer
Clone the repo
git clone --depth 1 https://github.com/iwebdevnl/exact-online-ai-connect

Made for: Claude Code.

Or install exact-online-ai-connect, the plugin that ships this one along with the rest of its 10 skills, 4 commands, 1 MCP server.

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 debiteurenbeheer

README.md
[![agentmods](https://agentmods.dev/badge/skills/iwebdevnl/exact-online-ai-connect/debiteurenbeheer/github.svg)](https://agentmods.dev/skills/iwebdevnl/exact-online-ai-connect/debiteurenbeheer)
Your own site
<a href="https://agentmods.dev/skills/iwebdevnl/exact-online-ai-connect/debiteurenbeheer"><img src="https://agentmods.dev/badge/skills/iwebdevnl/exact-online-ai-connect/debiteurenbeheer/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 debiteurenbeheer

Your own site · 80×15
<a href="https://agentmods.dev/skills/iwebdevnl/exact-online-ai-connect/debiteurenbeheer"><img src="https://agentmods.dev/badge/skills/iwebdevnl/exact-online-ai-connect/debiteurenbeheer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 124 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,254 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.
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.00124 $0.03254
Opus 5 $0.00062 $0.01627
Sonnet 5 $0.00025 $0.00651
Haiku 4.5 $0.00012 $0.00325

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

Security

Grade A, and why

debiteurenbeheer 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 12d 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.

plugins/exact-online/skills/debiteurenbeheer/SKILL.md · 281 lines

How it starts

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

Debiteurenbeheer

Proactief debiteurenbeheer: analyseer betaalgedrag, identificeer risico's, en bereid herinneringsacties voor. Het doel is niet alleen zien wie te laat betaalt, maar ook waarom en wat je eraan kunt doen.

Waarom proactief debiteurenbeheer

Veel ondernemers kijken pas naar debiteuren als het geld opraakt. Door structureel te monitoren verbeter je de cashflow, verlaag je het afschrijvingsrisico, en versterk je de klantrelatie (een vriendelijke herinnering is beter dan een boze brief na 90 dagen).

Analyse Workflow

Stap 1: Totaaloverzicht ophalen

Start met een quick-scan via OutstandingInvoicesOverview voor de totalen:

Tool: read_operation (deze tool doet alleen GET en heeft geen operation-parameter)

{
  "service": "Read",
  "entity": "OutstandingInvoicesOverview"
}

Dit geeft in één call:

  • OutstandingReceivableInvoiceCount/Amount: Totaal aantal en bedrag openstaande facturen
  • OverdueReceivableInvoiceCount/Amount: Waarvan verlopen (voorbij vervaldatum)
  • OutstandingPayableInvoiceCount/Amount: Openstaande crediteuren (ter referentie)
  • OverduePayableInvoiceCount/Amount: Waarvan verlopen crediteuren

Stap 2: Ouderdomsanalyse per klant

Haal de ouderdomsanalyse op per klant:

Tool: read_operation

{
  "service": "Read",
  "entity": "AgingReceivablesList"
}

BELANGRIJK: Gebruik AgingReceivablesList (NIET AgingReceivablesListByAgeGroup, dat endpoint retourneert altijd "Bad Request - Error in query syntax").

Dit geeft per klant een uitsplitsing naar:

  • AgeGroup1 (≤ 30 dagen): AgeGroup1Amount
  • AgeGroup2 (31-60 dagen): AgeGroup2Amount
  • AgeGroup3 (61-90 dagen): AgeGroup3Amount
  • AgeGroup4 (> 90 dagen): AgeGroup4Amount
  • TotalAmount: Totaal openstaand per klant
  • AccountCode/AccountName: Klantidentificatie
  • CurrencyCode: Valuta (typisch EUR)

Let op, dit endpoint heeft 0 filterbare velden: sorteren en filteren doe je zelf op de output. Belangrijker nog: read_operation levert maximaal 60 records per call. Heeft de administratie meer dan 60 klanten met openstaande posten, dan is dit overzicht stil onvolledig, en juist deze skill belooft compleetheid. Tel dus de rijen. Krijg je er precies 60, ga er dan van uit dat er meer zijn en gebruik deze twee routes naast elkaar:

Read the full file on GitHub · 281 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. 12d ago First seen · 281 lines · 124 tokens per session scan A 97e3976fe63f

Subscribe to this mod's changes

debiteurenbeheer is a skill published in the GitHub repository iwebdevnl/exact-online-ai-connect (0 stars, last pushed 1mo ago), licensed MIT. It adds 124 tokens to every session and 3,254 once invoked, about $0.0006 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-08-31.

Related

Other skills, from other repositories

erpclaw

AI-native ERP system. Full accounting, invoicing, inventory, purchasing, tax, billing, HR, payroll, advanced accounting (ASC 606/842, intercompany, consolidation), and financial reporting (including P&L / trial balance / spend grouped by department, project, cost center, location, or fund). 496 actions across 14…

avansaber/erpclaw · 136 tokens

tax-calculator

Calculate tax implications of trades and generate tax reports.

Signal-Execution-Labs/forex-trading-ai-agent · 13 tokens

jangbu-import

A data-import workflow for turning bank files, card records, spreadsheets, receipts, tax invoices, and statement PDFs into a standard set of 13 transaction fields. OCR, or optical character recognition, is used to read information from document images and PDFs.

kimlawtech/korean-jangbu-for · 97 tokens

jangbu-tax

A financial-reporting tool that summarizes categorized transactions into a profit-and-loss statement and a simplified balance sheet. A profit-and-loss statement covers income and expenses over a period; a balance sheet shows assets, liabilities, and equity at a date.

kimlawtech/korean-jangbu-for · 82 tokens

accountant-expert

Expert-level accounting, tax, financial reporting, and accounting systems. Use when the user mentions accounting, tax, financial reporting, GAAP, or IFRS, or when the task involves Accounting Principles, Financial Statements, Tax & Compliance, or Accounting Systems.

personamanagmentlayer/pcl · 56 tokens

sap-co

This skill handles all SAP CO (Controlling) topics: cost center accounting, profit center accounting, internal orders, product costing, profitability analysis (CO-PA), assessment and distribution cycles, actual vs plan postings, settlement, and CO period-end closing. Use when user mentions CO, cost center, profit…

BoxLogoDev/sapstack · 127 tokens