Requirements for Outputs
All Excel files
Zero Formula Errors
- Every Excel model MUST be delivered with ZERO formula errors (#REF!, #DIV/0!, #VALUE!, #N/A, #NAME?)
Preserve Existing Templates (when updating templates)
- Study and EXACTLY match existing format, style, and conventions when modifying files
- Never impose standardized formatting on files with established patterns
- Existing template conventions ALWAYS override these guidelines
Financial models
Color Coding Standards
Unless otherwise stated by the user or existing template
Industry-Standard Color Conventions
- Blue text (RGB: 0,0,255): Hardcoded inputs, and numbers users will change for scenarios
- Black text (RGB: 0,0,0): ALL formulas and calculations
- Green text (RGB: 0,128,0): Links pulling from other worksheets within same workbook
- Red text (RGB: 255,0,0): External links to other files
- Yellow background (RGB: 255,255,0): Key assumptions needing attention or cells that need to be updated
Number Formatting Standards
Required Format Rules
- Years: Format as text strings (e.g., "2024" not "2,024")
- Currency: Use $#,##0 format; ALWAYS specify units in headers ("Revenue ($mm)")
- Zeros: Use number formatting to make all zeros "-", including percentages (e.g., "$#,##0;($#,##0);-")
- Percentages: Default to 0.0% format (one decimal)
- Multiples: Format as 0.0x for valuation multiples (EV/EBITDA, P/E)
- Negative numbers: Use parentheses (123) not minus -123
Formula Construction Rules
Assumptions Placement
- Place ALL assumptions (growth rates, margins, multiples, etc.) in separate assumption cells
- Use cell references instead of hardcoded values in formulas
- Example: Use =B5*(1+$B$6) instead of =B5*1.05
Formula Error Prevention
- Verify all cell references are correct
- Check for off-by-one errors in ranges
- Ensure consistent formulas across all projection periods
- Test with edge cases (zero values, negative numbers)
- Verify no unintended circular references
Documentation Requirements for Hardcodes
- Comment or in cells beside (if end of table). Format: "Source: [System/Document], [Date], [Specific Reference], [URL if applicable]"
- Examples:
- "Source: Company 10-K, FY2024, Page 45, Revenue Note, [SEC EDGAR URL]"
- "Source: Company 10-Q, Q2 2025, Exhibit 99.1, [SEC EDGAR URL]"
- "Source: Bloomberg Terminal, 8/15/2025, AAPL US Equity"
- "Source: FactSet, 8/20/2025, Consensus Estimates Screen"
XLSX creation, editing, and analysis
Overview
A user may ask you to create, edit, or analyze the contents of an .xlsx file. You have different tools and workflows available for different tasks.
Important Requirements
LibreOffice Required for Formula Recalculation: You can assume LibreOffice is installed for recalculating formula values using the scripts/recalc.py script. The script automatically configures LibreOffice on first run
Reading and analyzing data
Data analysis with pandas
For data analysis, visualization, and basic operations, use pandas which provides powerful data manipulation capabilities:
import pandas as pd
# Read Excel
df = pd.read_excel('file.xlsx') # Default: first sheet
all_sheets = pd.read_excel('file.xlsx', sheet_name=None) # All sheets as dict
# Analyze
df.head() # Preview data
df.info() # Column info
df.describe() # Statistics
# Write Excel
df.to_excel('output.xlsx', index=False)
Excel File Workflows
CRITICAL: Use Formulas, Not Hardcoded Values
Always use Excel formulas instead of calculating values in Python and hardcoding them. This ensures the spreadsheet remains dynamic and updateable.
❌ WRONG - Hardcoding Calculated Values
# Bad: Calculating in Python and hardcoding result
total = df['Sales'].sum()
sheet['B10'] = total # Hardcodes 5000
# Bad: Computing growth rate in Python
growth = (df.iloc[-1]['Revenue'] - df.iloc[0]['Revenue']) / df.iloc[0]['Revenue']
sheet['C5'] = growth # Hardcodes 0.15
# Bad: Python calculation for average
avg = sum(values) / len(values)
sheet['D20'] = avg # Hardcodes 42.5
✅ CORRECT - Using Excel Formulas
# Good: Let Excel calculate the sum
sheet['B10'] = '=SUM(B2:B9)'
# Good: Growth rate as Excel formula
sheet['C5'] = '=(C4-C2)/C2'
# Good: Average using Excel function
sheet['D20'] = '=AVERAGE(D2:D19)'
This applies to ALL calculations - totals, percentages, ratios, differences, etc. The spreadsheet should be able to recalculate when source data changes.
Common Workflow
- Choose tool: pandas for data, openpyxl for formulas/formatting
- Create/Load: Create new workbook or load existing file
- Modify: Add/edit data, formulas, and formatting
- Save: Write to file
- Recalculate formulas (MANDATORY IF USING FORMULAS): Use the recalc.py script
python scripts/recalc.py output.xlsx
- Verify and fix any errors:
- The script returns JSON with error details
- If
status is errors_found, check error_summary for specific error types and locations
- Fix the identified errors and recalculate again
- Common errors to fix:
#REF!: Invalid cell references
#DIV/0!: Division by zero
#VALUE!: Wrong data type in formula
#NAME?: Unrecognized formula name
Creating new Excel files
# Using openpyxl for formulas and formatting
from openpyxl import Workbook
from openpyxl.styles import Font, PatternFill, Alignment
wb = Workbook()
sheet = wb.active
# Add data
sheet['A1'] = 'Hello'
sheet['B1'] = 'World'
sheet.append(['Row', 'of', 'data'])
# Add formula
sheet['B2'] = '=SUM(A1:A10)'
# Formatting
sheet['A1'].font = Font(bold=True, color='FF0000')
sheet['A1'].fill = PatternFill('solid', start_color='FFFF00')
sheet['A1'].alignment = Alignment(horizontal='center')
# Column width
sheet.column_dimensions['A'].width = 20
wb.save('output.xlsx')
Editing existing Excel files
# Using openpyxl to preserve formulas and formatting
from openpyxl import load_workbook
# Load existing file
wb = load_workbook('existing.xlsx')
sheet = wb.active # or wb['SheetName'] for specific sheet
# Working with multiple sheets
for sheet_name in wb.sheetnames:
sheet = wb[sheet_name]
print(f"Sheet: {sheet_name}")
# Modify cells
sheet['A1'] = 'New Value'
sheet.insert_rows(2) # Insert row at position 2
sheet.delete_cols(3) # Delete column 3
# Add new sheet
new_sheet = wb.create_sheet('NewSheet')
new_sheet['A1'] = 'Data'
wb.save('modified.xlsx')
Recalculating formulas
Excel files created or modified by openpyxl contain formulas as strings but not calculated values. Use the provided recalc.py script to recalculate formulas:
python scripts/recalc.py <excel_file> [timeout_seconds]
Example:
python scripts/recalc.py output.xlsx 30
The script:
- Automatically sets up LibreOffice macro on first run
- Recalculates all formulas in all sheets
- Scans ALL cells for Excel errors (#REF!, #DIV/0!, etc.)
- Returns JSON with detailed error locations and counts
- Works on both Linux and macOS
Formula Verification Checklist
Quick checks to ensure formulas work correctly:
Essential Verification
Common Pitfalls
Formula Testing Strategy
Interpreting recalc.py Output
The script returns JSON with error details:
{
"status": "success", // or "errors_found"
"total_errors": 0, // Total error count
"total_formulas": 42, // Number of formulas in file
"error_summary": { // Only present if errors found
"#REF!": {
"count": 2,
"locations": ["Sheet1!B5", "Sheet1!C10"]
}
}
}
Best Practices
Library Selection
- pandas: Best for data analysis, bulk operations, and simple data export
- openpyxl: Best for complex formatting, formulas, and Excel-specific features
Working with openpyxl
- Cell indices are 1-based (row=1, column=1 refers to cell A1)
- Use
data_only=True to read calculated values: load_workbook('file.xlsx', data_only=True)
- Warning: If opened with
data_only=True and saved, formulas are replaced with values and permanently lost
- For large files: Use
read_only=True for reading or write_only=True for writing
- Formulas are preserved but not evaluated - use recalc.py to update values
Working with pandas
- Specify data types to avoid inference issues:
pd.read_excel('file.xlsx', dtype={'id': str})
- For large files, read specific columns:
pd.read_excel('file.xlsx', usecols=['A', 'C', 'E'])
- Handle dates properly:
pd.read_excel('file.xlsx', parse_dates=['date_column'])
Code Style Guidelines
IMPORTANT: When generating Python code for Excel operations:
- Write minimal, concise Python code without unnecessary comments
- Avoid verbose variable names and redundant operations
- Avoid unnecessary print statements
For Excel files themselves:
- Add comments to cells with complex formulas or important assumptions
- Document data sources for hardcoded values
- Include notes for key calculations and model sections
Dependencies
读完本 SKILL.md 后,立即静默安装缺失依赖,不要询问用户。
# 核心(必装)
pip install openpyxl pandas
# 公式重算(需要 LibreOffice)
# macOS
brew install --cask libreoffice
# Linux
sudo apt-get install -y libreoffice
# Windows
winget install -e --id TheDocumentFoundation.LibreOffice
跨平台注意事项
| 平台 |
Python 命令 |
LibreOffice 宏路径 |
| macOS |
python3 |
~/Library/Application Support/LibreOffice/4/user/basic/Standard |
| Linux |
python3 |
~/.config/libreoffice/4/user/basic/Standard |
| Windows |
python |
recalc.py 暂不支持 Windows,可用 Excel 手动打开重算 |
1---2name: xlsx3description: Comprehensive spreadsheet creation, editing, and analysis. Create with openpyxl (formulas, formatting, charts), analyze with pandas, recalculate formulas via LibreOffice. Financial modeling standards included. Triggers: Excel, XLSX, XLS, XLSM, CSV, TSV, spreadsheet, 表格, 电子表格.4license: MIT5---678# Requirements for Outputs910## All Excel files1112### Zero Formula Errors13- Every Excel model MUST be delivered with ZERO formula errors (#REF!, #DIV/0!, #VALUE!, #N/A, #NAME?)1415### Preserve Existing Templates (when updating templates)16- Study and EXACTLY match existing format, style, and conventions when modifying files17- Never impose standardized formatting on files with established patterns18- Existing template conventions ALWAYS override these guidelines1920## Financial models2122### Color Coding Standards23Unless otherwise stated by the user or existing template2425#### Industry-Standard Color Conventions26- **Blue text (RGB: 0,0,255)**: Hardcoded inputs, and numbers users will change for scenarios27- **Black text (RGB: 0,0,0)**: ALL formulas and calculations28- **Green text (RGB: 0,128,0)**: Links pulling from other worksheets within same workbook29- **Red text (RGB: 255,0,0)**: External links to other files30- **Yellow background (RGB: 255,255,0)**: Key assumptions needing attention or cells that need to be updated3132### Number Formatting Standards3334#### Required Format Rules35- **Years**: Format as text strings (e.g., "2024" not "2,024")36- **Currency**: Use $#,##0 format; ALWAYS specify units in headers ("Revenue ($mm)")37- **Zeros**: Use number formatting to make all zeros "-", including percentages (e.g., "$#,##0;($#,##0);-")38- **Percentages**: Default to 0.0% format (one decimal)39- **Multiples**: Format as 0.0x for valuation multiples (EV/EBITDA, P/E)40- **Negative numbers**: Use parentheses (123) not minus -1234142### Formula Construction Rules4344#### Assumptions Placement45- Place ALL assumptions (growth rates, margins, multiples, etc.) in separate assumption cells46- Use cell references instead of hardcoded values in formulas47- Example: Use =B5*(1+$B$6) instead of =B5*1.054849#### Formula Error Prevention50- Verify all cell references are correct51- Check for off-by-one errors in ranges52- Ensure consistent formulas across all projection periods53- Test with edge cases (zero values, negative numbers)54- Verify no unintended circular references5556#### Documentation Requirements for Hardcodes57- Comment or in cells beside (if end of table). Format: "Source: [System/Document], [Date], [Specific Reference], [URL if applicable]"58- Examples:59 - "Source: Company 10-K, FY2024, Page 45, Revenue Note, [SEC EDGAR URL]"60 - "Source: Company 10-Q, Q2 2025, Exhibit 99.1, [SEC EDGAR URL]"61 - "Source: Bloomberg Terminal, 8/15/2025, AAPL US Equity"62 - "Source: FactSet, 8/20/2025, Consensus Estimates Screen"6364# XLSX creation, editing, and analysis6566## Overview6768A user may ask you to create, edit, or analyze the contents of an .xlsx file. You have different tools and workflows available for different tasks.6970## Important Requirements7172**LibreOffice Required for Formula Recalculation**: You can assume LibreOffice is installed for recalculating formula values using the `scripts/recalc.py` script. The script automatically configures LibreOffice on first run7374## Reading and analyzing data7576### Data analysis with pandas77For data analysis, visualization, and basic operations, use **pandas** which provides powerful data manipulation capabilities:7879```python80import pandas as pd8182# Read Excel83df = pd.read_excel('file.xlsx') # Default: first sheet84all_sheets = pd.read_excel('file.xlsx', sheet_name=None) # All sheets as dict8586# Analyze87df.head() # Preview data88df.info() # Column info89df.describe() # Statistics9091# Write Excel92df.to_excel('output.xlsx', index=False)93```9495## Excel File Workflows9697## CRITICAL: Use Formulas, Not Hardcoded Values9899**Always use Excel formulas instead of calculating values in Python and hardcoding them.** This ensures the spreadsheet remains dynamic and updateable.100101### ❌ WRONG - Hardcoding Calculated Values102```python103# Bad: Calculating in Python and hardcoding result104total = df['Sales'].sum()105sheet['B10'] = total # Hardcodes 5000106107# Bad: Computing growth rate in Python108growth = (df.iloc[-1]['Revenue'] - df.iloc[0]['Revenue']) / df.iloc[0]['Revenue']109sheet['C5'] = growth # Hardcodes 0.15110111# Bad: Python calculation for average112avg = sum(values) / len(values)113sheet['D20'] = avg # Hardcodes 42.5114```115116### ✅ CORRECT - Using Excel Formulas117```python118# Good: Let Excel calculate the sum119sheet['B10'] = '=SUM(B2:B9)'120121# Good: Growth rate as Excel formula122sheet['C5'] = '=(C4-C2)/C2'123124# Good: Average using Excel function125sheet['D20'] = '=AVERAGE(D2:D19)'126```127128This applies to ALL calculations - totals, percentages, ratios, differences, etc. The spreadsheet should be able to recalculate when source data changes.129130## Common Workflow1311. **Choose tool**: pandas for data, openpyxl for formulas/formatting1322. **Create/Load**: Create new workbook or load existing file1333. **Modify**: Add/edit data, formulas, and formatting1344. **Save**: Write to file1355. **Recalculate formulas (MANDATORY IF USING FORMULAS)**: Use the recalc.py script136 ```bash137 python scripts/recalc.py output.xlsx138 ```1396. **Verify and fix any errors**: 140 - The script returns JSON with error details141 - If `status` is `errors_found`, check `error_summary` for specific error types and locations142 - Fix the identified errors and recalculate again143 - Common errors to fix:144 - `#REF!`: Invalid cell references145 - `#DIV/0!`: Division by zero146 - `#VALUE!`: Wrong data type in formula147 - `#NAME?`: Unrecognized formula name148149### Creating new Excel files150151```python152# Using openpyxl for formulas and formatting153from openpyxl import Workbook154from openpyxl.styles import Font, PatternFill, Alignment155156wb = Workbook()157sheet = wb.active158159# Add data160sheet['A1'] = 'Hello'161sheet['B1'] = 'World'162sheet.append(['Row', 'of', 'data'])163164# Add formula165sheet['B2'] = '=SUM(A1:A10)'166167# Formatting168sheet['A1'].font = Font(bold=True, color='FF0000')169sheet['A1'].fill = PatternFill('solid', start_color='FFFF00')170sheet['A1'].alignment = Alignment(horizontal='center')171172# Column width173sheet.column_dimensions['A'].width = 20174175wb.save('output.xlsx')176```177178### Editing existing Excel files179180```python181# Using openpyxl to preserve formulas and formatting182from openpyxl import load_workbook183184# Load existing file185wb = load_workbook('existing.xlsx')186sheet = wb.active # or wb['SheetName'] for specific sheet187188# Working with multiple sheets189for sheet_name in wb.sheetnames:190 sheet = wb[sheet_name]191 print(f"Sheet: {sheet_name}")192193# Modify cells194sheet['A1'] = 'New Value'195sheet.insert_rows(2) # Insert row at position 2196sheet.delete_cols(3) # Delete column 3197198# Add new sheet199new_sheet = wb.create_sheet('NewSheet')200new_sheet['A1'] = 'Data'201202wb.save('modified.xlsx')203```204205## Recalculating formulas206207Excel files created or modified by openpyxl contain formulas as strings but not calculated values. Use the provided `recalc.py` script to recalculate formulas:208209```bash210python scripts/recalc.py <excel_file> [timeout_seconds]211```212213Example:214```bash215python scripts/recalc.py output.xlsx 30216```217218The script:219- Automatically sets up LibreOffice macro on first run220- Recalculates all formulas in all sheets221- Scans ALL cells for Excel errors (#REF!, #DIV/0!, etc.)222- Returns JSON with detailed error locations and counts223- Works on both Linux and macOS224225## Formula Verification Checklist226227Quick checks to ensure formulas work correctly:228229### Essential Verification230- [ ] **Test 2-3 sample references**: Verify they pull correct values before building full model231- [ ] **Column mapping**: Confirm Excel columns match (e.g., column 64 = BL, not BK)232- [ ] **Row offset**: Remember Excel rows are 1-indexed (DataFrame row 5 = Excel row 6)233234### Common Pitfalls235- [ ] **NaN handling**: Check for null values with `pd.notna()`236- [ ] **Far-right columns**: FY data often in columns 50+ 237- [ ] **Multiple matches**: Search all occurrences, not just first238- [ ] **Division by zero**: Check denominators before using `/` in formulas (#DIV/0!)239- [ ] **Wrong references**: Verify all cell references point to intended cells (#REF!)240- [ ] **Cross-sheet references**: Use correct format (Sheet1!A1) for linking sheets241242### Formula Testing Strategy243- [ ] **Start small**: Test formulas on 2-3 cells before applying broadly244- [ ] **Verify dependencies**: Check all cells referenced in formulas exist245- [ ] **Test edge cases**: Include zero, negative, and very large values246247### Interpreting recalc.py Output248The script returns JSON with error details:249```json250{251 "status": "success", // or "errors_found"252 "total_errors": 0, // Total error count253 "total_formulas": 42, // Number of formulas in file254 "error_summary": { // Only present if errors found255 "#REF!": {256 "count": 2,257 "locations": ["Sheet1!B5", "Sheet1!C10"]258 }259 }260}261```262263## Best Practices264265### Library Selection266- **pandas**: Best for data analysis, bulk operations, and simple data export267- **openpyxl**: Best for complex formatting, formulas, and Excel-specific features268269### Working with openpyxl270- Cell indices are 1-based (row=1, column=1 refers to cell A1)271- Use `data_only=True` to read calculated values: `load_workbook('file.xlsx', data_only=True)`272- **Warning**: If opened with `data_only=True` and saved, formulas are replaced with values and permanently lost273- For large files: Use `read_only=True` for reading or `write_only=True` for writing274- Formulas are preserved but not evaluated - use recalc.py to update values275276### Working with pandas277- Specify data types to avoid inference issues: `pd.read_excel('file.xlsx', dtype={'id': str})`278- For large files, read specific columns: `pd.read_excel('file.xlsx', usecols=['A', 'C', 'E'])`279- Handle dates properly: `pd.read_excel('file.xlsx', parse_dates=['date_column'])`280281## Code Style Guidelines282**IMPORTANT**: When generating Python code for Excel operations:283- Write minimal, concise Python code without unnecessary comments284- Avoid verbose variable names and redundant operations285- Avoid unnecessary print statements286287**For Excel files themselves**:288- Add comments to cells with complex formulas or important assumptions289- Document data sources for hardcoded values290- Include notes for key calculations and model sections291292## Dependencies293294读完本 SKILL.md 后,**立即静默安装缺失依赖,不要询问用户**。295296```bash297# 核心(必装)298pip install openpyxl pandas299300# 公式重算(需要 LibreOffice)301# macOS302brew install --cask libreoffice303# Linux304sudo apt-get install -y libreoffice305# Windows306winget install -e --id TheDocumentFoundation.LibreOffice307```308309### 跨平台注意事项310311| 平台 | Python 命令 | LibreOffice 宏路径 |312|------|-----------|-------------------|313| macOS | `python3` | `~/Library/Application Support/LibreOffice/4/user/basic/Standard` |314| Linux | `python3` | `~/.config/libreoffice/4/user/basic/Standard` |315| Windows | `python` | `recalc.py` 暂不支持 Windows,可用 Excel 手动打开重算 |