Enterprise teams needed automated spreadsheet error detection and formula auditing with policy compliance checks.
Engineered an AI-powered formula auditing tool using TypeScript and Google Apps Script. Designed real-time recommendation engines with policy compliance checks and intelligent formula insights. Created seamless integration between cloud spreadsheets and LLM APIs.
Automated error detection and formula auditing for enterprise spreadsheets with real-time recommendations.
Google Apps Script acts as the execution layer inside Google Sheets, intercepting formula changes and sending cell ranges to a TypeScript middleware. The middleware batches requests and calls the LLM API with structured prompts that include the spreadsheet schema and policy rules. Responses are parsed into typed recommendation objects and written back to the sheet as comments and suggested corrections.
LLMs are surprisingly good at spreadsheet auditing when given the right schema context — but they hallucinate formula corrections confidently. The real engineering work was building the validation layer that catches wrong suggestions before they reach the user, not the prompting itself.