mcp-server-excel documentation-structure.instructions.md

A set of rules for organizing project documentation into clear locations, such as README.md for setup and docs/ for guides and specifications.

In plain words
What is it for?
It helps structure documentation folders, choose file names, and decide where user guides, architecture notes, feature references, and process documents belong.
Why use it?
It prevents temporary notes and important documentation from being mixed together, making information easier to find and maintain.

Instructions file for GitHub Copilot

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/sbroenne/mcp-server-excel/documentation-structure
Clone the repo
git clone --depth 1 https://github.com/sbroenne/mcp-server-excel

Made for: GitHub Copilot.

Per session 1,534 This file is loaded in full into every session.
When invoked 1,534 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 $0.01534 $0.01534
Opus 5 $0.00767 $0.00767
Sonnet 5 $0.00307 $0.00307
Haiku 4.5 $0.00153 $0.00153

Measured 3d ago against content hash e5368bbad205, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

mcp-server-excel documentation-structure.instructions.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 3d 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.

.github/instructions/documentation-structure.instructions.md ยท 157 lines

How it starts

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

Documentation Structure & Standards

Clear hierarchy prevents temporary doc accumulation

๐Ÿ“ Documentation Hierarchy

Root Level - Essential User-Facing Only

  • โœ… README.md - GitHub acquisition page and quick start
  • โœ… FEATURES.md - Feature navigation hub and tool-selection guide
  • โœ… CHANGELOG.md - Generated release history
  • โœ… SECURITY.md - Security policy (GitHub standard)
  • โœ… PRIVACY.md - Privacy policy
  • โœ… LICENSE - License file
  • โŒ NO temporary files (SUMMARY, FIX, BUG, TESTS, DOCS, etc.)

docs/ - Canonical Documentation

Purpose: Feature references, user guides, architecture, and development processes

Categories:

  • Feature References: features/*.md
  • User Guides: INSTALLATION*.md, USE-CASES.md, CONTRIBUTING.md
  • Architecture: ARCHITECTURE.md, ADR-*.md
  • Developer Guides: DEVELOPMENT.md, PRE-COMMIT-SETUP.md
  • Process Docs: RELEASE-STRATEGY.md, MCP_REGISTRY_PUBLISHING.md, NUGET-GUIDE.md
  • Infrastructure: infrastructure/azure/README.md
  • Standards: TEST-NAMING-STANDARD.md

Naming Convention:

  • โœ… TOPIC-NAME.md (ALL CAPS for discoverability)
  • โœ… ADR-NNN-DECISION-NAME.md (Architecture Decision Records)
  • โŒ NO SUMMARY.md, FIX.md, TESTS.md (temporary naming)

specs/ - Feature Specifications

Purpose: What should be built (requirements, design, before implementation)

Naming Convention:

  • โœ… FEATURE-NAME-SPEC.md
  • โœ… COMPONENT-API-SPECIFICATION.md

src/[Component]/ - Component Documentation

Purpose: Component-specific overview and usage

Files:

  • โœ… README.md - Component overview, quick start

Temporary Documentation Rules

โŒ Forbidden at Root Level

  • FIX-*.md - Document fixes in PRs, not files
  • BUG-*.md - Track bugs in GitHub Issues
  • TESTS-*.md - Test info belongs in test files
  • DOCS-*.md - Update actual docs, don't create meta-docs
  • SUMMARY-*.md - Summarize in PR descriptions

โœ… Where to Put Content Instead

  • Bug investigation โ†’ GitHub Issue comments
  • Fix summary โ†’ PR description
  • Architecture decisions โ†’ docs/ADR-NNN-DECISION-NAME.md
  • Temporary notes โ†’ Branch commit messages (deleted after merge)

Read the full file on GitHub ยท 157 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. 3d ago First seen ยท 157 lines ยท 1,534 tokens per session scan A e5368bbad205

Subscribe to this mod's changes

mcp-server-excel documentation-structure.instructions.md is an instructions file published in the GitHub repository sbroenne/mcp-server-excel (645 stars, last pushed 3d ago), licensed MIT. It adds 1,534 tokens to every session, about $0.0077 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-30.

Related

Other instructions, from other repositories

mcp-server-powerpoint copilot-instructions.md

Instructions for sbroenne/mcp-server-powerpoint, covering project instructions โ€” powerpointmcp, critical files (read these first), sister projects, what is powerpointmcp? and session model (mcp server).

sbroenne/mcp-server-powerpoint ยท 3,630 tokens

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

Instructions for sbroenne/mcp-server-powerpoint, covering architecture patterns, .net class design (mandatory), layered architecture (critical), command pattern and structure (per domain).

sbroenne/mcp-server-powerpoint ยท 1,597 tokens

mcp-server-powerpoint critical-rules.instructions.md

Instructions for sbroenne/mcp-server-powerpoint, covering critical rules - must follow, rule 1: success/errormessage invariant, rule 1b: no exception suppression in core, rule 30: real-com integration tests only, strict tdd and rule: 1-based indexing everywhere.

sbroenne/mcp-server-powerpoint ยท 1,486 tokens

mcp-server-powerpoint mcp-server-guide.instructions.md

Instructions for sbroenne/mcp-server-powerpoint, covering mcp server development guide, llm-facing content rules, two kinds of tools: hand-written vs. generated, implementation pattern: single hand-written dispatch tool and error handling (mandatory).

sbroenne/mcp-server-powerpoint ยท 1,737 tokens

mcp-server-powerpoint testing-strategy.instructions.md

Instructions for sbroenne/mcp-server-powerpoint, covering testing strategy, strict tdd (red โ†’ green), test project layout, serialization is mandatory and trait tagging (required for surgical filtering).

sbroenne/mcp-server-powerpoint ยท 1,409 tokens

mcp-server-amazon CLAUDE.md

Instructions for rigwild/mcp-server-amazon, covering claude.md, development commands, install dependencies (use -d flag for puppeteer), build typescript to javascript and clean mock html files.

rigwild/mcp-server-amazon ยท 628 tokens