Uno Toolkit Getting Started — Agent Skill
Workflow
Docs lookup: call
uno_platform_docs_search(...)first, thenuno_platform_docs_fetch(sourcePath="…")using thesourcePathfield from a result (a relative.mdpath; add the result'sanchorfor a section). Never pass a URL, a.htmllink, or a hand-built path.
Step 1: Fetch the Getting Started Documentation
uno_platform_docs_search("Uno Toolkit getting started install UnoFeatures ToolkitResources")
Primary documentation pages:
- Getting Started (base Toolkit):
external/uno.toolkit.ui/doc/getting-started.md - Material Toolkit Getting Started:
external/uno.toolkit.ui/doc/material-getting-started.md
Fetch the getting started page:
uno_platform_docs_fetch(sourcePath="external/uno.toolkit.ui/doc/getting-started.md")
Step 2: For Material Design Toolkit
If user needs Material Design styled toolkit controls:
uno_platform_docs_fetch(sourcePath="external/uno.toolkit.ui/doc/material-getting-started.md")
Step 3: For Available Controls and Helpers
To see the full list of Toolkit controls and helpers:
uno_platform_docs_fetch(sourcePath="external/uno.toolkit.ui/doc/controls-styles.md")
Key Principles (Stable)
- Add
Toolkitto<UnoFeatures>in the project file - For Material styling, use
MaterialToolkitThemein App.xaml (replaces separate MaterialTheme + ToolkitResources) - For Cupertino styling, use
CupertinoToolkitTheme - XAML namespace:
xmlns:utu="using:Uno.Toolkit.UI" - CLI:
dotnet new unoapp -o MyApp -toolkitto create a new project with Toolkit
Related Skills
- [[uno-toolkit-material-theme]] — MaterialToolkitTheme configuration
- [[uno-toolkit-cupertino-theme]] — CupertinoToolkitTheme configuration
- [[uno-themes-material]] — Material theme installation