Install
$ agentstack add skill-linuxdevel-avalonia-skills-avalonia-pro-max ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Avalonia Pro Max — Beautiful Avalonia UIs
Purpose
avalonia skills teach you the framework. avalonia-pro-max teaches you to make it look and feel professional: design tokens, theme selection, component recipes, motion, accessibility, responsive layout, icons, and final QA.
This skill is the desktop/cross-platform counterpart to ui-ux-pro-max. Same priorities, but every rule is mapped to Avalonia 12 (XAML, FluentTheme, ControlThemes, pseudoclasses, AutomationProperties, etc.).
When to Use
Must use
- Building a new screen, window, or page
- Restyling an existing app or replacing the default look
- Choosing a theme library (FluentAvalonia, SukiUI, Semi, Material, ShadUI, Ursa…)
- Defining colors, typography, spacing, radius, elevation tokens
- Adding animations, transitions, hover/press states
- Implementing dark/light theme variants
- Reviewing UI before shipping or PR
- The user says "make this beautiful", "modernize", "polish", "looks bland"
Recommended
- Migrating WPF visuals to Avalonia and wanting modern feel (combine with
avalonia-wpf-migration) - Cross-platform polish (desktop + mobile + web)
- Building a reusable component library
Skip
- Pure data binding, MVVM plumbing, services, deployment — use base
avaloniasubskills
Routing Table
| Task | Load sub-subskill | |---|---| | Design tokens, palettes, typography scale, spacing, theme variants, semantic color system | avalonia-pro-max/design-system | | Picking and configuring a theme library (FluentAvalonia, SukiUI, Semi, Material, ShadUI, Ursa, Material.Avalonia) | avalonia-pro-max/themes | | Production-ready XAML recipes: cards, dialogs, command bar, sidebar nav, settings page, forms, empty states | avalonia-pro-max/components | | Transitions, keyframe animations, easing, hover/press feedback, page transitions, reduced-motion | avalonia-pro-max/motion | | Contrast, focus rings, keyboard navigation, AutomationProperties, screen readers, dynamic font scaling | avalonia-pro-max/accessibility | | Responsive design, breakpoints, AdaptiveLayout, NavigationView vs sidebar vs bottom nav, dashboards | avalonia-pro-max/layout-patterns | | Icon libraries (Lucide, Material, FontAwesome, Heroicons), SVG (Svg.Skia), brand assets, image optimization | avalonia-pro-max/icons-imagery | | Final QA before merge / release — checklist of every must-pass item | avalonia-pro-max/review-checklist | | Show the user 2–3 design alternatives as rendered Avalonia screens in a browser gallery before implementation; user picks one in chat | avalonia-pro-max/preview-server |
Workflow for "Build a beautiful Avalonia app/screen"
- Establish the design system →
design-system
Choose palette (semantic tokens), typography scale, spacing rhythm, radius scale, elevation. Persist as Resources/Tokens.axaml + theme-variant dictionaries.
- Pick a theme base →
themes
FluentTheme + community theme (or pure custom). The themes sub-skill has a recommendation matrix by app type.
- Build screens with recipes →
components
Use the recipe library — never hand-roll a card / dialog / nav from zero when a vetted pattern exists.
- Apply motion →
motion
Add Transitions to interactive controls, page transitions for navigation, respect prefers-reduced-motion.
- Verify accessibility →
accessibility
AutomationProperties, focus order, contrast 4.5:1, keyboard parity.
- Check responsive behavior →
layout-patterns
Test at 800/1280/1920 widths; mobile/tablet via Avalonia.Mobile.
- Run the review checklist →
review-checklist
Pre-merge audit. If anything fails, loop back.
Optional: Show the user options first
If the user wants to see and pick between alternatives before you commit to a direction (e.g., "show me a few options", "what would this look like"), insert this before step 3:
→ preview-server — generate 3 variant .axaml files, render each via Avalonia.Headless to PNG (light/dark × wide/compact), serve a side-by-side HTML gallery. The user reviews in their browser and tells you which to build.
Priority of Concerns
Same global priority as ui-ux-pro-max, mapped to Avalonia:
| # | Category | Avalonia Mechanism | Sub-skill | |---|---|---|---| | 1 | Accessibility | AutomationProperties.*, focus pseudoclasses, contrast | accessibility | | 2 | Touch & interaction | Min hit-target via Padding/MinHeight, :pointerover / :pressed styles | components, motion | | 3 | Performance | CompiledBinding, virtualization (VirtualizingStackPanel), RenderOptions.BitmapInterpolationMode | components, layout-patterns | | 4 | Style selection | Theme library + ControlTheme + Style classes | themes, design-system | | 5 | Layout & responsive | Grid * / Auto, AdaptiveLayout, NavigationView.PaneDisplayMode | layout-patterns | | 6 | Typography & color | Theme-variant dictionaries, DynamicResource, type ramp | design-system | | 7 | Animation | Transitions, Animation, KeyFrame, IterationCount | motion | | 8 | Forms & feedback | Validation (DataAnnotations / INotifyDataErrorInfo), Flyout, error pseudoclasses | components | | 9 | Navigation | TabControl, SplitView, FluentAvalonia NavigationView | layout-patterns, components | | 10 | Charts & data | LiveCharts2, ScottPlot, OxyPlot | components |
Recommended Stack for "Beautiful by Default"
A pragmatic starter pack that yields a polished app with minimal effort:
NuGet:
Avalonia12.xAvalonia.Themes.Fluent(orSukiUI/Semi.Avalonia)FluentAvalonia— NavigationView, InfoBar, TeachingTipLucide.AvaloniaorMaterial.Icons.Avalonia— iconsSvg.Skia— vector assetsAvalonia.Xaml.Behaviors— declarative event triggers
The themes sub-skill explains alternatives by product type.
Anti-Patterns (See Each Sub-skill for Detail)
- Hard-coded hex colors scattered across views — use
DynamicResource+ theme dictionaries - Emoji as icons — use a vector icon library
- Removing focus rings to look cleaner — breaks keyboard a11y
- Same
Margin="10"everywhere — use a 4/8 spacing scale - Animating
Width/Heightinstead ofRenderTransformScale — janky StaticResourcefor theme-variant brushes — won't update on variant change- Forgetting
AutomationProperties.Nameon icon-only buttons - Mixing FluentTheme + Material.Avalonia in the same app — visual inconsistency
- Custom controls without
:pointerover/:pressed/:disabled/:focusstyles - One giant
Windowwith noUserControldecomposition
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: linuxdevel
- Source: linuxdevel/Avalonia-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.