Source profileQuality 98/100

Postpartum-genushyacinthus29/dotnet-skills/skills/dotnet-mvvm/SKILL.md

dotnet-mvvm

Implement the Model-View-ViewModel pattern in .NET applications with proper separation of concerns, data binding, commands, and testable ViewModels using MVVM Toolkit.

Source repository stars
9
Declared platforms
0
Static risk flags
0
Last source update
2026-08-23
Source checked
2026-08-25

Decision brief

What it does: where it fits

Implement the Model-View-ViewModel pattern in . NET applications with proper separation of concerns, data binding, commands, and testable ViewModels using MVVM Toolkit.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/Postpartum-genushyacinthus29/dotnet-skills --skill "skills/dotnet-mvvm"
    Safe inspection promptEditorial

    Inspect the Agent Skill "dotnet-mvvm" from https://github.com/Postpartum-genushyacinthus29/dotnet-skills/blob/f9c1a213bc25d95641adc3a59f8048cb5656741c/skills/dotnet-mvvm/SKILL.md at commit f9c1a213bc25d95641adc3a59f8048cb5656741c. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Workflow

      1. Keep Views dumb — no business logic in code-behind 2. Use data binding — connect View to ViewModel properties 3. Commands for actions — handle user interactions via ICommand 4. Inject dependencies — services go into ViewModel constructors 5. Test ViewModels — they should be u…

      Keep Views dumb — no business logic in code-behindUse data binding — connect View to ViewModel propertiesCommands for actions — handle user interactions via ICommand
    2. 02

      MVVM Toolkit Setup

      Review the “MVVM Toolkit Setup” section in the pinned source before continuing.

      Review and apply the “MVVM Toolkit Setup” source section.
    3. 03

      Trigger On

      implementing UI separation with Model-View-ViewModel

      implementing UI separation with Model-View-ViewModelusing MVVM Toolkit (CommunityToolkit.Mvvm) for ViewModelsdesigning testable UI architecture
    4. 04

      Documentation

      MVVM Toolkit Overview

      MVVM Toolkit OverviewObservableObjectRelayCommand
    5. 05

      Core Concepts

      Review the “Core Concepts” section in the pinned source before continuing.

      Review and apply the “Core Concepts” source section.

    Permission review

    Static risk signals and limitations

    No configured static risk pattern was detected

    This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score98/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars9SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    Postpartum-genushyacinthus29/dotnet-skills
    Skill path
    skills/dotnet-mvvm/SKILL.md
    Commit
    f9c1a213bc25d95641adc3a59f8048cb5656741c
    License
    MIT
    Collected
    2026-08-25
    Default branch
    main
    View the original SKILL.md

    MVVM Pattern for .NET

    Trigger On

    • implementing UI separation with Model-View-ViewModel
    • using MVVM Toolkit (CommunityToolkit.Mvvm) for ViewModels
    • designing testable UI architecture
    • handling commands, property changes, and messaging
    • choosing between MVVM frameworks

    Documentation

    References

    See detailed examples in the references/ folder:

    Core Concepts

    ComponentResponsibilityExample
    ModelBusiness logic and dataProduct, Order, User
    ViewUI presentation (XAML/Razor)ProductPage.xaml
    ViewModelUI logic and stateProductViewModel

    Workflow

    1. Keep Views dumb — no business logic in code-behind
    2. Use data binding — connect View to ViewModel properties
    3. Commands for actions — handle user interactions via ICommand
    4. Inject dependencies — services go into ViewModel constructors
    5. Test ViewModels — they should be unit testable without UI

    MVVM Toolkit Setup

    <PackageReference Include="CommunityToolkit.Mvvm" Version="8.*" />
    

    ViewModel Patterns

    Basic ViewModel with Source Generators

    public partial class ProductViewModel(IProductService productService) : ObservableObject
    {
        [ObservableProperty]
        private string _name = string.Empty;
    
        [ObservableProperty]
        private decimal _price;
    
        [ObservableProperty]
        [NotifyCanExecuteChangedFor(nameof(SaveCommand))]
        private bool _isValid;
    
        [RelayCommand(CanExecute = nameof(CanSave))]
        private async Task SaveAsync()
        {
            await productService.SaveAsync(new Product { Name = Name, Price = Price });
        }
    
        private bool CanSave() => IsValid && !string.IsNullOrEmpty(Name);
    }
    

    Property Changed Notifications

    public partial class OrderViewModel : ObservableObject
    {
        [ObservableProperty]
        private int _quantity;
    
        [ObservableProperty]
        private decimal _unitPrice;
    
        // Computed property - manually notify
        public decimal Total => Quantity * UnitPrice;
    
        partial void OnQuantityChanged(int value)
        {
            OnPropertyChanged(nameof(Total));
        }
    
        partial void OnUnitPriceChanged(decimal value)
        {
            OnPropertyChanged(nameof(Total));
        }
    }
    

    Collection ViewModel

    public partial class ProductListViewModel(IProductService productService) : ObservableObject
    {
        [ObservableProperty]
        private ObservableCollection<ProductViewModel> _products = [];
    
        [ObservableProperty]
        private ProductViewModel? _selectedProduct;
    
        [ObservableProperty]
        private bool _isLoading;
    
        [RelayCommand]
        private async Task LoadProductsAsync()
        {
            IsLoading = true;
            try
            {
                var items = await productService.GetAllAsync();
                Products = new ObservableCollection<ProductViewModel>(
                    items.Select(p => new ProductViewModel(productService)
                    {
                        Name = p.Name,
                        Price = p.Price
                    }));
            }
            finally
            {
                IsLoading = false;
            }
        }
    
        [RelayCommand]
        private void DeleteProduct(ProductViewModel product)
        {
            Products.Remove(product);
        }
    }
    

    Commands

    Async Commands with Cancellation

    public partial class SearchViewModel : ObservableObject
    {
        [ObservableProperty]
        private string _searchText = string.Empty;
    
        [RelayCommand(IncludeCancelCommand = true)]
        private async Task SearchAsync(CancellationToken token)
        {
            await Task.Delay(500, token); // Debounce
            // Search logic with cancellation support
        }
    }
    

    Command with Parameter

    public partial class NavigationViewModel : ObservableObject
    {
        [RelayCommand]
        private void NavigateTo(string page)
        {
            // Navigate to page
        }
    
        [RelayCommand]
        private async Task OpenItemAsync(int itemId)
        {
            // Load and open item
        }
    }
    

    Messenger Pattern

    Sending Messages

    // Define message
    public record ProductSelectedMessage(Product Product);
    
    // Send from one ViewModel
    WeakReferenceMessenger.Default.Send(new ProductSelectedMessage(selectedProduct));
    

    Receiving Messages

    public partial class ProductDetailViewModel : ObservableRecipient
    {
        public ProductDetailViewModel()
        {
            IsActive = true; // Enable message reception
        }
    
        protected override void OnActivated()
        {
            Messenger.Register<ProductDetailViewModel, ProductSelectedMessage>(
                this, (r, m) => r.LoadProduct(m.Product));
        }
    
        private void LoadProduct(Product product)
        {
            // Update UI with product details
        }
    }
    

    Validation

    Using ObservableValidator

    public partial class RegistrationViewModel : ObservableValidator
    {
        [ObservableProperty]
        [NotifyDataErrorInfo]
        [Required(ErrorMessage = "Email is required")]
        [EmailAddress(ErrorMessage = "Invalid email format")]
        private string _email = string.Empty;
    
        [ObservableProperty]
        [NotifyDataErrorInfo]
        [Required]
        [MinLength(8, ErrorMessage = "Password must be at least 8 characters")]
        private string _password = string.Empty;
    
        [RelayCommand(CanExecute = nameof(CanRegister))]
        private async Task RegisterAsync()
        {
            ValidateAllProperties();
            if (HasErrors) return;
    
            // Registration logic
        }
    
        private bool CanRegister() => !HasErrors;
    }
    

    Dependency Injection

    Registration

    // Services
    services.AddSingleton<IProductService, ProductService>();
    services.AddSingleton<INavigationService, NavigationService>();
    
    // ViewModels
    services.AddTransient<ProductListViewModel>();
    services.AddTransient<ProductDetailViewModel>();
    
    // Views (for View-first navigation)
    services.AddTransient<ProductListPage>();
    services.AddTransient<ProductDetailPage>();
    

    ViewModel Locator Pattern

    public class ViewModelLocator
    {
        private static IServiceProvider _provider = null!;
    
        public static void Initialize(IServiceProvider provider) => _provider = provider;
    
        public ProductListViewModel ProductList => _provider.GetRequiredService<ProductListViewModel>();
        public ProductDetailViewModel ProductDetail => _provider.GetRequiredService<ProductDetailViewModel>();
    }
    

    View Binding

    XAML Binding

    <Page x:Class="MyApp.Views.ProductListPage"
          xmlns:vm="using:MyApp.ViewModels"
          x:DataType="vm:ProductListViewModel">
    
        <Grid>
            <ProgressRing IsActive="{x:Bind ViewModel.IsLoading, Mode=OneWay}"
                          Visibility="{x:Bind ViewModel.IsLoading, Mode=OneWay}" />
    
            <ListView ItemsSource="{x:Bind ViewModel.Products, Mode=OneWay}"
                      SelectedItem="{x:Bind ViewModel.SelectedProduct, Mode=TwoWay}">
                <ListView.ItemTemplate>
                    <DataTemplate x:DataType="vm:ProductViewModel">
                        <StackPanel>
                            <TextBlock Text="{x:Bind Name, Mode=OneWay}" />
                            <TextBlock Text="{x:Bind Price, Mode=OneWay}" />
                        </StackPanel>
                    </DataTemplate>
                </ListView.ItemTemplate>
            </ListView>
    
            <Button Content="Load"
                    Command="{x:Bind ViewModel.LoadProductsCommand}" />
        </Grid>
    </Page>
    

    Anti-Patterns to Avoid

    Anti-PatternWhy It's BadBetter Approach
    Logic in code-behindNot testableMove to ViewModel
    ViewModel knows ViewTight couplingUse interfaces/messaging
    Manual INotifyPropertyChangedVerbose, error-proneUse source generators
    God ViewModelUnmaintainableSplit responsibilities
    Direct service calls in ViewViolates separationGo through ViewModel
    Exposing Model directlyLeaks implementationCreate ViewModel properties

    Testing ViewModels

    public class ProductViewModelTests
    {
        [Fact]
        public async Task LoadProducts_PopulatesCollection()
        {
            // Arrange
            var mockService = new Mock<IProductService>();
            mockService.Setup(s => s.GetAllAsync())
                .ReturnsAsync([new Product { Name = "Test", Price = 10 }]);
    
            var viewModel = new ProductListViewModel(mockService.Object);
    
            // Act
            await viewModel.LoadProductsCommand.ExecuteAsync(null);
    
            // Assert
            Assert.Single(viewModel.Products);
            Assert.Equal("Test", viewModel.Products[0].Name);
        }
    
        [Fact]
        public void SaveCommand_CannotExecute_WhenInvalid()
        {
            var viewModel = new ProductViewModel(Mock.Of<IProductService>())
            {
                Name = "",
                IsValid = false
            };
    
            Assert.False(viewModel.SaveCommand.CanExecute(null));
        }
    }
    

    Framework Comparison

    FeatureMVVM ToolkitPrismMVVMLight
    Source generatorsYesNoNo
    MaintenanceActiveActiveDeprecated
    DI built-inNoYesNo
    NavigationNoYesNo
    WeightLightHeavyLight

    Deliver

    • ViewModels that are fully unit testable
    • Clean separation between UI and business logic
    • Proper use of commands and data binding
    • Messaging for loose coupling between components

    Validate

    • No business logic in code-behind files
    • ViewModels don't reference View types
    • Commands are used for all user actions
    • Properties use ObservableProperty or equivalent
    • Dependencies are injected, not created
    • Unit tests cover ViewModel logic

    Frequently asked questions

    What to verify before installation and use

    What does the dotnet-mvvm source document cover?

    Implement the Model-View-ViewModel pattern in . NET applications with proper separation of concerns, data binding, commands, and testable ViewModels using MVVM Toolkit.

    How do I install dotnet-mvvm?

    The source record exposes this install command: npx skills add https://github.com/Postpartum-genushyacinthus29/dotnet-skills --skill "skills/dotnet-mvvm". Inspect the command and pinned source before running it.

    Alternatives

    Compare before choosing

    Computed 976

    mgiovani/cc-arsenal

    team-review

    Multi-agent review team: architecture, security, performance, testing, style, docs/UX, plus an adversary that cross-examines the other 6, for security-sensitive, architectural, or large PRs (15+ files) where a single-agent pass risks missing cross-cutting issues. Use for auth/payments/PII changes, schema/pattern changes, compliance sign-off, or when asked to 'get the review team on this' / 'multi-agent review' / 'thorough review before merge'. For a standard PR or a quick pre-merge check, use /r

    Computed 969

    Postpartum-genushyacinthus29/dotnet-skills

    dotnet-maui

    Build, review, or migrate .NET MAUI applications across Android, iOS, macOS, and Windows with correct cross-platform UI, platform integration, and native packaging assumptions.

    Computed 9420

    upex-galaxy/agentic-qa-boilerplate

    test-automation

    Plan, write, and review automated tests following KATA (Komponent Action Test Architecture) on Playwright + TypeScript, or explain existing automated tests in a sealed read-only mode. Use when writing E2E or API/integration tests, creating Page or Api components, designing ATCs, parameterizing test data, registering fixtures, reviewing test code for KATA compliance, or requesting break-down-tests / a plain-English test breakdown. The explain mode reads source and reports assertions without enter

    Computed 9420

    upex-galaxy/agentic-qa-boilerplate

    test-documentation

    Analyze, prioritize, and document test cases in TMS (Jira/Xray), or repair an existing Story-ATS-ATP-ATR-TC cascade through a sealed explicit mode. Use for Test/ATP/ATR artifacts, ROI and automation verdicts, maintaining traceability, fix-traceability, or broken TMS links. The repair-traceability mode audits, plans, waits for explicit approval, applies, and verifies without launching the general documentation workflow. Do NOT use for writing test code (test-automation) or running suites (regress