xlsx

Create, edit, audit, and model Excel spreadsheets and CSV/TSV files with the office tool.

6|Updated Jun 25, 2026
One-click install
npx skills add https://github.com/tribgames/mixdog --skill xlsx-tribgames
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: xlsx
Source: https://github.com/tribgames/mixdog/tree/main/src/defaults/skills/xlsx
Command: npx skills add https://github.com/tribgames/mixdog --skill xlsx-tribgames

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires office, and includes references (resource) components.

What problem does it solve? Building or editing spreadsheets by hand often produces formula errors, pasted hardcoded values, inconsistent formats, and unverifiable financial models. This Skill enforces a disciplined workflow so every workbook recalculates cleanly, keeps formulas live, and documents where every number came from. ## Core Features & Use Cases - Workbook creation and editing: Add sheets, ranges, formulas, tables, charts, validation, conditional formatting, and pivot tables through batched office tool operations, with support for .xlsx, .xlsm, .csv, and .tsv files. - Financial model auditing: Run the financial-model audit profile to detect formula errors, rogue hardcodes, unguarded divisions, missing Checks sheets, and unsourced inputs, following the conventions in references/model-conventions.md. - Report design and review: Build report surfaces with native charts, print setup, and rendered-page review using the guidance in references/report-design.md. - Use Case: A user asks for a three-year revenue projection model. The Skill creates an Inputs sheet with sourced assumptions, a Calc sheet with consistent formulas, a Checks sheet with tie-outs, and a formatted Report sheet, then finalizes with zero formula errors. ## Quick Start Use the xlsx skill to create a financial model workbook with an assumptions sheet, live formulas, and a checks sheet, then audit it with the financial-model profile.

Frequently Asked Questions about xlsx

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create an Excel financial model with formulas?▼

Place every assumption in its own labelled input cell, reference those cells in formulas like =B5*(1+$B$6), and copy one formula per row across all periods. Add a Checks sheet with tie-out formulas that evaluate TRUE, then finalize with the financial-model audit profile.

How do I edit an existing Excel workbook without breaking formulas?▼

Open the file with the office tool and snapshot the relevant sheet to read its conventions, styles, and marked input cells. Write only into designated input cells, never overwrite existing formulas, and run the audit before and after your edit.

Which Excel functions are safe for cross-platform recalculation?▼

Prefer Excel-2007-era functions like SUMIFS, INDEX/MATCH, IFERROR, and SUMPRODUCT, which every engine evaluates. Avoid spill functions like XLOOKUP, FILTER, and UNIQUE in portable mode, since files written without spill metadata keep only the top-left value.

Why does finalize refuse my workbook with formula errors?▼

Finalize recalculates the workbook and blocks completion when any cell contains #REF!, #DIV/0!, #VALUE!, #NAME?, #N/A, or #NUM! errors. Fix the cells named in the error summary and finalize again; inherited errors must be resolved against the original baseline.

Can I edit CSV or TSV files with this skill?▼

Yes, raw tabular files like .csv and .tsv are supported using set_range with a 2D values array and append_row. These formats carry no styles, formulas, or multiple sheets, and they do not require visual review.

What are the limitations of portable mode for Excel files?▼

Portable mode needs no Excel installation and preserves .xlsm macros without running them, but recalculation relies on LibreOffice. It refuses workbooks with external file links and cannot process spill functions, so use background mode with Microsoft Office for those cases.