wpf-code-reviewer

wpf-code-reviewer is an agent for Claude Code from christian289/dotnet-with-claudecode. It costs 0 tokens per session (1,137 once invoked), scanned A, original, MIT.

A read-only reviewer for Windows Presentation Foundation (WPF) code. It checks Model-View-ViewModel (MVVM) boundaries, performance patterns, coding practices, and compiler diagnostics using C# language-server tools.

In plain words
What is it for?
Use it to review WPF code, inspect symbols and references, check types, identify MVVM violations, and report compiler errors or warnings.
Why use it?
It finds likely design, performance, reference, and compile-time problems without editing files or running the project. It requires the csharp-lsp plugin for its enhanced code analysis.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code.

Part of the wpf-dev-pack plugin — 28 skills, 10 agents, 4 hooks, 2 MCP servers shipped together

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 agents/christian289/dotnet-with-claudecode/wpf-code-reviewer
Clone the repo
git clone --depth 1 https://github.com/christian289/dotnet-with-claudecode

Made for: Claude Code.

Or install wpf-dev-pack, the plugin that ships this one along with the rest of its 28 skills, 10 agents, 4 hooks, 2 MCP servers.

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 wpf-code-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/christian289/dotnet-with-claudecode/wpf-code-reviewer.svg)](https://agentmods.dev/agents/christian289/dotnet-with-claudecode/wpf-code-reviewer)
Your own site
<a href="https://agentmods.dev/agents/christian289/dotnet-with-claudecode/wpf-code-reviewer"><img src="https://agentmods.dev/badge/agents/christian289/dotnet-with-claudecode/wpf-code-reviewer.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,137 The whole file, excluding the scripts and references it only reads on demand.
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.1 $0.00000 $0.01137
Opus 5 $0.00000 $0.00568
Sonnet 5 $0.00000 $0.00227
Haiku 4.5 $0.00000 $0.00114

Measured 6d ago against content hash 118b7170d335, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

wpf-code-reviewer 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 6d 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.

wpf-dev-pack/agents/wpf-code-reviewer.md · 149 lines

How it starts

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

WPF Code Reviewer - Code Quality Specialist

Role

Review WPF code quality and provide improvement suggestions. Operate in read-only mode without code modifications.

Critical Constraints

  • ❌ No file modifications (Edit, Write tools not available)
  • ❌ No build/run commands
  • ✅ Only read, search, and analyze

C# LSP Integration

Use the csharp-lsp tools for enhanced code analysis:

Tool Purpose
textDocument_definition Navigate to symbol definitions
textDocument_references Find all references to a symbol
textDocument_documentSymbol Get all symbols in a file
textDocument_hover Get type information and documentation
textDocument_diagnostic Get compiler errors and warnings

LSP-Assisted Review Process

  1. Symbol Analysis: Use documentSymbol to get class/method overview
  2. Reference Tracking: Use references to find MVVM violations (ViewModel using UI types)
  3. Type Checking: Use hover to verify property types and inheritance
  4. Error Detection: Use diagnostic to identify compile-time issues

Prerequisite: Requires csharp-lsp plugin from Claude Code marketplace.

Shared Rules

These rules are preloaded into your context at startup (see frontmatter skills). Apply them throughout the review:

  • mvvm-constraints
  • freezable-performance
  • rendering-antipatterns
  • virtualization-patterns
  • converter-patterns
  • resourcedictionary-patterns

Review Checklist

1. MVVM Violation Check

Apply the preloaded mvvm-constraints rules. Additionally check:

Direct UI Manipulation in ViewModel
// VIOLATION
public void UpdateUI()
{
    _textBox.Text = "Updated";  // ❌ Direct control access
    MessageBox.Show("Done");     // ❌ UI from ViewModel
}

// CORRECT: Use binding and services
[ObservableProperty]
private string _message;  // ✅ Bind to TextBox.Text

// Inject dialog service
private readonly IDialogService _dialogService;
Business Logic in Code-Behind
// VIOLATION: Logic in .xaml.cs
private void Button_Click(object sender, RoutedEventArgs e)
{
    var result = CalculateTotal();  // ❌ Business logic
    SaveToDatabase(result);          // ❌ Data access
}

// CORRECT: Use Command binding

Read the full file on GitHub · 149 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. 6d ago First seen · 149 lines · 0 tokens per session scan A 118b7170d335

Subscribe to this mod's changes

wpf-code-reviewer is an agent published in the GitHub repository christian289/dotnet-with-claudecode (41 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,137 tokens. 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 agents, from other repositories

documentation-updater

Technical writing specialist for creating and maintaining documentation. Use proactively after code changes to detect and fix documentation drift - new or changed APIs, parameters, configuration, dependencies, or removed features. Also use when asked to write or update READMEs, getting-started guides, API references…

sintaxasn/Fluence.Wpf · 91 tokens

theme-slot-auditor

Read-only auditor for Fluence.Wpf theming structure. Use after any theme, brush, color, accent, or ApplicationThemeManager change to verify the three-slot MergedDictionaries invariant, that slot [0] is rebuilt and replaced every Apply, DynamicResource usage, BrushFactory auto-twinning, canonical WinUI key names, and…

sintaxasn/Fluence.Wpf · 90 tokens

net472-feasibility-checker

Read-only checker that verifies new or changed code in Fluence.Wpf stays runnable on net472. Use after adding APIs, language features, or dependencies, since LangVersion=latest lets modern C# compile but a runtime API that ships only in .NET 10 fails on the separate net472 test lane. Enforces AGENTS.md section 4.3.

sintaxasn/Fluence.Wpf · 81 tokens

winui-parity-reviewer

Read-only reviewer for Fluence.Wpf control and theme changes. Use to compare WPF templates, resources, and behavior against WinUI 3 CommonStyles and official Microsoft guidance.

sintaxasn/Fluence.Wpf · 43 tokens

looping

Re-invoke agents safely with bounded loops, completion evaluators, AI judges, progress feedback, and approval escape behavior.

managedcode/dotnet-skills · 24 tokens

index

Browse built-in Agent Framework capabilities for multimodal input, tools, retrieval, evaluation, security, and autonomous execution.

managedcode/dotnet-skills · 23 tokens