Skill registry
Business operationsPublic skills

Excel & Worksheet

Full Excel control for AI agents — create workbooks, write data/formulas, build charts (12 types), pivot tables, conditional formatting, tables, protection, and professional reports. 74 tools. No Excel installation needed.

What this skill teaches

A reusable playbook for a specific kind of work.

An MCP server tells an agent which actions are available. A skill adds the judgment around those actions: how to recognize the job, which sequence to follow, what to avoid, and how to decide that the result is complete.

Orchestrate Excel/spreadsheet operations — create workbooks, read/write cells, formulas, charts (12 types), pivot tables, conditional formatting, data validation, tables, images, shapes, comments, protection, page setup, and advanced features (slicers, timelines, form controls). Use when creating spreadsheets, reading…

Architecture

How Excel & Worksheet guides an ADK-Rust agent.

The skill stays readable and portable because it contains instructions rather than service credentials or business data. ADK-Rust supplies it to the agent, the agent chooses from its reviewed tool boundary, and the connected MCP server performs the authenticated operation.

01

User request

The agent receives a goal expressed in ordinary language.

02

Excel & Worksheet skill

Matches intent, supplies the decision guide, and narrows the tool boundary.

03

ADK-Rust agent

Plans the workflow and streams each meaningful step through the runtime.

04

worksheet-mcp

Executes authenticated operations against the system that owns the capability.

05

Verified result

The skill's completion rules shape the evidence returned to the user.

Portable instructions: SKILL.md · Capability boundary: worksheet-mcp · Allowed tools: 60

Decision guide

How the agent turns a request into the right action.

These routes come directly from the skill instructions. They help the model recognize intent and select a focused tool or workflow instead of improvising across the entire capability surface.

01

"create spreadsheet", "new workbook"?

create_workbook

02

"open", "read Excel"?

open_workbook

03

"write", "enter data"?

write_cells / write_row / write_json_rows

04

"formula", "SUM", "VLOOKUP"?

write_formula

05

"chart", "graph", "visualize"?

add_chart (pick type by data)

06

"pivot table", "summarize"?

add_pivot_table

07

"format", "bold", "color"?

set_cell_format

08

"conditional format", "color scale"?

add_conditional_format

Proven workflows

Repeatable sequences for useful outcomes.

A workflow joins several tool calls into a task the user actually recognizes. The skill explains the sequence and the intended result while ADK-Rust streams the agent's progress through the shared runtime.

015 calls

Create Report

Data → table → chart → save

023 calls

Read & Analyze

Open → read → describe

036 calls

Build Dashboard

Data + pivot + chart + formatting

042-3 calls

Format & Style

Professional appearance

052 calls

Protect & Share

Lock + save encrypted

Tool boundary

The skill may use 60 documented tools.

This allowlist is declared by the skill. It keeps the agent focused on the actions needed for this job while worksheet-mcp retains responsibility for authentication, validation, and the connected system.

create_workbook
open_workbook
save_workbook
close_workbook
configure_workbook
list_sheets
get_sheet_dimensions
describe_workbook
add_sheet
rename_sheet
delete_sheet
read_sheet
read_cell
search_cells
sheet_to_csv
write_cells
write_row
write_column
write_rich_text
write_json_rows
write_formula
manage_cell
set_cell_format
merge_cells
set_row_column_format
set_dimensions
freeze_panes
autofit_columns
add_chart
add_waterfall_chart
add_funnel_chart
add_treemap_chart
add_sunburst_chart
add_histogram_chart
add_box_whisker_chart
add_map_chart
add_slicer
add_timeline
add_form_control
add_table
add_conditional_format
add_data_validation
add_sparkline
add_image
add_shape
add_pivot_table
set_page_setup
manage_comments
add_threaded_comment
add_link
manage_defined_names
modify_rows
modify_columns
group
protect
protect_sheet_advanced
manage_autofilter
set_doc_properties
save_workbook_advanced
open_workbook_encrypted

Working rules

What the agent should do.

  • Always save_workbook after changes (data is in-memory until saved)
  • Use add_table for structured data (enables filtering, totals)
  • Pick chart type by data: bar (comparison), line (trend), pie (composition), scatter (correlation)
  • Use autofit_columns for readability
  • close_workbook when done (frees memory)

Operating boundaries

What the agent should avoid.

  • Don't forget to save (changes lost on close)
  • Don't use pie charts for 6 categories
  • Don't leave raw data without formatting (hard to read)
  • Don't write formulas with hardcoded values (use cell references)

Install and connect

Add the skill beside the capability it expects.

Install the repository where your ADK-Rust skill loader can discover it, connect worksheet-mcp, and confirm the declared tools are available before asking the agent to use the workflow.

Install the skill
git clone https://github.com/zavora-ai/skill-excel-worksheet.git \
  ~/.skills/skills/excel-worksheet
ADK-Rust loading shape
let skills = SkillLoader::from_dir("~/.skills/skills").await?;
let skill = skills.load("excel-worksheet").await?;

let agent = LlmAgentBuilder::new("agent")
    .instruction(skill.instructions())
    .tools(skill.allowed_tools(toolset)?)
    .build()?;

The repository's compatibility statement: Requires worksheet-mcp server connected. Native xlsx read/write via zavora-xlsx (Rust). No Excel installation needed.

Official documentation

Read the complete skill package.

The repository remains authoritative for its exact instructions, examples, helper scripts, assets, MCP requirements, license, and later updates.

Source record

Repository metadata for this skill entry.

View public repository ↗
License
Apache-2.0
Allowed tools
60
References
3
Revision
a293bac2396a
Updated
May 31, 2026