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

mcp-server-powerpoint architecture-patterns.instructions.md is an instructions file for GitHub Copilot from sbroenne/mcp-server-powerpoint. It costs 1,597 tokens per session, scanned A, original, MIT.

A set of design instructions for building the PowerPointMcp software in .NET. It describes how code should be split into classes and layers that handle PowerPoint communication, core commands, and service access.

In plain words
What is it for?
Designing or extending PowerPoint features such as slides, shapes, text, tables, images, charts, media, animations, and exports.
Why use it?
It gives contributors consistent rules for organizing the code and keeping direct PowerPoint automation separate from the rest of the application.

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

Made for: GitHub Copilot.

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 mcp-server-powerpoint architecture-patterns.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/sbroenne/mcp-server-powerpoint/architecture-patterns.svg)](https://agentmods.dev/instructions/sbroenne/mcp-server-powerpoint/architecture-patterns)
Your own site
<a href="https://agentmods.dev/instructions/sbroenne/mcp-server-powerpoint/architecture-patterns"><img src="https://agentmods.dev/badge/instructions/sbroenne/mcp-server-powerpoint/architecture-patterns.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,597 This file is loaded in full into every session.
When invoked 1,597 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.01597 $0.01597
Opus 5 $0.00798 $0.00798
Sonnet 5 $0.00319 $0.00319
Haiku 4.5 $0.00160 $0.00160

Measured 4d ago against content hash a15bee2b4b0c, 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-powerpoint architecture-patterns.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 4d 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/architecture-patterns.instructions.md · 128 lines

How it starts

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

Architecture Patterns

Core patterns for PowerPointMcp development

.NET Class Design (MANDATORY)

  1. One Public Class Per File - standard .NET practice.
  2. File Name = Class Name - ShapeCommands.cs contains ShapeCommands.
  3. Partial Classes for Large Implementations - split when a class grows past ~15 methods or spans multiple sub-concerns (not needed yet at current Core domain sizes).
  4. Descriptive Names - no over-optimization (ShapeCommands not Commands).
  5. Folder = Organization, Not Identity - Commands/domain folders group files; the type name itself doesn't encode the folder.

Layered Architecture (CRITICAL)

ComInterop (STA thread, OLE message filter, PresentationBatch work queue)
    ↓
Core (domain commands: Presentation, Slide, Shape, TextFrame, Table, Notes, Layout, Master,
      Animation, Image, Media, Chart, Export — all but Presentation carry a [ServiceCategory] attribute)
    ↓
Service (PowerPointMcpService: session registry + dispatch, shared codebase)
    ↓                                              ↓
McpServer (in-process, ServiceBridge)        CLI / pptcli (named-pipe daemon, ServiceClient)
  • ComInterop owns all direct COM object lifetime and STA-thread marshaling. Core never talks to Microsoft.Office.Interop.PowerPoint types outside of a batch.Execute(...) callback.
  • Core commands take IPresentationBatch batch as an explicit first parameter (no ambient session state). Domains other than Presentation also carry a [ServiceCategory("name", "PascalName")] attribute (and an [McpTool(...)] attribute describing the generated tool) so PowerPointMcp.Generators.Mcp/.Cli can discover them — mirroring mcp-server-excel's generator pipeline.
  • Service (PowerPointMcp.Service) resolves sessionIdIPresentationBatch via its own PresentationSessionRegistry, then calls the matching Core command with the resolved batch. Both entry points call into this same dispatch logic (ServiceRegistry.{Category}.RouteAction) — MCP in-process via ServiceBridge.ForwardToService, CLI over a named pipe via ServiceClient/IPowerPointDaemonRpc.
  • McpServer tools are thin either way: the 7 hand-written session/template tools (PresentationTools.cs) resolve sessionId → batch directly via PresentationSessionRegistry.TryGet; the 11 generated action-dispatch tools (slide/shape/chart/etc., one per [ServiceCategory] domain) forward straight to the shared PowerPointMcpService. No domain logic lives in either.

Read the full file on GitHub · 128 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. 4d ago First seen · 128 lines · 1,597 tokens per session scan A a15bee2b4b0c

Subscribe to this mod's changes

mcp-server-powerpoint architecture-patterns.instructions.md is an instructions file published in the GitHub repository sbroenne/mcp-server-powerpoint (19 stars, last pushed today), licensed MIT. It adds 1,597 tokens to every session, about $0.0080 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-excel llm-testing-philosophy.instructions.md

Instructions for sbroenne/mcp-server-excel, covering llm testing philosophy, what are llm tests?, the golden rule, what never belongs in a test and ❌ xfail or skip markers.

sbroenne/mcp-server-excel · 3,451 tokens

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 development-workflow.instructions.md

Instructions for sbroenne/mcp-server-excel, covering development workflow, branch protection, development process, pr review comment workflow and retrieve inline code review comments using github cli.

sbroenne/mcp-server-excel · 1,518 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 copilot-instructions.md

Copilot instructions for sbroenne/mcp-server-excel, covering github copilot instructions - excelmcp, repository map, environment, working rules and build and validation.

sbroenne/mcp-server-excel · 1,206 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