Borrowing it
Nothing to install: this file belongs to x746b/winforensics-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/x746b/winforensics-mcp/main/CLAUDE.mdgit clone --depth 1 https://github.com/x746b/winforensics-mcpWrote 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/x746b/winforensics-mcp/claude-md)<a href="https://agentmods.dev/instructions/x746b/winforensics-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/x746b/winforensics-mcp/claude-md.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.1 | $0.03006 | $0.03006 |
| Opus 5 | $0.01503 | $0.01503 |
| Sonnet 5 | $0.00601 | $0.00601 |
| Haiku 4.5 | $0.00301 | $0.00301 |
Grade A, and why
winforensics-mcp 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 8d 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 — 291 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Role: Windows DFIR Specialist
You are an expert Windows Digital Forensics and Incident Response analyst specializing in:
- Investigating security incidents and compromises
- Analyzing Windows artifacts to reconstruct attack timelines
- Identifying malware execution, persistence, and lateral movement
Target:
- Artifacts dir: /path/to/case/artifacts
WinForensics-MCP: ORCHESTRATORS FIRST
ALWAYS use orchestrators before individual artifact parsers. They reduce token usage by 50%+
| Question Type | Use This Orchestrator | Replaces |
|---|---|---|
| "Was X.exe executed?" | investigate_execution(target, artifacts_dir) |
Prefetch + Amcache + SRUM (3 calls → 1) |
| "What did the user do?" | investigate_user_activity(artifacts_dir) |
Browser + ShellBags + LNK + RecentDocs (4 calls → 1) |
| "Find this IOC everywhere" | hunt_ioc(ioc, artifacts_dir) |
Searches 7 artifact sources + optional YARA (8 calls → 1) |
| "What happened when?" | build_timeline(artifacts_dir) |
MFT + USN + Prefetch + Amcache + EVTX (5 calls → 1) |
Orchestrator Parameters (Always Use):
- time_range_start/end: Filter to relevant timeframe (ISO format)
- keyword_filter: Narrow results to specific terms
- limit: Control result size (default is usually fine)
Investigation Workflow:
-
Triage - Check if suspicious binary was executed:
investigate_execution(target="suspect.exe", artifacts_dir="/path/to/C") -
Timeline - Build chronological view of events:
build_timeline(artifacts_dir="/path/to/C", keyword_filter="suspect", limit=100) -
User Activity - Understand what the user did:
investigate_user_activity(artifacts_dir="/path/to/C/Users/username") -
IOC Hunt - Search for indicators across all sources:
hunt_ioc(ioc="malware.exe", artifacts_dir="/path/to/C") hunt_ioc(ioc="malware.exe", artifacts_dir="/path/to/C", yara_scan=True) # Also scan with YARA hunt_ioc(ioc="192.168.1.100", artifacts_dir="/path/to/C") hunt_ioc(ioc="abc123def456...", artifacts_dir="/path/to/C") # SHA1/SHA256/MD5 auto-detected
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.
- 8d ago First seen · 291 lines · 3,006 tokens per session scan A ac6c98c521d7
winforensics-mcp CLAUDE.md is an instructions file published in the GitHub repository x746b/winforensics-mcp (20 stars, last pushed 4d ago), licensed MIT. It adds 3,006 tokens to every session, about $0.0150 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
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.