Home / vellum-ai / vellum-assistant · skills/spreadsheet-authoring/SKILL.md · GitHub

spreadsheet-authoring skillA

spreadsheet-authoring is agent-read markdown (skill) from vellum-ai/vellum-assistant: Create and edit Excel spreadsheets (.xlsx) whose formulas carry their computed values, so sums and totals show in every viewer, plus date and time formats, recalculating and verifying an existing workbook..

Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.

What the file says

# Spreadsheet Authoring

Write workbooks whose numbers are visible everywhere they are opened.

## A formula is stored with the value it produced

An `.xlsx` cell holding a formula stores two things: the formula text, and the
value that formula last produced. Excel fills the value in when it saves.
openpyxl writes none, because it has no formula engine.

Anything that does not run a formula engine shows what the file stores. Chat
file previews, Quick Look, Google Drive previews, and mail previews all read
the stored value, so a workbook written by openpyxl shows `=SUM(C2:C7)` where
the total should be, and a summary sheet of formulas comes out blank.

So: write the computed value next to every formula. Compute it in Python,
where the data already is.

## Install the two packages first

Both come from PyPI and neither is there by default. Run this once at the
start of the task; the import check makes it a no-op when they are already
installed.

```bash
python3 -c "import xlsxwriter, openpyxl" 2>/dev/null \
  || pip install --user --quiet XlsxWriter==3.2.9 openpyxl==3.1.5 \
  || pip install --user --quiet --break-system-packages XlsxWriter==3.2.9 openpyxl==3.1.5
```
…

Read the whole file at its exact version.

How to install

Latest version
mdr add vellum-ai/vellum-assistant/spreadsheet-authoring@git:20260924.5a6d38c
Exact content
mdr add vellum-ai/vellum-assistant/spreadsheet-authoring@sha256:8ba6c79cc8468fc8

Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.

Badge

mdr badge

[![mdr](https://markdownregistry.com/badge/art_tlhfsdw63wtw6d4n.svg)](https://markdownregistry.com/a/art_tlhfsdw63wtw6d4n)

0 badge views in 30 days

Versions

versioncommittedcommitsizeaudit
git:20260924.5a6d38c latest2026-09-24 5a6d38c 6,544 BA view

Audit of the latest version

A  17 of 17 checks passed. Deterministic, no model, same answer every run.
  • pass: Frontmatter block present
  • pass: Frontmatter declares a name
  • pass: Frontmatter declares a description
  • pass: Size between 200 bytes and 200 KB (6544 bytes)
  • pass: No zero-width or bidi control characters
  • pass: No instruction hidden inside an HTML comment
  • pass: No link to an exfiltration or paste host
  • pass: No credential-shaped string
  • pass: No instruction to send local credentials anywhere
  • pass: No text hidden with inline styles
  • pass: No prompt-injection phrasing
  • pass: No curl or wget piped into a shell
  • pass: No recursive delete of root, home or parent
  • pass: No instruction to read or print local credentials
  • pass: No base64 blob over 200 characters
  • pass: No link to a raw IP address
  • pass: No script tag

Source

GitHub

vellum-ai/vellum-assistant · 1,314 stars · license MIT · pushed 2026-09-24 · branch main

API

GET https://markdownregistry.com/api/v1/artifacts/art_tlhfsdw63wtw6d4n
GET https://markdownregistry.com/api/v1/resolve?ref=vellum-ai/vellum-assistant/spreadsheet-authoring
GET https://markdownregistry.com/api/v1/blob/8ba6c79cc8468fc80f88f6cbf7078b7b6fd08f9f6f1a26c733db0ec3b7755344

Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.

More from vellum-ai/vellum-assistant

add-mcp-integration skill
vellum-ai/vellum-assistant · .claude/skills/add-mcp-integration/SKILL.md · Add a vendor's remote MCP server to the bundled integrations catalog (plugins/mcp-catalog/<name>/ +…
git:20260924.494829c · audit A · 1,314 stars
cli-testing skill
vellum-ai/vellum-assistant · .claude/skills/cli-testing/SKILL.md · Manually test a running Vellum assistant end-to-end purely from the CLI — no desktop app or web UI. Hatch an instance…
git:20260608.6985b64 · audit A · 1,314 stars
release skill
vellum-ai/vellum-assistant · .claude/skills/release/SKILL.md · Cut a new release: create the release branch (staging bake), then dispatch the production Release run on that branch.
git:20260826.d1b98be · audit A · 1,314 stars
update skill
vellum-ai/vellum-assistant · .claude/skills/update/SKILL.md · Restart the Vellum assistant and gateway services. Smart branch handling: pulls from main by default, restarts in-place…
git:20260616.1d51808 · audit A · 1,314 stars
e2e skill
vellum-ai/vellum-assistant · .claude/skills/vellum-skills/e2e/SKILL.md · Run end-to-end tests via the CI workflow.
git:20260317.23378c6 · audit A · 1,314 stars
vellum-boundary-guard skill
vellum-ai/vellum-assistant · .cursor/skills/vellum-boundary-guard/SKILL.md · Check Vellum Assistant architecture and package boundaries. Use when editing imports, moving code, adding endpoints…
git:20260521.b4bdd7a · audit A · 1,314 stars
vellum-change-review skill
vellum-ai/vellum-assistant · .cursor/skills/vellum-change-review/SKILL.md · Review Vellum Assistant code changes for correctness, repo-specific quality rules, security risks, and missing…
git:20260521.b4bdd7a · audit A · 1,314 stars
vellum-feature-flag-rollout skill
vellum-ai/vellum-assistant · .cursor/skills/vellum-feature-flag-rollout/SKILL.md · Guide Vellum Assistant feature flag changes and rollout hygiene. Use when adding, editing, reviewing, or documenting…
git:20260612.4834458 · audit A · 1,314 stars
vellum-migration-checklist skill
vellum-ai/vellum-assistant · .cursor/skills/vellum-migration-checklist/SKILL.md · Validate Vellum Assistant database and workspace migrations. Use when adding, editing, reviewing, or testing…
git:20260702.d65ff55 · audit A · 1,314 stars
vellum-pr-readiness skill
vellum-ai/vellum-assistant · .cursor/skills/vellum-pr-readiness/SKILL.md · Prepare Vellum Assistant branches for review by checking git hygiene, PR scope, tests, docs, migrations, Linear…
git:20260521.b4bdd7a · audit A · 1,314 stars
vellum-skill-authoring skill
vellum-ai/vellum-assistant · .cursor/skills/vellum-skill-authoring/SKILL.md · Author and review first-party Vellum skills in the repository. Use when editing files under skills/, assistant bundled…
git:20260521.b4bdd7a · audit A · 1,314 stars
vellum-test-selection skill
vellum-ai/vellum-assistant · .cursor/skills/vellum-test-selection/SKILL.md · Select focused verification commands for Vellum Assistant changes. Use when deciding what tests, typechecks, lints, or…
git:20260702.d65ff55 · audit A · 1,314 stars

Every file in vellum-ai/vellum-assistant

Browse by kind, by grade A, or by owner.