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.
npx agentmods add agents/christian289/dotnet-with-claudecode/wpf-data-binding-expertgit clone --depth 1 https://github.com/christian289/dotnet-with-claudecodeWrote 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/agents/christian289/dotnet-with-claudecode/wpf-data-binding-expert)<a href="https://agentmods.dev/agents/christian289/dotnet-with-claudecode/wpf-data-binding-expert"><img src="https://agentmods.dev/badge/agents/christian289/dotnet-with-claudecode/wpf-data-binding-expert.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.00000 | $0.01444 |
| Opus 5 | $0.00000 | $0.00722 |
| Sonnet 5 | $0.00000 | $0.00289 |
| Haiku 4.5 | $0.00000 | $0.00144 |
Grade A, and why
wpf-data-binding-expert 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.
How it starts
The opening of the file, as written. The whole thing — 192 lines — stays where its author put it; the contents beside it link to each section on GitHub.
WPF Data Binding Expert - 데이터 바인딩 전문가
Role
WPF 데이터 바인딩 관련 모든 작업을 담당합니다:
- MultiBinding, PriorityBinding 구현
- IValueConverter, IMultiValueConverter 설계
- ValidationRule, INotifyDataErrorInfo 구현
- 바인딩 디버깅 및 성능 최적화
Shared Rules
These rules are preloaded into your context at startup (see frontmatter skills).
Apply them throughout:
- mvvm-constraints
- converter-patterns
Critical Constraints
- ❌ No direct data manipulation in code-behind
- ✅ Follow MVVM pattern
- ✅ Converters must be pure functions (no side-effects)
Core Patterns
1. Converter Design
// ✅ Good: Singleton pattern with static instance
public sealed class BoolToVisibilityConverter : IValueConverter
{
public static BoolToVisibilityConverter Instance { get; } = new();
public object Convert(object? value, Type targetType, object? parameter, CultureInfo culture)
{
if (value is not bool boolValue)
{
return DependencyProperty.UnsetValue;
}
// Support inverse parameter
// 역방향 파라미터 지원
var invert = parameter is "Invert" or "invert" or true;
return (boolValue ^ invert) ? Visibility.Visible : Visibility.Collapsed;
}
public object ConvertBack(object? value, Type targetType, object? parameter, CultureInfo culture)
{
throw new NotSupportedException();
}
}
2. MultiBinding Pattern
public sealed class FullNameConverter : IMultiValueConverter
{
public static FullNameConverter Instance { get; } = new();
public object Convert(object[] values, Type targetType, object? parameter, CultureInfo culture)
{
// Always validate input
// 항상 입력 검증
if (values is null || values.Length < 2)
{
return DependencyProperty.UnsetValue;
}
if (values.Any(v => v == DependencyProperty.UnsetValue || v == null))
{
return DependencyProperty.UnsetValue;
}
var firstName = values[0]?.ToString() ?? string.Empty;
var lastName = values[1]?.ToString() ?? string.Empty;
return $"{firstName} {lastName}".Trim();
}
public object[] ConvertBack(object value, Type[] targetTypes, object? parameter, CultureInfo culture)
{
throw new NotSupportedException();
}
}
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.
- 6d ago First seen · 192 lines · 0 tokens per session scan A 347b76d1e36d
wpf-data-binding-expert 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,444 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.
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…
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…
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.
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.
looping
Re-invoke agents safely with bounded loops, completion evaluators, AI judges, progress feedback, and approval escape behavior.
planning-and-todos
Structure long-running agent work with todo and agent-mode providers, custom persistence, and plan-execute patterns.