con un clic
plugin-maui-calendar
name: maui-devflow-onboard Use when this capability is needed.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
name: maui-devflow-onboard Use when this capability is needed.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Morning update routine: merge Renovate PRs, rebase local work, apply chezmoi changes Use when this capability is needed.
Use when the user wants to set, change, or clear git commit co-authors for pair or mob programming.
Use when the user asks to install, add, or set up a package, tool, CLI, or application
Use when the user wants to fetch and contextualize a GitHub repository for future reference.
Use when writing or reviewing GitHub-flavored Markdown (README, issues, PRs, docs)
Copy content to my clipboard using `pbcopy`. Use when this capability is needed.
Basado en la clasificación ocupacional SOC
| name | plugin-maui-calendar |
| description | name: maui-devflow-onboard Use when this capability is needed. |
maui devflow init installs skills. DO NOT USE FOR:
troubleshooting an already-integrated app that cannot connect, iterative app
debugging, UI inspection, or generic MAUI build failures (use
maui-devflow-debug). INVOKES: maui devflow CLI and dotnet CLI.Use this skill to add MAUI DevFlow to a project after maui devflow init has installed the DevFlow skills.
Microsoft.Maui.DevFlow.* package references yet.maui devflow init has installed skills and the user asks for the next project edits.AddMauiDevFlowAgent() are already present but the CLI cannot connect, use maui-devflow-debug.maui-devflow-debug.Optionally run maui devflow skills check and update bundled skills before editing if it reports update-available-from-current-cli.
Find MAUI app projects in the workspace. Prefer app projects with UseMaui, platform TFMs such as net*-android/net*-ios/net*-maccatalyst/net*-windows, or GTK MAUI package references.
Determine whether each target project is standard MAUI, MAUI + Blazor WebView, GTK, or GTK + Blazor.
Add the correct DevFlow package references. Respect Central Package Management if Directory.Packages.props is present.
Register DevFlow in MauiProgram.cs inside #if DEBUG.
Build and run the app.
Verify with:
maui devflow diagnose
maui devflow wait
maui devflow ui tree --depth 1
If verification fails after integration, switch to maui-devflow-debug for connectivity recovery.
PackageReference items when Directory.Packages.props is managing package versions.#if DEBUG unless the user explicitly asks.builder.Services.AddMauiDevFlowAgent() pattern; use builder.AddMauiDevFlowAgent().| Project flavor | Required packages |
|---|---|
| Standard MAUI | Microsoft.Maui.DevFlow.Agent |
| MAUI + Blazor WebView | Microsoft.Maui.DevFlow.Agent, Microsoft.Maui.DevFlow.Blazor |
| GTK MAUI | Microsoft.Maui.DevFlow.Agent.Gtk |
| GTK MAUI + Blazor WebView | Microsoft.Maui.DevFlow.Agent.Gtk, Microsoft.Maui.DevFlow.Blazor.Gtk |
Blazor WebView indicators include a Microsoft.AspNetCore.Components.WebView.Maui package reference or AddMauiBlazorWebView() in MauiProgram.cs.
GTK indicators include package references such as Maui.Gtk, Platform.Maui.Linux.Gtk4, GirCore.Gtk-4.0, or Platform.Maui.Linux.Gtk4.BlazorWebView.
If the repo uses Directory.Packages.props, put versions there and leave project PackageReference entries versionless.
<!-- Directory.Packages.props -->
<PackageVersion Include="Microsoft.Maui.DevFlow.Agent" Version="<current-version>" />
<!-- App.csproj -->
<PackageReference Include="Microsoft.Maui.DevFlow.Agent" />
If the repo does not use Central Package Management, put the version on the PackageReference.
For standard MAUI:
using Microsoft.Maui.DevFlow.Agent;
// inside CreateMauiApp(), before return builder.Build();
#if DEBUG
builder.AddMauiDevFlowAgent();
#endif
For MAUI + Blazor WebView:
using Microsoft.Maui.DevFlow.Agent;
using Microsoft.Maui.DevFlow.Blazor;
// inside CreateMauiApp(), before return builder.Build();
#if DEBUG
builder.AddMauiDevFlowAgent();
builder.AddMauiBlazorDevFlowTools();
#endif
For GTK, use the .Gtk namespaces and packages. GTK apps also need to start the agent after app activation, for example app.StartDevFlowAgent() in the platform app activation flow.
For Mac Catalyst, ensure the Debug entitlements allow the in-app HTTP server:
<key>com.apple.security.network.server</key>
<true/>
MauiProgram.cs registers DevFlow only in Debug builds.com.apple.security.network.server.dotnet build succeeds.maui devflow list.maui devflow ui tree --depth 1 returns a visual tree.references/package-selection.md for package/flavor details.references/mauiprogram-registration.md for registration patterns.Source: yurkinh/Plugin.Maui.Calendar — distributed by TomeVault.