servalsheets CLAUDE.md

servalsheets CLAUDE.md is an instructions file for Claude Code from khill1269/servalsheets. It costs 4,253 tokens per session, scanned A, original, MIT.

A project-specific instruction file for Claude Code, the coding assistant, describing how to work on the ServalSheets codebase. It covers the project structure, live session information, and required development workflow.

In plain words
What is it for?
Use it when developing or reviewing ServalSheets, a Node.js and TypeScript server that connects tools to Google Sheets. It helps guide work through request handling, validation, services, and project documentation.
Why use it?
It gives the assistant the rules and context needed to make changes consistently in this repository. It also points to large reference files and tells it when to load them.

Instructions file for Claude Code

Written for Claude Code: SessionStart hook event. Also seen: reads .claude/ paths; mentions subagents; mentions Claude Code.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/khill1269/servalsheets/claude-md
Clone the repo
git clone --depth 1 https://github.com/khill1269/servalsheets

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 servalsheets CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/khill1269/servalsheets/claude-md.svg)](https://agentmods.dev/instructions/khill1269/servalsheets/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/khill1269/servalsheets/claude-md"><img src="https://agentmods.dev/badge/instructions/khill1269/servalsheets/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 4,253 This file is loaded in full into every session.
When invoked 4,253 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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.04253 $0.04253
Opus 5 $0.02126 $0.02126
Sonnet 5 $0.00851 $0.00851
Haiku 4.5 $0.00425 $0.00425

Measured 5d ago against content hash a0d92ea0fb29, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

servalsheets CLAUDE.md 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 5d 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.md · 303 lines

How it starts

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

Claude Code Rules (ServalSheets)

Size cap: 300 lines. If this file exceeds 300 lines, move content to docs/. Architecture reference: docs/development/ARCHITECTURE.md

Live State & Session Context

Live project state (auto-generated): @.serval/state.md

Load on demand — do NOT auto-load these large files:

  • Session notes (20KB): .serval/session-notes.md — read only the section matching current task
  • Codebase context (80KB+): docs/development/CODEBASE_CONTEXT.md — load only handler/service section matching current module
  • Feature roadmap (40KB+): docs/development/FEATURE_PLAN.md — load only the section for current feature
  • Dispatch map (JSON): .serval/routing-map.json — query by tool.action key (e.g. sheets_data.read)

Project Overview

ServalSheets is a production-grade MCP server for Google Sheets with 25 tools and 410 actions. Runtime: Node.js + TypeScript (strict). See src/schemas/index.ts for authoritative counts.

Core Pipeline

MCP Request → src/server.ts:handleToolCall()
  → src/mcp/registration/tool-handlers.ts:createToolCallHandler()
    → normalizeToolArgs() → Zod validation → handler.executeAction()
      → src/services/google-api.ts (auto-retry + circuit breaker)
    → buildToolResponse() → CallToolResult

Full 4-layer trace with line numbers: docs/development/ARCHITECTURE.md

Non-negotiable Workflow

  1. Verify before claiming — every fact needs file:line OR command → output
  2. Trace execution paths — prove reachability from entrypoint (STDIO/HTTP/Remote)
  3. No "fixes" without failing proof — reproduce with script or failing test first
  4. Minimal change policy — ≤3 src/ files unless tests require more; no refactors while debugging
  5. No silent fallbacks — never return {} without logging; use ErrorCode enum
  6. Dead code claims need proof — run npm run validate:dead-code <file> <start> <end>
  7. Schema-handler alignment — run npm run validate:alignment; deviations must be in src/schemas/handler-deviations.ts
  8. Audit docs must validatenpm run validate:audit with .github/AUDIT_TEMPLATE.md format

Read the full file on GitHub · 303 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. 5d ago First seen · 303 lines · 4,253 tokens per session scan A a0d92ea0fb29

Subscribe to this mod's changes

servalsheets CLAUDE.md is an instructions file published in the GitHub repository khill1269/servalsheets (0 stars, last pushed 2d ago), licensed MIT. It adds 4,253 tokens to every session, about $0.0213 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.

Related

Other instructions, from other repositories

mcp-server-excel readme-management.instructions.md

Instructions for sbroenne/mcp-server-excel, covering readme management - quick reference, core entry documents, feature documentation, critical rules and tool & action counts must match.

sbroenne/mcp-server-excel · 2,648 tokens

mcp-server-excel extension-development.instructions.md

Instructions for sbroenne/mcp-server-excel, covering vs code extension development instructions, extension overview, changelog and changesets (critical), version management and automatic version management (unified release workflow).

sbroenne/mcp-server-excel · 1,427 tokens

mcp-server-excel excel-connection-types-guide.instructions.md

Instructions for sbroenne/mcp-server-excel, covering excel connection types - llm quick reference, critical: loadto operation limitations, connection action compatibility, decision tree: connection vs power query and recommended workflows.

sbroenne/mcp-server-excel · 1,113 tokens

mcp-server-excel architecture-patterns.instructions.md

Instructions for sbroenne/mcp-server-excel, covering architecture patterns, layer boundaries, core command pattern, surface parity and code organization.

sbroenne/mcp-server-excel · 649 tokens

mcp-server-excel excel-com-interop.instructions.md

Instructions for sbroenne/mcp-server-excel, covering excel com interop, api selection, batch execution and exceptions, com lifetime and excel application state.

sbroenne/mcp-server-excel · 696 tokens

apple-health-mcp AGENTS.md

Instructions for neiltron/apple-health-mcp, covering repository guidance, project, validate changes, code map and invariants.

neiltron/apple-health-mcp · 561 tokens