Ignite UI for React Agent Skills
Ignite UI for React 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 React. 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.
Note
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 React repository:
| Skill | Path | Description |
|---|---|---|
| Components | skills/igniteui-react-components/SKILL.md |
Identify the right components, install, import, and use them - JSX patterns, event handling, refs, forms, TypeScript |
| Theming & Styling | skills/igniteui-react-customize-theme/SKILL.md |
Palettes, typography, elevations, component themes, MCP server |
| Optimization | skills/igniteui-react-optimize-bundle-size/SKILL.md |
Ensuring best practices for tree shaking to optimize bundle size |
| Generate From Image Design | skills/igniteui-react-generate-from-image-design/SKILL.md |
Build React apps from screenshots, mockups, and wireframes using Ignite UI components |
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-react-components/
SKILL.md
igniteui-react-customize-theme/
SKILL.md
igniteui-react-optimize-bundle-size/
SKILL.md
igniteui-react-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:
| Scope | Location |
|---|---|
| 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 thechat.agentSkillsLocationssetting.
Claude
Claude discovers skills from:
| Scope | Location |
|---|---|
| Project | .claude/skills/ |
| Personal | ~/.claude/skills/ |
Cursor
Cursor discovers skills from:
| Scope | Location |
|---|---|
| Project | .agents/skills/, .cursor/skills/ |
| User (global) | ~/.cursor/skills/ |
Gemini CLI and Antigravity
Gemini CLI and Antigravity discover skills from:
| Scope | Location |
|---|---|
| Workspace | .gemini/skills/, .agents/skills/ |
| User | ~/.gemini/skills/, ~/.agents/skills/ |
Tip: Use the
/skillsslash command in Gemini CLI to view and manage installed skills.
Junie (JetBrains IDEs)
Junie discovers skills from:
| Scope | Location |
|---|---|
| Project | .junie/skills/ |
| User | ~/.junie/skills/ |
Windsurf
Windsurf discovers skills from:
| Scope | Location |
|---|---|
| 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
| Flag | Values | Default |
|---|---|---|
--assistants |
generic, vscode, cursor, gemini, junie, none |
Prompted interactively |
--agents |
generic, claude, copilot, cursor, codex, windsurf, gemini, junie, none |
Prompted interactively |
Note
If you installed Ignite UI for React 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-react/skills/. .agents/skills/
Windows (Command Prompt)
robocopy node_modules\igniteui-react\skills .agents\skills /E
Or copy individual skill directories as needed:
macOS / Linux / Windows (PowerShell)
cp -r node_modules/igniteui-react/skills/igniteui-react-components .agents/skills/
cp -r node_modules/igniteui-react/skills/igniteui-react-customize-theme .agents/skills/
cp -r node_modules/igniteui-react/skills/igniteui-react-optimize-bundle-size .agents/skills/
cp -r node_modules/igniteui-react/skills/igniteui-react-generate-from-image-design .agents/skills/
Windows (Command Prompt)
robocopy node_modules\igniteui-react\skills\igniteui-react-components .agents\skills\igniteui-react-components /E
robocopy node_modules\igniteui-react\skills\igniteui-react-customize-theme .agents\skills\igniteui-react-customize-theme /E
robocopy node_modules\igniteui-react\skills\igniteui-react-optimize-bundle-size .agents\skills\igniteui-react-optimize-bundle-size /E
robocopy node_modules\igniteui-react\skills\igniteui-react-generate-from-image-design .agents\skills\igniteui-react-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 React repository. Run the following commands in your project root to start the installation process:
gh skill install IgniteUI/igniteui-react
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-react
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-react.git --path skills/igniteui-react-components
gemini skills install https://github.com/IgniteUI/igniteui-react.git --path skills/igniteui-react-customize-theme
gemini skills install https://github.com/IgniteUI/igniteui-react.git --path skills/igniteui-react-optimize-bundle-size
gemini skills install https://github.com/IgniteUI/igniteui-react.git --path skills/igniteui-react-generate-from-image-design
Install to workspace scope:
gemini skills install --scope workspace https://github.com/IgniteUI/igniteui-react.git --path skills/igniteui-react-components
gemini skills install --scope workspace https://github.com/IgniteUI/igniteui-react.git --path skills/igniteui-react-customize-theme
gemini skills install --scope workspace https://github.com/IgniteUI/igniteui-react.git --path skills/igniteui-react-optimize-bundle-size
gemini skills install --scope workspace https://github.com/IgniteUI/igniteui-react.git --path skills/igniteui-react-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-react
The CLI will guide you through a series of prompts to:
- Select which skills to install (components, theming, etc.).
- Choose the target location for the skill files in your project (e.g.
.agents/skills/,.github/skills/). - 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-react 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.