Built AI Forensic Accounting Software with My Dad — CaseTrail Automates Financial Fraud Detection

CaseTrail is AI-powered forensic accounting software built by a father-son team. The tool ingests bank statements (CSV/PDF) and uses LLMs to classify transactions and flag suspicious activity. The blog post on case-trail.com walks through the technical architecture and real-world deployment.
Key Technical Details
- Data Ingestion: Parses CSV and PDF bank statements via standard libraries (e.g., pandas, pdfplumber).
- LLM Integration: Uses GPT-4 or similar to classify transactions into categories (e.g., payroll, vendor payments) and detect anomalies based on patterns.
- Anomaly Detection: Rules engine + LLM reasoning to flag potential fraud (e.g., duplicate payments, unusual vendor activity).
- Stack: Python backend (FastAPI/Flask), React frontend. The code is not open-sourced but the blog explains the core logic.
The article highlights practical challenges: handling PDF parsing inconsistencies, LLM hallucination on ambiguous transactions, and the need for human-in-the-loop reviews. They also share performance metrics — roughly 80% automation on standard cases, with manual review for edge cases.
For developers building similar vertical AI tools, the post offers a candid look at integrating LLMs with domain-specific workflows.
📖 Read the full source: HN LLM Tools
👀 See Also

ForgeAI: A Visual Workbench for Model Engineering
ForgeAI provides a visual interface for model inspection, merging, and training, offering features like 3D model architecture inspection and M-DNA Forge for visual layer merging.

Claude Code Skill Refactors React Components Using 'Don't Make Me Think' Principles
A new Claude Code skill automatically refactors React components for usability based on Steve Krug's principles — cuts happy talk, surfaces primary CTAs, fixes empty/error states, and tightens labels.

Free Claude Session Optimizer: Token Estimator, Prompt Compressor, and Session Planner
A developer has built a free, no-sign-up tool to help manage Claude's usage limits with three features: a token estimator to preview prompt consumption, a prompt compressor that reduces prompts 40-60% by removing filler phrases, and a session planner that groups tasks to minimize context reloading.

Building a Persistent AI Knowledge Infrastructure with OpenClaw
A developer built 'Brain'—a central knowledge service with local RAG, multi-agent coordination, and a typed plugin system—to solve the statelessness problem in AI setups. The system runs entirely on local hardware using Ollama, Postgres, MongoDB, Qdrant, and Memgraph.