Add this skill
npx mdskills install sbroenne/excel-cliComprehensive CLI automation for Excel with clear workflows, batch mode, and rich command reference
Agent Skill for AI coding assistants using the Excel CLI tool (excelcli).
excelcli --help-q) outputs clean JSON onlyModern coding agents increasingly favor CLI-based workflows:
# Token-efficient: No schema overhead
excelcli -q session open C:\Data\Report.xlsx
excelcli -q range set-values --session 1 --sheet Sheet1 --range A1 --values-json '[["Hello"]]'
excelcli -q session close --session 1 --save
The Excel MCP Server VS Code extension installs this skill automatically to ~/.copilot/skills/excel-cli/.
Enable skills in VS Code settings:
{
"chat.useAgentSkills": true
}
Extract to your AI assistant's skills directory:
| Platform | Location |
|---|---|
| Claude Code | .claude/skills/excel-cli/ |
| Cursor | .cursor/skills/excel-cli/ |
| Windsurf | .windsurf/skills/excel-cli/ |
| Gemini CLI | .gemini/skills/excel-cli/ |
| Codex | .codex/skills/excel-cli/ |
| And 36+ more | Via npx skills |
| Goose | .goose/skills/excel-cli/ |
Or use npx:
# Interactive - prompts to select excel-cli, excel-mcp, or both
npx skills add sbroenne/mcp-server-excel
# Or specify directly
npx skills add sbroenne/mcp-server-excel --skill excel-cli
excel-cli/
├── SKILL.md # Main skill definition with CLI command guidance
├── README.md # This file
└── references/ # Detailed domain-specific guidance
├── behavioral-rules.md
├── anti-patterns.md
├── workflows.md
├── range.md
├── table.md
├── worksheet.md
├── chart.md
├── slicer.md
├── powerquery.md
├── datamodel.md
└── conditionalformat.md
Install the CLI tool via NuGet:
dotnet tool install --global Sbroenne.ExcelMcp.CLI
Verify installation:
excelcli --version
excelcli --help
Install via CLI
npx mdskills install sbroenne/excel-cliExcel CLI is a free, open-source AI agent skill. >
Install Excel CLI with a single command:
npx mdskills install sbroenne/excel-cliThis downloads the skill files into your project and your AI agent picks them up automatically.
Excel CLI works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Gemini Cli, Amp, Roo Code, Goose. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.