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/testing-strategygit 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/testing-strategy)<a href="https://agentmods.dev/instructions/sbroenne/mcp-server-powerpoint/testing-strategy"><img src="https://agentmods.dev/badge/instructions/sbroenne/mcp-server-powerpoint/testing-strategy.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.01409 | $0.01409 |
| Opus 5 | $0.00705 | $0.00705 |
| Sonnet 5 | $0.00282 | $0.00282 |
| Haiku 4.5 | $0.00141 | $0.00141 |
Grade A, and why
mcp-server-powerpoint testing-strategy.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 — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Testing Strategy
Rule 30: real-COM integration tests only. There are no unit tests with mocked COM objects anywhere in this repo's Core test suite — every test that touches
Corecommands drives a real PowerPoint desktop instance.
Strict TDD (Red → Green)
- Write a failing test that proves the bug/gap exists (red).
- Run it, confirm it fails for the expected reason (not a compile error or unrelated failure).
- Implement the minimal Core/ComInterop change to make it pass (green).
- Re-run the specific test, then the domain's full
Feature=filter, to confirm no regression.
Do not write implementation before a failing test exists for it.
Test Project Layout
tests/
├── PowerPointMcp.Core.Tests/ # Real-COM integration tests, one file per domain
│ ├── xunit.runner.json # maxParallelThreads: 1
│ ├── ShapeCommandsTests.cs [Trait("Category","Integration")] [Trait("Feature","Shape")]
│ ├── ChartCommandsTests.cs [Trait("Feature","Chart")]
│ └── ...
└── PowerPointMcp.McpServer.Tests/ # MCP protocol + session round-trip tests
├── xunit.runner.json
└── Integration/
├── McpProtocolTests.cs # No COM — in-memory transport, schema/wiring assertions
└── McpRoundTripTests.cs # Real COM — full open→edit→save→close lifecycle
Serialization Is Mandatory
xunit.runner.json sets maxParallelThreads: 1 in both test projects. PowerPoint does not
support multiple concurrent automation sessions launched by parallel test threads reliably —
running tests in parallel WILL cause flaky failures or hangs. Never remove or override this
setting to "speed up" a local run.
Anti-pattern: using both IClassFixture<T> and [Collection("...")] with a collection
fixture on the same test class — dual fixtures can create concurrent Excel/PowerPoint sessions
that deadlock during initialization under maxParallelThreads: 1. Use only the collection fixture
if a shared fixture is needed.
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 · 132 lines · 1,409 tokens per session scan A 8005b25dd02c
mcp-server-powerpoint testing-strategy.instructions.md is an instructions file published in the GitHub repository sbroenne/mcp-server-powerpoint (19 stars, last pushed 4d ago), licensed MIT. It adds 1,409 tokens to every session, about $0.0070 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.