agentsclimarketplace

Maui project generator

Skill a5c-ai/babysitter/library/specializations/desktop-development/skills/maui-project-generator

Generate .NET MAUI project with platform-specific handlers for desktop and mobileFrom its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill maui-project-generator

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

SKILL.md

1.9 KB, 335 tokens by cl100k_base, as published. Nobody here has run it

maui-project-generator

Generate .NET MAUI project with platform-specific handlers for Windows and macOS desktop development alongside mobile platforms.

Capabilities

  • Create MAUI project structure
  • Configure platform-specific handlers
  • Set up dependency injection
  • Configure MVVM pattern
  • Set up platform-specific UI
  • Configure build targets
  • Set up app lifecycle handling
  • Generate platform-specific code

Input Schema

{
  "type": "object",
  "properties": {
    "projectPath": { "type": "string" },
    "projectName": { "type": "string" },
    "platforms": { "type": "array", "items": { "enum": ["windows", "macos", "ios", "android"] } }
  },
  "required": ["projectPath", "projectName"]
}

Project Structure

MyMauiApp/
├── MauiProgram.cs
├── App.xaml
├── MainPage.xaml
├── Platforms/
│   ├── Windows/
│   ├── MacCatalyst/
│   ├── iOS/
│   └── Android/
└── Resources/

MauiProgram.cs

public static MauiApp CreateMauiApp()
{
    var builder = MauiApp.CreateBuilder();
    builder.UseMauiApp<App>()
           .ConfigureFonts(fonts => {
               fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
           });
    return builder.Build();
}

Related Skills

  • wpf-mvvm-scaffold
  • cross-platform-test-matrix

What ships with it: 1 file

493 B alongside SKILL.md

Keep looking

Skills are one crate of 326,059. 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.