McpPwshPresentation CLAUDE.md

McpPwshPresentation CLAUDE.md is an instructions file for coding agents from KevinMarquette/McpPwshPresentation. It costs 941 tokens per session, scanned A, original, MIT.

Project instructions for a PowerShell presentation about using MCP, a way for language models to call custom tools and actions. The project includes a small demo server and slides that can be exported to HTML, PDF, or PowerPoint.

In plain words
What is it for?
It helps maintain the PowerShell demo, build the Marp slide deck, export selected formats, clean output files, and install build dependencies.
Why use it?
It tells coding agents how the presentation is organized, which commands build it, and which export format to produce.

Instructions file

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/kevinmarquette/mcppwshpresentation/claude-md
Clone the repo
git clone --depth 1 https://github.com/KevinMarquette/McpPwshPresentation

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 McpPwshPresentation CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/kevinmarquette/mcppwshpresentation/claude-md.svg)](https://agentmods.dev/instructions/kevinmarquette/mcppwshpresentation/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/kevinmarquette/mcppwshpresentation/claude-md"><img src="https://agentmods.dev/badge/instructions/kevinmarquette/mcppwshpresentation/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 941 This file is loaded in full into every session.
When invoked 941 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.00941 $0.00941
Opus 5 $0.00470 $0.00470
Sonnet 5 $0.00188 $0.00188
Haiku 4.5 $0.00094 $0.00094

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

Security

Grade A, and why

McpPwshPresentation CLAUDE.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.

CLAUDE.md · 85 lines

How it starts

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

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Project Overview

This is a PowerShell Summit 2026 presentation repo for the talk "Beyond the Prompt: Leveraging MCP and PowerShell for Custom LLM Actions" (Monday April 13, 2026, 3:00–4:30pm PDT, Room 404).

It contains two parts:

  1. SimpleMCPServer/ — A minimal working MCP server implementation in PowerShell (used as a live demo).
  2. slides/ — Marp-based slide deck, built from Markdown to PPTX/PDF/HTML.

Build Commands (Slides)

All slide build commands run from the slides/ directory using psake. The build.ps1 script is the entry point.

# Export all formats (HTML, PDF, PPTX) — default task
pwsh slides/build.ps1

# Export only PPTX
pwsh slides/build.ps1 -Task ExportPptx

# Export only HTML
pwsh slides/build.ps1 -Task ExportHtml

# Export only PDF
pwsh slides/build.ps1 -Task ExportPdf

# Clean dist/ directory
pwsh slides/build.ps1 -Task Clean

# List all available tasks
pwsh slides/build.ps1 -Help

# Bootstrap build dependencies (first time setup)
pwsh slides/build.ps1 -Bootstrap

Prerequisites: marp CLI must be installed globally (npm i -g @marp-team/marp-cli). Psake is required as a PowerShell module.

Outputs land in slides/dist/. Decks must have marp: true in their front matter to be picked up by the build.

Slide Authoring (slides/MCP-PSSummit-2026.md)

This is the main presentation file. Use slides/sample-presentation.md as the style/component reference — it demonstrates every available CSS class and layout option for the summit-2026 theme.

Slide front matter:

---
marp: true
theme: summit-2026
paginate: true
---

Key slide classes (set via <!-- _class: classname -->):

  • title — title slide with gradient background; use <p class="name"> and <p class="handle"> for speaker info
  • sponsors — sponsor thank-you slide
  • no_background — plain slide without background image

Read the full file on GitHub · 85 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 · 85 lines · 941 tokens per session scan A 4dadc4b02882

Subscribe to this mod's changes

McpPwshPresentation CLAUDE.md is an instructions file published in the GitHub repository KevinMarquette/McpPwshPresentation (5 stars, last pushed 4mo ago), licensed MIT. It adds 941 tokens to every session, about $0.0047 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-31.

Related

Other instructions, from other repositories

docs-to-pdf CLAUDE.md

Instructions for jean-humann/docs-to-pdf, covering claude development guide for docs-to-pdf, project overview, development environment setup, using mise (recommended) and install mise (if not already installed).

jean-humann/docs-to-pdf · 4,714 tokens

PDF-Writer CLAUDE.md

Instructions for galkahana/PDF-Writer, covering claude code context - pdf-writer development guide, project overview, coding standards discovered, project structure and key components.

galkahana/PDF-Writer · 1,432 tokens

autorename-pdf CLAUDE.md

Instructions for ptmrio/autorename-pdf, covering autorename-pdf, development setup, source venv/bin/activate # linux/macos, commands and ai tool integration.

ptmrio/autorename-pdf · 1,295 tokens

pdfnative-mcp AGENTS.md

Instructions for Nizoka/pdfnative-mcp, covering agents.md — pdfnative-mcp, 1. tool catalogue (28 tools), 2. decision tree, 3. token-frugal responses and 4. output modes & environment.

Nizoka/pdfnative-mcp · 10,137 tokens

docsift CLAUDE.md

Instructions for anishmoncivarghese/docsift, covering docsift, key documents (read before making product decisions), commands, architecture (src layout, package docsift) and hard rules.

anishmoncivarghese/docsift · 718 tokens

notebooklm-wiki-pipeline CLAUDE.md

Instructions for capitalparser/notebooklm-wiki-pipeline, covering 05notebooklmwikipipeline — 프로젝트 컨텍스트, 핵심 문제, 아키텍처, 도구 구성 and 슬래시 커맨드.

capitalparser/notebooklm-wiki-pipeline · 571 tokens