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

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

Testing rules for a PowerPoint automation server. They require test-driven development, or TDD, meaning you first write a failing test, then make the smallest change that makes it pass, using real PowerPoint integration tests for core commands.

In plain words
What is it for?
Use it when adding or fixing PowerPoint commands, protocol behavior, serialization, or trait-based test filtering, and when deciding which tests to run.
Why use it?
It prevents untested implementation changes and catches regressions in behavior that depends on an actual PowerPoint desktop instance.

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/testing-strategy
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 testing-strategy.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/sbroenne/mcp-server-powerpoint/testing-strategy.svg)](https://agentmods.dev/instructions/sbroenne/mcp-server-powerpoint/testing-strategy)
Your own site
<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>
Per session 1,409 This file is loaded in full into every session.
When invoked 1,409 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.01409 $0.01409
Opus 5 $0.00705 $0.00705
Sonnet 5 $0.00282 $0.00282
Haiku 4.5 $0.00141 $0.00141

Measured 4d ago against content hash 8005b25dd02c, 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 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.

.github/instructions/testing-strategy.instructions.md · 132 lines

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 Core commands drives a real PowerPoint desktop instance.

Strict TDD (Red → Green)

  1. Write a failing test that proves the bug/gap exists (red).
  2. Run it, confirm it fails for the expected reason (not a compile error or unrelated failure).
  3. Implement the minimal Core/ComInterop change to make it pass (green).
  4. 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.

Read the full file on GitHub · 132 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 · 132 lines · 1,409 tokens per session scan A 8005b25dd02c

Subscribe to this mod's changes

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.

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