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.
npx agentmods add instructions/sbroenne/mcp-server-powerpoint/architecture-patternsgit clone --depth 1 https://github.com/sbroenne/mcp-server-powerpointWrote 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.
[](https://agentmods.dev/instructions/sbroenne/mcp-server-powerpoint/architecture-patterns)<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>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.
| Model | Per session | Once 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 |
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.
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)
- One Public Class Per File - standard .NET practice.
- File Name = Class Name -
ShapeCommands.cscontainsShapeCommands. - 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).
- Descriptive Names - no over-optimization (
ShapeCommandsnotCommands). - 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.PowerPointtypes outside of abatch.Execute(...)callback. - Core commands take
IPresentationBatch batchas an explicit first parameter (no ambient session state). Domains other thanPresentationalso carry a[ServiceCategory("name", "PascalName")]attribute (and an[McpTool(...)]attribute describing the generated tool) soPowerPointMcp.Generators.Mcp/.Clican discover them — mirroringmcp-server-excel's generator pipeline. - Service (
PowerPointMcp.Service) resolvessessionId→IPresentationBatchvia its ownPresentationSessionRegistry, 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 viaServiceBridge.ForwardToService, CLI over a named pipe viaServiceClient/IPowerPointDaemonRpc. - McpServer tools are thin either way: the 7 hand-written session/template tools
(
PresentationTools.cs) resolvesessionId→ batch directly viaPresentationSessionRegistry.TryGet; the 11 generated action-dispatch tools (slide/shape/chart/etc., one per[ServiceCategory]domain) forward straight to the sharedPowerPointMcpService. No domain logic lives in either.
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.
- 4d ago First seen · 128 lines · 1,597 tokens per session scan A a15bee2b4b0c
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.
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.
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.
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.
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).
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.
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.