mcp-sheet-filler: Skill for Claude Code

.claude/skills/fill-sheet/SKILL.md

fill-sheet is a skill for Claude Code from popstas/mcp-sheet-filler. It costs 18 tokens per session (1,343 once invoked), scanned A, original, MIT.

A tool for safely filling tabular data in Google Sheets. It treats rows as objects with named columns and avoids replacing values that are already present.

In plain words
What is it for?
Use it to add data incrementally to Google Sheets, create the required data and fields tabs, and switch between sheets.
Why use it?
It reduces the risk of losing collected data when adding information over time. It also provides a guided way to authenticate and prepare a sheet for use.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is popstas/mcp-sheet-filler's own configuration. It tells Claude Code how to work on mcp-sheet-filler itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything mcp-sheet-filler configures →

Reuse

Borrowing it

Nothing to install: this file belongs to popstas/mcp-sheet-filler. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/popstas/mcp-sheet-filler/master/.claude/skills/fill-sheet/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/popstas/mcp-sheet-filler

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for fill-sheet

README.md
[![agentmods](https://agentmods.dev/badge/skills/popstas/mcp-sheet-filler/fill-sheet/github.svg)](https://agentmods.dev/skills/popstas/mcp-sheet-filler/fill-sheet)
Your own site
<a href="https://agentmods.dev/skills/popstas/mcp-sheet-filler/fill-sheet"><img src="https://agentmods.dev/badge/skills/popstas/mcp-sheet-filler/fill-sheet/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for fill-sheet

Your own site · 80×15
<a href="https://agentmods.dev/skills/popstas/mcp-sheet-filler/fill-sheet"><img src="https://agentmods.dev/badge/skills/popstas/mcp-sheet-filler/fill-sheet.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 18 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,343 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00018 $0.01343
Opus 5 $0.00009 $0.00672
Sonnet 5 $0.00004 $0.00269
Haiku 4.5 $0.00002 $0.00134

Measured 10d ago against content hash 97230c504ed9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

fill-sheet scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/fill-sheet/SKILL.md · 177 lines

How it starts

The opening of the file, as written. The whole thing — 177 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Purpose

The sheet-filler server manages objects (rows) with fields (columns). It prevents overwriting existing values, making it safe for incremental data collection.

Workflow

Setup (if needed)

Authenticate to Google Sheets

If not authenticated, use the device code flow:

# 1. Check status
filler_google_auth({ action: "status" })
→ { status: "Not authenticated. Use start_auth to begin authentication." }

# 2. Start auth
filler_google_auth({ action: "start_auth" })
→ { verification_url: "https://www.google.com/device", user_code: "ABCD-EFGH", device_code: "xyz123", instructions: "Visit ... and enter code: ABCD-EFGH" }

# 3. Tell user to visit URL and enter code, wait for confirmation

# 4. Complete auth
filler_google_auth({ action: "complete_auth", device_code: "xyz123" })
→ { status: "Authenticated to Google Sheets" }
Initialize a New Sheet

If the spreadsheet doesn't have data and fields tabs yet, create them:

filler_init()
→ { success: true, fieldsTab: "fields", dataTab: "data", keyField: "name" }

This creates both tabs with their header rows. Errors if either tab already exists.

Switch to a Different Sheet

To work with a different Google Sheet:

filler_use_sheet_id({ sheet_id: "1ABC...xyz" })
# or with full URL:
filler_use_sheet_id({ sheet_id: "https://docs.google.com/spreadsheets/d/1ABC...xyz/edit" })

Main Workflow

1. Understand the Schema

First, get the field definitions to understand what data to collect: filler_list_fields().

Fields with auto: true are candidates for auto-filling. Each field has:

  • name - field identifier
  • type - validation type (string, number, date, url, email, json, enum:...)
  • instructions - how to collect this value
  • example - example value
2. Get an Object

Two options for retrieving objects:

Option A: Get the next object with missing fields

filler_get_next_missing_fields_objects({ limit: 1 })

Returns objects with missing auto fields (default limit 1). If found: false, all objects are complete.

Read the full file on GitHub · 177 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 177 lines · 18 tokens per session scan A 97230c504ed9

Subscribe to this mod's changes

fill-sheet is a skill published in the GitHub repository popstas/mcp-sheet-filler (0 stars, last pushed 6mo ago), licensed MIT. It adds 18 tokens to every session and 1,343 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.