Set up Avalonia UI project with cross-platform XAML for Windows, macOS, and Linux
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill avalonia-ui-setup --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Avalonia Ui Setup?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-avalonia-ui-setup)More formats (shields.io, HTML) on the badges page.
---
name: avalonia-ui-setup
description: Set up Avalonia UI project with cross-platform XAML for Windows, macOS, and Linux
allowed-tools: Read, Write, Edit, Bash, Glob, Grep
tags: [avalonia, dotnet, cross-platform, xaml, ui]
graph:
domains: [domain:software-engineering]
specializations: [specialization:desktop-development]
skillAreas: [skill-area:desktop-ui-frameworks, skill-area:cross-platform-desktop]
roles: [role:desktop-developer, role:fullstack-engineer]
workflows: [workflow:feature-development, workflow:release-management]
---
# avalonia-ui-setup
Set up Avalonia UI project with cross-platform XAML for true cross-platform desktop development on Windows, macOS, and Linux with a single codebase.
## Capabilities
- Create Avalonia project structure
- Configure MVVM with ReactiveUI
- Set up platform-specific features
- Configure Fluent/Simple themes
- Set up native menu integration
- Configure build for all platforms
- Set up hot reload
- Generate platform-specific publishing
## Input Schema
```json
{
"type": "object",
"properties": {
"projectPath": { "type": "string" },
"projectName": { "type": "string" },
"theme": { "enum": ["fluent", "simple", "custom"] },
"mvvmFramework": { "enum": ["reactiveui", "community-toolkit", "custom"] }
},
"required": ["projectPath", "projectName"]
}
```
## Project Structure
```
MyAvaloniaApp/
├── App.axaml
├── MainWindow.axaml
├── ViewModels/
├── Views/
├── Models/
└── Program.cs
```
## MainWindow.axaml
```xml
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="My Avalonia App">
<StackPanel>
<TextBlock Text="{Binding Greeting}"/>
<Button Command="{Binding ClickCommand}">Click Me</Button>
</StackPanel>
</Window>
```
## Related Skills
- `wpf-xaml-style-generator`
- `cross-platform-test-matrix`
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!