Close
Angular React Web Components Blazor

Ignite UI for Angular Agent Skills

Ignite UI for Angular ships with Agent Skills - structured knowledge files that teach AI coding assistants (GitHub Copilot, Cursor, Windsurf, Claude, Gemini CLI, JetBrains Junie, etc.) how to work with Ignite UI for Angular. These skill files provide context-aware guidance on components, grids, data operations, and theming, enabling your AI assistant to generate accurate, idiomatic code that follows best practices.

The AI tooling landscape is evolving rapidly. Skill discovery locations and distribution options may change as tools and IDEs are updated. Always consult the official documentation for your specific tool or agent for the latest information.

Available Skills

The skill files live in the skills/ directory of the Ignite UI for Angular repository:

SkillPathDescription
Components & Layoutskills/igniteui-angular-components/SKILL.mdStandalone components, form controls, overlays, layout
Data Gridsskills/igniteui-angular-grids/SKILL.mdGrid, Tree Grid, Hierarchical Grid, Pivot Grid, sorting, filtering, grouping, paging, remote data
Theming & Stylingskills/igniteui-angular-theming/SKILL.mdPalettes, typography, elevations, component themes, MCP server
Generate From Image Designskills/igniteui-angular-generate-from-image-design/SKILL.mdBuild Angular apps from screenshots, mockups, and wireframes using Ignite UI components

Starting with Ignite UI for Angular 21.1.0, these skills are automatically discovered when placed in your agent’s skills path (e.g., .claude/skills, .agents/skills, .cursor/rules/). This release ships with an optional migration to add these skills to your project automatically.

Skill Locations

Each AI coding tool discovers skills from specific directories. Place your skill files in the appropriate location so your AI assistant can find and use them automatically. The general .agents/skills/ convention is supported across multiple tools, while each tool also has its own specific directories.

General (.agents/skills/)

The .agents/skills/ directory is a cross-agent convention supported by multiple tools, including VS Code with Copilot, OpenAI Codex, Cursor, Gemini CLI, Antigravity, and Windsurf. Copy the skill directories into .agents/skills/ in your project root:

.agents/
  skills/
    igniteui-angular-components/
      SKILL.md
    igniteui-angular-grids/
      SKILL.md
    igniteui-angular-theming/
      SKILL.md
    igniteui-angular-generate-from-image-design/
      SKILL.md

For user-level (global) skills available across all projects, use ~/.agents/skills/ instead.

GitHub Copilot

GitHub Copilot discovers skills from:

ScopeLocation
Project.github/skills/, .claude/skills/
Personal~/.copilot/skills/, ~/.claude/skills/ (Copilot coding agent and GitHub Copilot CLI only)

Tip: In VS Code, these locations also include the general .agents/skills/ and ~/.agents/skills/ and you can configure additional skill locations using the chat.agentSkillsLocations setting.

Claude

Claude discovers skills from:

ScopeLocation
Project.claude/skills/
Personal~/.claude/skills/

Cursor

Cursor discovers skills from:

ScopeLocation
Project.agents/skills/, .cursor/skills/
User (global)~/.cursor/skills/

Gemini CLI and Antigravity

Gemini CLI and Antigravity discover skills from:

ScopeLocation
Workspace.gemini/skills/, .agents/skills/
User~/.gemini/skills/, ~/.agents/skills/

Tip: Use the /skills slash command in Gemini CLI to view and manage installed skills.

Junie (JetBrains IDEs)

Junie discovers skills from:

ScopeLocation
Project.junie/skills/
User~/.junie/skills/

Windsurf

Windsurf discovers skills from:

ScopeLocation
Workspace.windsurf/skills/, .agents/skills/
Global~/.codeium/windsurf/skills/, ~/.agents/skills/

Installing Skills

Use one of the options below to download and place the skill files into the appropriate skill location for your AI assistant.

Option A - Use the Ignite UI CLI

The ai-config command configures MCP servers, copies framework-specific skill files into each agent’s skills directory, and sets up instruction files - all in a single step. Use --assistants to choose which coding assistants receive MCP config and --agents to choose which agents receive skill files. Existing files are only updated if their content has changed. If no parameters are provided, the command enters interactive mode, prompting you to select assistants and agents. For available options, refer to the table below.

ig ai-config --assistants generic --agents claude

Use --agents with multiple values to target several agents at once:

ig ai-config --assistants generic vscode --agents claude copilot cursor
FlagValuesDefault
--assistantsgeneric, vscode, cursor, gemini, junie, nonePrompted interactively
--agentsgeneric, claude, copilot, cursor, codex, windsurf, gemini, junie, nonePrompted interactively

Using Angular Schematics:

ng generate @igniteui/angular-schematics:ai-config --assistants cursor --agents claude copilot

This also registers the @angular/cli MCP server alongside the Ignite UI servers.

If you installed Ignite UI for Angular manually and want to copy skills without running ai-config, the skill files are also available under node_modules. To copy them into your project (e.g. into .agents/skills/), run:

macOS / Linux / Windows (PowerShell)

cp -r node_modules/igniteui-angular/skills/. .agents/skills/

Windows (Command Prompt)

robocopy node_modules\igniteui-angular\skills .agents\skills /E

Or copy individual skill directories as needed:

macOS / Linux / Windows (PowerShell)

cp -r node_modules/igniteui-angular/skills/igniteui-angular-components .agents/skills/
cp -r node_modules/igniteui-angular/skills/igniteui-angular-grids .agents/skills/
cp -r node_modules/igniteui-angular/skills/igniteui-angular-theming .agents/skills/
cp -r node_modules/igniteui-angular/skills/igniteui-angular-generate-from-image-design .agents/skills/

Windows (Command Prompt)

robocopy node_modules\igniteui-angular\skills\igniteui-angular-components .agents\skills\igniteui-angular-components /E
robocopy node_modules\igniteui-angular\skills\igniteui-angular-grids .agents\skills\igniteui-angular-grids /E
robocopy node_modules\igniteui-angular\skills\igniteui-angular-theming .agents\skills\igniteui-angular-theming /E
robocopy node_modules\igniteui-angular\skills\igniteui-angular-generate-from-image-design .agents\skills\igniteui-angular-generate-from-image-design /E

Option B - Use the GitHub CLI

The GitHub CLI can be used to download skill files directly from the Ignite UI for Angular repository. Run the following commands in your project root to start the installation process:

gh skill install IgniteUI/igniteui-angular

You will be asked to select which skills to install and the target Agents for the skill files in your project. The CLI will then download and place the selected skill according to the chosen Agents.

To update skills later, run the following command:

gh skill update IgniteUI/igniteui-angular

Option C - Use the gemini skills CLI

The gemini skills install command installs skills directly from a Git repository. It supports two scopes:

  • User scope (default) - installs skills globally for your user account, making them available across all projects. Skills are placed in ~/.gemini/skills/ or ~/.agents/skills/.
  • Workspace scope - installs skills locally into the current project directory under .agents/skills/, scoping them to that project only.

Install to user scope (default):

gemini skills install https://github.com/IgniteUI/igniteui-angular.git --path skills/igniteui-angular-components
gemini skills install https://github.com/IgniteUI/igniteui-angular.git --path skills/igniteui-angular-grids
gemini skills install https://github.com/IgniteUI/igniteui-angular.git --path skills/igniteui-angular-theming
gemini skills install https://github.com/IgniteUI/igniteui-angular.git --path skills/igniteui-angular-generate-from-image-design

Install to workspace scope:

gemini skills install --scope workspace https://github.com/IgniteUI/igniteui-angular.git --path skills/igniteui-angular-components
gemini skills install --scope workspace https://github.com/IgniteUI/igniteui-angular.git --path skills/igniteui-angular-grids
gemini skills install --scope workspace https://github.com/IgniteUI/igniteui-angular.git --path skills/igniteui-angular-theming
gemini skills install --scope workspace https://github.com/IgniteUI/igniteui-angular.git --path skills/igniteui-angular-generate-from-image-design

Once installed, the skill files are available in the respective location and will be automatically discovered by compatible AI assistants.

Option D - Use the npx skills CLI

The skills CLI is an interactive tool that downloads and installs skills directly into your project. Run the following command in your project root:

npx skills add IgniteUI/igniteui-angular

The CLI will guide you through a series of prompts to:

  1. Select which skills to install (components, theming, etc.).
  2. Choose the target location for the skill files in your project (e.g. .agents/skills/, .github/skills/).
  3. Download and write the selected skill files automatically.

Once complete, the skills are ready to use - no manual file copying required.

Note: Requires Node.js and an internet connection. The command fetches the latest skill files from the IgniteUI/igniteui-angular repository.


Theming MCP Server

The Theming skill includes setup instructions for the igniteui-theming MCP server, which gives AI assistants access to live theming tools such as palette generation and component theme scaffolding. See the Theming skill file for configuration steps for VS Code, Cursor, Claude Desktop, and JetBrains IDEs.

For more information on the Theming MCP, refer to the Ignite UI Theming MCP documentation.

Additional Resources



Our community is active and always welcoming to new ideas.