ProjGraph CLAUDE.md

ProjGraph CLAUDE.md is an instructions file for coding agents from HandyS11/ProjGraph. It costs 1,067 tokens per session, scanned A, original, MIT.

Repository instructions for ProjGraph, a .NET tool that analyzes projects and can show class diagrams, statistics, and dependency relationships. They document how to restore dependencies, build, test, and run its command-line and MCP interfaces.

In plain words
What is it for?
Use them when building ProjGraph, running all or selected tests, using its command-line visualizations or statistics, or starting its MCP server.
Why use it?
They provide the exact commands and project structure needed to work on the codebase and catch its strict build and documentation requirements.

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/handys11/projgraph/claude-md
Clone the repo
git clone --depth 1 https://github.com/HandyS11/ProjGraph

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/handys11/projgraph/claude-md.svg)](https://agentmods.dev/instructions/handys11/projgraph/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/handys11/projgraph/claude-md"><img src="https://agentmods.dev/badge/instructions/handys11/projgraph/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,067 This file is loaded in full into every session.
When invoked 1,067 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.01067 $0.01067
Opus 5 $0.00534 $0.00534
Sonnet 5 $0.00213 $0.00213
Haiku 4.5 $0.00107 $0.00107

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

Security

Grade A, and why

ProjGraph 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 · 91 lines

How it starts

The opening of the file, as written. The whole thing — 91 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.

Commands

# Restore dependencies
dotnet restore ProjGraph.slnx

# Build
dotnet build ProjGraph.slnx

# Run all tests
dotnet test ProjGraph.slnx

# Run a specific test project
dotnet test tests/ProjGraph.Tests.Unit.ClassDiagram

# Run a specific test class
dotnet test tests/ProjGraph.Tests.Unit.ClassDiagram --filter "ClassAnalysisDepthTests"

# Run CLI locally
dotnet run --project src/ProjGraph.Cli -- visualize ./ProjGraph.slnx
dotnet run --project src/ProjGraph.Cli -- stats ./ProjGraph.slnx

# Run MCP server locally
dotnet run --project src/ProjGraph.Mcp

Build enforces TreatWarningsAsErrors=true and EnforceCodeStyleInBuild=true. XML documentation is required on all public APIs.

Architecture

ProjGraph is a .NET 10 tool ecosystem with two entry points — a CLI (Spectre.Console.Cli) and an MCP server (ModelContextProtocol.Server over stdio) — both backed by a shared library layer.

Dependency graph

Cli ──┐
      ├──► Lib ──► Lib.Core ──► Core
Mcp ──┘       ├──► Lib.Dependencies ──► Lib.Core
              ├──► Lib.ClassDiagram ──► Lib.Core
              └──► Lib.EntityFramework ──► Lib.Core
  • ProjGraph.Core — Pure domain models (SolutionGraph, ClassModel, EfModel, SolutionStats) and exceptions. No dependencies.
  • ProjGraph.Lib.Core — Cross-cutting abstractions (IFileSystem, IOutputConsole, ICompilationFactory, IDiagramRenderer<T>), solution parsers (.sln/.slnx), and infrastructure utilities. Also hosts the TarjanSccAlgorithm (in Domain/Algorithms/) used for cycle detection.
  • ProjGraph.Lib.Dependencies — Builds dependency graphs from solution/project files by parsing them directly via Microsoft.Build.Construction (the in-house SlnParser/SlnxParser/ProjectParser in Lib.Core); computes stats using TarjanSccAlgorithm for cycle detection.
  • ProjGraph.Lib.ClassDiagram — Roslyn-based C# class hierarchy analysis. Accepts a file or directory; optionally discovers related types across the workspace via IWorkspaceTypeDiscovery.
  • ProjGraph.Lib.EntityFramework — Roslyn semantic analysis of EF Core DbContext files and ModelSnapshot files; includes a multi-class Fluent API parser.
  • ProjGraph.Lib — Composition root only. Exposes AddProjGraphLib() which wires all sub-library services via DI.

Read the full file on GitHub · 91 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 · 91 lines · 1,067 tokens per session scan A a218dd059a4a

Subscribe to this mod's changes

ProjGraph CLAUDE.md is an instructions file published in the GitHub repository HandyS11/ProjGraph (1 stars, last pushed 9d ago), licensed MIT. It adds 1,067 tokens to every session, about $0.0053 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.