Babysitter avalonia-ui-setup
Set up Avalonia UI project with cross-platform XAML for Windows, macOS, and Linux
install
source · Clone the upstream repo
git clone https://github.com/a5c-ai/babysitter
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/a5c-ai/babysitter "$T" && mkdir -p ~/.claude/skills && cp -r "$T/library/specializations/desktop-development/skills/avalonia-ui-setup" ~/.claude/skills/a5c-ai-babysitter-avalonia-ui-setup && rm -rf "$T"
manifest:
library/specializations/desktop-development/skills/avalonia-ui-setup/SKILL.mdsource content
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
{ "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
<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-generatorcross-platform-test-matrix