← Back to Skills Marketplace
thomas-trendex

Rapprochement Bancaire

by thomas-trendex · GitHub ↗ · v0.1.0 · MIT-0
cross-platform ⚠ suspicious
79
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install rapprochement-bancaire
Description
Bank reconciliation for French accounting firms. Reconciles bank statement transactions with previously classified invoices for a given client. Produces a CS...
README (SKILL.md)

Skill rapprochement-bancaire

Lit les bank-statements et les factures déjà classées par organisation-documents. Produit un CSV par (client, mois) + met à jour followup.md. C'est tout.


Quand utiliser

  • Demande explicite de rapprochement d'un client / d'un mois.
  • Après un reclassement de pièce → recalcul du mois concerné.
  • Après l'ajout d'un mois d'historique.

Ne pas utiliser pour :

  • Classer / déplacer des documents → organisation-documents.
  • Programmer ou envoyer des relances → relances.
  • Émettre des factures → facturation.

Workflow

  1. Charger les transactions depuis clients/\x3Cslug>/\x3CAAAA>/\x3CMM>/bank-statements/ (tous les fichiers du dossier).
  2. Charger les factures du mois (in + out) depuis index.json du client. Inclure aussi les factures des mois adjacents (M-1 et M+1) pour les paiements qui débordent.
  3. Matcher transactions ↔ factures (cf. references/matching-rules.md).
  4. Détecter les anomalies (cf. references/csv-schema.md).
  5. Écrire clients/\x3Cslug>/\x3CAAAA>/\x3CMM>/rapprochement.csv (cf. references/csv-schema.md).
  6. Mettre à jour la colonne « Statut paiement » de followup.md pour les matches fort et moyen.
  7. Rapport au comptable.

Matching (résumé)

Score agrégé par transaction = montant × 0,5 + label × 0,3 + date × 0,2.

Score Confiance Action
≥ 0,85 fort Match dans CSV + update followup payée \x3Cdate>
0,65 – 0,85 moyen Match dans CSV + update followup payée ? \x3Cdate>
0,45 – 0,65 faible Suggestion dans CSV, pas d'update followup
\x3C 0,45 aucun Transaction reste unmatched

Sens cohérent obligatoire : crédit ↔ facture vente, débit ↔ facture achat. Jamais de cross-match.

Détails (normalisation, fuzzy label, fenêtre date ±30 j, cas limites frais bancaires / salaires / multi-paiements / multi-comptes) → references/matching-rules.md.


Output — CSV

clients/\x3Cslug>/\x3CAAAA>/\x3CMM>/rapprochement.csv

UTF-8 avec BOM, séparateur ;, décimal ,, CRLF. Réécrit en entier à chaque invocation (idempotent). Seule la colonne commentaire est préservée entre runs.

Schéma complet (16 colonnes, enum anomalie : paiement_orphelin, encaissement_sans_facture, facture_non_payee, montant_incoherent, doublon_paiement, paiement_partiel, match_ambigu, etc.) → references/csv-schema.md.


Mise à jour de followup.md

Pour chaque match fort ou moyen sur une facture out :

  • Trouver la ligne dans la section ## Émises ce mois de followup.md du mois d'origine de la facture (pas celui de la transaction).
  • Mettre à jour la colonne « Statut paiement » :
    • fortpayée \x3CAAAA-MM-JJ>
    • moyenpayée ? \x3CAAAA-MM-JJ>
    • paiement_partielpartielle (X%)
  • Vider « Prochaine relance » si statut devient payée.

Ne pas créer followup.md s'il n'existe pas (responsabilité de facturation). Juste écrire le CSV dans ce cas.

Ne pas toucher aux autres colonnes ni à la section ## À émettre.


Communication avec le comptable

Mêmes règles que organisation-documents : vocab métier, jamais de jargon technique (OFX, pipeline, scores numériques bruts, paths absolus).

Silence par défaut si zéro anomalie sur l'invocation. Sinon, synthèse compacte :

🔍 Rapprochement — 3 anomalies à revoir

  • ACME SA / Avril : 1 paiement orphelin (1 248 € le 12/04, sans facture)
  • Trendex Tech / Mars : facture impayée F-2026-03-008, 850 €, échéance dépassée de 8 j
  • Foo SAS / Avril : montant incohérent F-2026-04-021 (facture 720 €, paiement 700 € — escompte ?)

Détails dans clients/\x3Cslug>/\x3CAAAA>/\x3CMM>/rapprochement.csv.

Vocabulaire métier : rapprochement, paiement, encaissement, prélèvement, virement, facture, échéance, escompte, acompte, partiel, doublon, orphelin, anomalie, à revoir.


Garde-fous

  • Lecture seule sur les sources : bank-statements/, invoices/*, index.json, clients.json.
  • Écritures localisées : rapprochement.csv + colonne paiement de followup.md + audit.log du client. Rien d'autre.
  • Aucun déplacement de fichier — si un classement est mauvais, ce skill le remonte en anomalie, c'est organisation-documents qui corrige.
  • Pas de PII dans les logs : numéros de facture, montants, dates OK ; libellés complets de transaction et IBAN interdits.
  • Idempotent : données inchangées → CSV identique octet pour octet.

Références complémentaires

Usage Guidance
Before installing, be aware that this skill reads sensitive local bank and invoice data and can update payment status in followup.md. It appears well-scoped and instruction-only, but you should run it for explicit client/month reconciliation tasks and review generated CSV and followup changes. ClawScan detected prompt-injection indicators (unicode-control-chars), so this skill requires review even though the model response was benign.
Capability Tags
cryptocan-make-purchases
Capability Assessment
Purpose & Capability
The skill’s purpose is clear and consistent: reconcile bank statement transactions with classified invoices for a specified client/month. It necessarily handles sensitive financial records and updates payment status, but those actions are disclosed and purpose-aligned.
Instruction Scope
Instructions narrow use to explicit reconciliation/recomputation scenarios, prohibit document classification, reminders, and invoicing, and define localized writes. The default silence when there are no anomalies may reduce user-visible feedback, but the behavior is disclosed.
Install Mechanism
There is no install spec, no executable code, no declared dependencies, and the static scanner had no code to analyze. The unknown source/homepage is a provenance limitation, but there is no runnable installer or hidden helper in the provided artifacts.
Credentials
The skill reads all bank statements for the selected client/month and invoices from adjacent months, which is proportionate for reconciliation. No credentials, external APIs, or network transmission are declared.
Persistence & Privilege
It writes a reconciliation CSV, updates the payment-status column in followup.md, and may write a client audit log. These are scoped local mutations but can affect accounting workflow state.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install rapprochement-bancaire
  3. After installation, invoke the skill by name or use /rapprochement-bancaire
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.1.0
Initial release: bank reconciliation for French accounting firms.
Metadata
Slug rapprochement-bancaire
Version 0.1.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Rapprochement Bancaire?

Bank reconciliation for French accounting firms. Reconciles bank statement transactions with previously classified invoices for a given client. Produces a CS... It is an AI Agent Skill for Claude Code / OpenClaw, with 79 downloads so far.

How do I install Rapprochement Bancaire?

Run "/install rapprochement-bancaire" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Rapprochement Bancaire free?

Yes, Rapprochement Bancaire is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Rapprochement Bancaire support?

Rapprochement Bancaire is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Rapprochement Bancaire?

It is built and maintained by thomas-trendex (@thomas-trendex); the current version is v0.1.0.

💬 Comments