Retrieves documentation, API reference, and code examples for KendoReact components. Use when the user asks about a specific Kendo component, needs API reference, asks how to use a component, wants code examples, or mentions component names like DataGrid, Chart, Scheduler, DatePicker, DropDownList, Form, Button, Dialog, Editor, etc. Trigger on "how do I use", "what props does", "KendoReact component example", "component docs", "/kendo", "/ask_kendo", "@kendo". One call per component — do not batch multiple components into one query.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kendo-react-mcp-plugin:kendo-react-componentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Before implementing any component, read [common-guidelines.md](common-guidelines.md) for the foundational rules that apply to every KendoReact implementation (package installation, function component patterns).
Before implementing any component, read common-guidelines.md for the foundational rules that apply to every KendoReact implementation (package installation, function component patterns).
Certain components have additional guidelines that must be consulted:
| Component | Read before implementing |
|---|---|
DataGrid / Grid | datagrid-guidelines.md — deprecated props and modern replacements |
Editor | editor-guidelines.md — EditorTools import pattern |
SmartGrid / AI-enhanced Grid | smart-grid-guidelines.md — GridToolbarAIAssistant setup |
Note:
Gridis an alias forDataGrid. Always useDataGriddocumentation and apply the rules in datagrid-guidelines.md.
Use the kendo_component_assistant MCP tool to retrieve accurate API reference and documentation for any KendoReact component.
Tool call:
kendo_component_assistant({
query="<Specific question about the component, its features, or configuration>",
component="<ComponentName>"
})
Examples:
kendo_component_assistant({
query="How to implement paging and sorting in DataGrid?",
component="DataGrid"
})
kendo_component_assistant({
query="How to configure the DatePicker with custom formats and min/max dates?",
component="DatePicker"
})
kendo_component_assistant({
query="How to implement multi-column DropDownList?",
component="MultiColumnComboBox"
})
DataGrid, not Grid; DatePicker, not date picker)Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub telerik/ai-plugins --plugin kendo-react-plugin