Telerik UI for Blazor — Execution Plan
IMPORTANT — MCP Tools: All
telerik_*tools referenced in this plan are provided by the Telerik.Blazor.MCP MCP server. They are NOT deferred tools and must NOT be searched for withtool_search. Call them directly by name once the MCP server is running. If any tool is unavailable, the MCP server may not be started — inform the user to start it via the notification banner in their editor.
Current Goal:
$ARGUMENTS
Step 1: Assess the Request
Prompt Enrichment Gate (BLOCKING — do this first, before anything else):
- Decide whether the user's request needs enrichment (vague, no layout/data/component specifics, or multi-view app scope).
- If enrichment is needed: read ../prompt-enrichment/SKILL.md and follow that skill's workflow and supporting references exactly.
- STOP. Do not read any project files, phase files, or call any tools until the enrichment skill has sent the brief to the user and the user has replied with confirmation.
- Only after the user confirms the brief may you continue with the phase assessment and implementation below.
If the request is already fully specified (specific components, data fields, layout, content — nothing vague), skip enrichment and proceed directly to phase assessment.
Before executing any phase, assess the user's request and decide which conditional phases apply. Use the table below as your guide, then load only the relevant supporting files.
| Phase | Include when | Supporting file |
|---|---|---|
| Component Integration | API reference or component docs are needed — default yes unless purely layout/theming work | phase-components.md |
| Layout Foundation | Page structure, sections, or explicit layout work is requested | phase-layout.md |
| Responsive Behavior | Layout is needed AND responsive behavior across devices is required | phase-responsive.md |
| Custom Theming | Include when the request explicitly mentions colors, brand, visual style, mood, aesthetic, dark/light mode, or theme preferences. Skip for small isolated additions, or when the domain gives no meaningful styling signal. | phase-theming.md |
| Iconography | Icons are referenced or clearly needed for navigation/actions | phase-icons.md |
Also read ux-guidelines.md for UX/UI design defaults that apply throughout the entire implementation.
Requirements Summary:
- Framework: Blazor
- Component Library: Telerik UI for Blazor — use ONLY Telerik components. Use
telerik_component_assistantfor all docs and code snippets. Do not substitute another tool even if one appears relevant. - Layout Mode: Kendo Design System CSS Utilities — use ONLY Kendo utility classes for all styling, layout, spacing, and positioning. Avoid custom CSS, inline styles, or other CSS framework classes.
- Accessibility: WCAG 2.2 Level AA. WCAG guidelines are loaded in Phase 0 from the supporting file. Call
telerik_accessibility_assistantwithincludeGeneralGuidelines=falseon ALL calls. - Validation: Use
telerik_validator_assistantafter every code generation step. Fix all errors before continuing. For errors found, usetelerik_component_assistantto find the correct members. - Razor Note: Escape
@as@@in.razorfiles (e.g.,@@media, CDN URLs containing@@progress/...).
Phase 0: CRITICAL — Accessibility Foundation (FIRST IMPLEMENTATION PHASE)
Step 1 — Load WCAG 2.2 Level AA guidelines:
Read ../telerik-blazor-accessibility/wcag-guidelines.md. These apply to ALL components throughout the entire implementation.
Step 2 — Retrieve component-specific accessibility information:
MANDATORY: Before implementing ANY components, call the accessibility assistant for each primary component you plan to use. The WCAG general guidelines are already loaded above, so always use includeGeneralGuidelines=false.
First component:
telerik_accessibility_assistant({
query="What are the accessibility requirements for [COMPONENT_NAME]?",
component="[COMPONENT_NAME]",
includeGeneralGuidelines=false
})
Each additional component:
telerik_accessibility_assistant({
query="What are the accessibility features and requirements for [COMPONENT_NAME]? Include ARIA attributes, keyboard navigation, and screen reader support.",
component="[COMPONENT_NAME]",
includeGeneralGuidelines=false
})
Conditional Phases
Load and execute only the files that matched your Step 1 assessment:
- Component docs needed → read phase-components.md
- Layout needed → read phase-layout.md
- Layout AND responsive needed → also read phase-responsive.md
- Custom theming needed → read phase-theming.md
- Icons needed → read phase-icons.md
Final Phase: Validation & Quality Assurance
Read validation-steps.md and execute all validation steps before considering the task complete.
✅ Completion Checklist
Before considering the task complete, ensure:
- Accessibility guidelines retrieved and applied to all components
- All Telerik UI for Blazor components validated using
telerik_validator_assistant - Kendo Design System utilities applied correctly (if layout phase ran)
- Custom theme implemented and applied (if theming phase ran)
- Icons properly integrated (if icons phase ran)
- Responsive behavior works across all devices (if responsive phase ran)
- All validation checks passed
Remember: Quality over speed. Validate each step before moving forward.