From norman-finance
Categorizes uncategorized bank transactions by description, counterparty, and patterns; matches payments to invoices; verifies bookkeeping entries. Use for reviewing transactions, expense categorization, or reconciling accounts.
npx claudepluginhub norman-finance/norman-mcp-server --plugin norman-financeThis skill uses the workspace's default tool permissions.
Help the user categorize and organize their bank transactions.
Scans transactions for missed German tax deductions like home office, tech, travel for freelancers/small businesses, suggests SKR04 categories, and estimates savings.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
Help the user categorize and organize their bank transactions.
Call get_company_details and check isSme:
isSme: false): Use categorize_transaction — AI detects the freelance category automatically.isSme: true): Use list_company_categories to find DATEV categories by code. If the right category isn't provisioned, use search_skr_by_code or suggest_skr_category to search the full SKR catalog, then create_company_category to add it.Fetch uncategorized transactions: Call search_transactions to find transactions that need attention. Look for unverified or uncategorized entries.
Smart categorization: For each transaction, suggest a category based on:
Assign the category:
categorize_transaction with the transaction details — it returns the AI-suggested freelance category.update_transaction with company_category_id to assign a DATEV category. If the needed category isn't in list_company_categories, search the full SKR03/SKR04 catalog with search_skr_by_code (by number) or suggest_skr_category (by description, uses AI). Then create_company_category to add it.Invoice matching: When a transaction looks like an incoming payment:
list_invoices to find matching unpaid invoices (by amount or client)link_transaction to connect the payment to the invoiceDocument attachment: Remind the user to attach receipts for expenses:
upload_bulk_attachments for multiple receiptslink_attachment_transaction to connect receipts to transactionsVerification: After categorizing, use change_transaction_verification to mark transactions as verified.
Present transactions in batches of 10-15 for manageable review. Show: Date, Amount, Description, Suggested Category.