Banker Creates Credit Due Diligence Tool with 31 AI Prompts Using Only Claude

A domain expert with 17 years in MSME credit underwriting at Indian banks has developed and open-sourced a tool that uses AI prompts to accelerate credit due diligence. The creator has no coding background and built the entire system through conversation with Claude, Anthropic's AI.
The Problem and Solution
Traditional credit teams spend 3-4 weeks collecting 47 documents (balance sheets, stock statements, CMA data, CA certificates, ITRs, property papers) only to discover red flags like NCLT cases, cancelled GST registrations, or cheque bounce cases late in the process. The tool addresses this by extracting maximum intelligence from just 5 inputs: company name, city, GSTIN (India's tax ID), director name, and DIN (director identification number).
Technical Details
The system consists of 31 prompts across 10 categories:
- Entity verification
- Director/promoter background checks
- NCLT/insolvency search
- Market reputation
- GST turnover analysis
- Credit rating
- Group entity mapping
- Shell company detection
- Sector risk
- Final go/no-go memo
The prompts work across any LLM including ChatGPT, Claude, Gemini, Perplexity, and Copilot. No proprietary tools are needed - users simply copy, paste, and investigate.
How It Was Built
The creator, who describes themselves as "not a developer" and "can't write a single line of code from scratch," built the entire tool through conversation with Claude. This includes:
- The 31-prompt library
- A React app interface
- Constitution-based logic
- GitHub Pages deployment
The tool is a single HTML file with no backend, database, login requirements, or cost. The creator described the credit workflow, due diligence dimensions, and nuances of Indian banking regulations to Claude, which helped structure the prompts and build the web interface.
Context and Impact
MSME lending in India represents a $300B+ market serving 63 million MSMEs. The tool aims to compress the first stage of due diligence from 3 weeks to 30 minutes, potentially making credit more accessible to underserved businesses. The creator is not currently building a startup around this but is sharing it with the lending ecosystem.
The creator is seeking feedback on whether similar prompt-based pre-screening tools exist in other lending markets, if the concept would translate to SME lending in the US/UK/Southeast Asia, and experiences from other non-developers who have built domain tools using AI.
📖 Read the full source: r/ClaudeAI
👀 See Also

Why AI Bounty Hunters Are Losing Money: Data from 60 Issues
A developer tried to make Claude earn money on open-source bounties with a $20 token budget. After scanning 80+ Algora bounties, they found most are saturated with 10+ open PRs, $1 spam, or reserved for interviews. Expected value: $0.

Using /probe to catch AI hallucinations before writing code
A developer shares a technique called /probe that forces AI-generated plans to make numbered claims with expected values, then probes the real system to catch discrepancies. The method caught four factual errors in Claude's description of its own JSONL format that would have caused code bugs.

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.
Hax: A Minimalist Terminal-Native Coding Agent in C
Hax is a single native C binary that starts instantly, uses only a few MB of RAM, and treats local LLMs as first-class citizens. It auto-discovers llama.cpp and other providers with no config blocks.