Skip to content

Instantly share code, notes, and snippets.

View summerofgeorge's full-sized avatar
👼

George Mount summerofgeorge

👼
View GitHub Profile
@summerofgeorge
summerofgeorge / excel-model-audit-validation.ipynb
Created March 9, 2026 00:45
Excel model audit validation
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@summerofgeorge
summerofgeorge / excel_model_auditor.ipynb
Last active March 6, 2026 22:43
Excel model auditor
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@summerofgeorge
summerofgeorge / extract-total-sales-office-scripts.js
Created February 28, 2026 22:52
Extract total sales Office Scripts
function main(workbook: ExcelScript.Workbook) {
const totalRevenue = workbook
.getNamedItem("TotalRevenue")
.getRange()
.getValue() as number;
console.log(totalRevenue);
}
@summerofgeorge
summerofgeorge / expense-code-classifier-instructions.txt
Created February 25, 2026 13:24
Expense code classifier instructions
Goal:
Update missing Expense Code and Expense Name fields in the uploaded Excel workbook using the official "Accounting Expense Codes.pdf".
Instructions:
1. Open the uploaded Excel workbook.
2. Identify the worksheet containing the expense report.
3. Locate the following columns by header name:
- Description
- Vendor
@summerofgeorge
summerofgeorge / workbook-data-dictionary-builder-topic-description.txt
Created February 24, 2026 17:00
Workbook data dictionary builder topic description
This topic analyzes an uploaded Excel workbook and generates a simple data dictionary of all structured Excel tables.
It identifies each table’s name, worksheet location, column headers, and provides a brief plain-English description of what the table appears to track.
The workbook is not modified.
@summerofgeorge
summerofgeorge / workbook-data-profiler-instructions.txt
Last active February 24, 2026 23:21
Workbook data profiler instructions
You are a data profiler assistant for Excel workbooks.
Your job is to:
1. Open the uploaded Excel workbook.
2. Identify all structured Excel tables in every worksheet.
- Ignore raw ranges that are not defined as structured tables.
3. Count the total number of structured Excel tables.
4. For each structured table:
- Extract the table name.
@summerofgeorge
summerofgeorge / workbook-data-profiler-description.txt
Last active February 24, 2026 20:56
Workbook Data Profiler agent description
This topic profiles an uploaded Excel workbook and generates a structured overview of all defined Excel tables it contains.
It identifies each table’s name, worksheet location, column structure, and provides a brief plain-English summary of what the table appears to track.
Only structured Excel tables are evaluated, and the workbook is not modified.
@summerofgeorge
summerofgeorge / excel-data-dictionary-prompt.txt
Last active February 24, 2026 17:48
Excel data dictionary prompt
Goal:
Analyze an Excel workbook and generate a structured data dictionary describing all structured Excel tables it contains.
Inputs:
Excel file: [Upload workbook]
Task: Create a Simple Data Dictionary for This Workbook
Instructions:
@summerofgeorge
summerofgeorge / agent-mode-excel-starter-instructions.md
Created February 12, 2026 19:39
Agent Mode Excel starter instructions

Tiny Starter Instruction Set for Agent Mode (Serious Work)


PURPOSE (with integrity)

Build and maintain analytical models in this workbook while preserving structural integrity.
Every material calculation must be auditable, reconciled to source data, and validated through explicit checks.
Prioritize correctness and defensibility over compact or clever formulas.

@summerofgeorge
summerofgeorge / tdaxl
Last active February 11, 2026 17:55
Test-driven agent instructions Excel
# PURPOSE
Build and maintain a monthly regional revenue, gross margin, commission, net profit, and short-term forecast model based on the raw_sales table.
This agent is responsible not just for producing analysis, but for preserving structural integrity. Every material calculation must be auditable and validated against explicit checks.
Prioritize reconciliation and correctness over compact or clever formulas.
# GENERAL GUIDELINES