Searches for icons in the Kendo UI for Angular icon library. Use when the user needs an icon for a specific action, concept, or UI element, or asks about available icons. Trigger on "find icon", "what icon", "icon for", "search icons", "Kendo icons", "SVG icon", "icon library", or when implementing icon-only buttons, decorative icons, or navigation icons.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kendo-angular-mcp-plugin:kendo-angular-iconThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use the `kendo_icon_assistant` MCP tool to search for icons by name, purpose, or keyword.
Use the kendo_icon_assistant MCP tool to search for icons by name, purpose, or keyword.
Tool call:
kendo_icon_assistant({
query="<Description of the icon purpose or keyword>",
limit=0.3 // Adjust based on expected count: 0.1 for ~1 icon, 0.3 for a few icons, 1.0 for many
})
Examples:
kendo_icon_assistant({
query="save document",
limit=0.3
})
kendo_icon_assistant({
query="user profile avatar account",
limit=0.3
})
kendo_icon_assistant({
query="navigation arrow chevron",
limit=0.5
})
Prioritize SVG icons over font icons.
Ensure the required packages are installed:
npm install @progress/kendo-svg-icons @progress/kendo-angular-icons
Use the kendo-svg-icon component with KENDO_ICONS from @progress/kendo-angular-icons:
import { Component } from "@angular/core";
import { KENDO_ICONS } from "@progress/kendo-angular-icons";
import { paperclipIcon } from "@progress/kendo-svg-icons";
@Component({
selector: "my-app",
standalone: true,
imports: [KENDO_ICONS],
template: `
<kendo-svg-icon [icon]="icons.paperclip"></kendo-svg-icon>
`,
})
export class AppComponent {
public icons = { paperclip: paperclipIcon };
}
You can also call kendo_component_assistant for the SVGIcon component to get full API reference and docs:
kendo_component_assistant({
query="How to use the SVGIcon component with custom icons and size options?",
component="SVGIcon"
})
If SVG is not an option, use font icons. Add the font icon stylesheet to index.html:
<link rel="stylesheet" href="https://unpkg.com/@progress/kendo-font-icons/dist/index.css" />
import { Component } from "@angular/core";
import { KENDO_ICONS } from "@progress/kendo-angular-icons";
@Component({
selector: "my-app",
standalone: true,
imports: [KENDO_ICONS],
template: `
<kendo-icon name="paperclip"></kendo-icon>
`,
})
export class AppComponent {}
Call kendo_component_assistant for the Icon component to get full API reference and docs:
kendo_component_assistant({
query="How to use the Icon component with font icons?",
component="Icon"
})
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-angular-plugin