DeepSIFT CLAUDE.md

DeepSIFT CLAUDE.md is an instructions file for coding agents from ahammadshawki8/DeepSIFT. It costs 7,692 tokens per session, scanned A, original, MIT.

A set of Claude Code instructions for DeepSIFT, a Python layer that connects Claude to digital-forensics tools and adds structured results and threat-intelligence context.

In plain words
What is it for?
Use it to start and operate DeepSIFT investigations with tools for examining disks, memory, timelines, malware, and other forensic evidence.
Why use it?
It guides investigations through typed tool calls and parsed data instead of leaving the model to interpret raw command output alone.

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/ahammadshawki8/deepsift/claude-md
Clone the repo
git clone --depth 1 https://github.com/ahammadshawki8/DeepSIFT

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/ahammadshawki8/deepsift/claude-md.svg)](https://agentmods.dev/instructions/ahammadshawki8/deepsift/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/ahammadshawki8/deepsift/claude-md"><img src="https://agentmods.dev/badge/instructions/ahammadshawki8/deepsift/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 7,692 This file is loaded in full into every session.
When invoked 7,692 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.07692 $0.07692
Opus 5 $0.03846 $0.03846
Sonnet 5 $0.01538 $0.01538
Haiku 4.5 $0.00769 $0.00769

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

Security

Grade A, and why

DeepSIFT 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 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.

CLAUDE.md · 537 lines

How it starts

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

DeepSIFT — CLAUDE.md

This file is read by Claude Code when running on the SANS SIFT Workstation VM. It configures Claude's behavior for forensic investigations using DeepSIFT.


Project Overview

DeepSIFT is a Python MCP middleware layer between Claude Code and SANS SIFT forensic tools. It reduces hallucinations by parsing raw tool output into structured JSON before it reaches the LLM, exposing typed functions instead of generic shell commands, and injecting RAG threat intelligence context into every analysis step.

148 typed forensic MCP functions (+ preflight self-check) · 23 tool modules · 15 parser modules · Per-finding RAG enrichment

Status: Production-ready — every tool runs a real forensic binary/parser (no demo/simulation/ placeholder paths), no evidence path is hard-coded, EZ Tools runs are case-isolated, and the RAG corpus ships case-agnostic. Originally built for the Find Evil! (SANS DFIR, Devpost) challenge.


Architecture

Claude Code (you)
    ↓ calls typed MCP functions only
DeepSIFT MCP Server (mcp_server/server.py)
    ↓ executes and parses raw output
SIFT Tools (volatility, log2timeline, sleuthkit, yara, ez tools, bulk_extractor, capa, FLOSS, hayabusa)
    ↑ structured JSON returned — never raw text
Middleware Parsers (15 modules — pslist, netscan, malfind, timeline, browser, cloud, document, network_log, linux, mitre_auto_map, rag_enrichment, grounding_verifier, confidence_scorer, forensic_knowledge)
    ↑ RAG enrichment injected per suspicious finding (ChromaDB + MITRE ATT&CK)
    ↑ Forensic knowledge envelope wraps every response (caveats, advisories, corroboration)

How to Start an Investigation

1. Start the MCP server (in a separate terminal)

cd /path/to/deepsift
python3 mcp_server/server.py

2. Connect Claude Code to the MCP server

Add to your ~/.config/claude/claude.json or project .claude/settings.json:

{
  "mcpServers": {
    "deepsift": {
      "command": "python3",
      "args": ["/path/to/deepsift/mcp_server/server.py"]
    }
  }
}

Read the full file on GitHub · 537 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 · 537 lines · 7,692 tokens per session scan A aa5e84f5aa44

Subscribe to this mod's changes

DeepSIFT CLAUDE.md is an instructions file published in the GitHub repository ahammadshawki8/DeepSIFT (0 stars, last pushed 2mo ago), licensed MIT. It adds 7,692 tokens to every session, about $0.0385 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