agentsclimarketplace

Avalonia ui setup

Skill a5c-ai/babysitter/library/specializations/desktop-development/skills/avalonia-ui-setup

Babysitter enforces obedience on agentic workforces and enables them to manage extremely complex tasks and workflows through deterministic, hallucination-free self-orchestration

Install
npx -y skills add a5c-ai/babysitter --skill avalonia-ui-setup

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its author says it does

Copied from the file, not written here

Set up Avalonia UI project with cross-platform XAML for Windows, macOS, and Linux

SKILL.md

1.9 KB, as published. Nobody here has run it

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-generator
  • cross-platform-test-matrix

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.