Skip to content

feat(skills): add igniteui-wc-generate-from-image-design skill#2198

Merged
rkaraivanov merged 6 commits intomasterfrom
ganastasov/add-screenshot-to-app-skill
Apr 22, 2026
Merged

feat(skills): add igniteui-wc-generate-from-image-design skill#2198
rkaraivanov merged 6 commits intomasterfrom
ganastasov/add-screenshot-to-app-skill

Conversation

@georgianastasov
Copy link
Copy Markdown
Contributor

Description

Adds a new igniteui-wc-generate-from-image-design skill for building Ignite UI Web Components views from screenshots, mockups, and wireframes.
The skill provides a structured image-to-implementation workflow, Web Components-specific component mapping, and focused guidance for theming, package selection, registration, and visual refinement.

Included

  • New igniteui-wc-generate-from-image-design skill
  • Web Components-specific component-mapping.md
  • Web Components-specific gotchas.md
  • README update to surface the new skill in the repo skill index

Why

This adds a dedicated workflow for turning design images into working Ignite UI Web Components UI with guidance that is consistent with the repo’s component model and theming approach.
It also makes this workflow easier to discover and reuse for screenshot-to-view tasks across Web Components projects.

Type of Change

  • Bug fix (non-breaking change that fixes an issue)
  • New feature (non-breaking change that adds functionality)
  • Breaking change (fix or feature that causes existing functionality to change)
  • Documentation update
  • Refactoring (code improvements without functional changes)

Checklist

  • My code follows the project's coding standards
  • I have tested my changes locally
  • I have updated documentation if needed
  • Breaking changes are documented in the description

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds a new end-user “skill” that guides agents through implementing Ignite UI Web Components views from screenshots/mockups, including supporting references and indexing it in the skills catalog.

Changes:

  • Added the igniteui-wc-generate-from-image-design skill with an image-to-implementation workflow and theming guidance.
  • Added Web Components-specific reference docs for component mapping and common gotchas.
  • Updated skills/README.md to include the new skill in the skills index.

Reviewed changes

Copilot reviewed 4 out of 4 changed files in this pull request and generated 5 comments.

File Description
skills/igniteui-wc-generate-from-image-design/SKILL.md New skill with the end-to-end workflow for generating a view from a design image.
skills/igniteui-wc-generate-from-image-design/references/component-mapping.md Reference mapping from common UI patterns to Ignite UI Web Components + package guidance.
skills/igniteui-wc-generate-from-image-design/references/gotchas.md Reference list of theming/registration/component pitfalls to avoid during implementation.
skills/README.md Surfaces the new skill in the repo’s skills table and usage examples.

Comment thread skills/igniteui-wc-generate-from-image-design/references/gotchas.md Outdated
Comment thread skills/igniteui-wc-generate-from-image-design/references/component-mapping.md Outdated
Comment thread skills/igniteui-wc-generate-from-image-design/SKILL.md Outdated
Comment thread skills/igniteui-wc-generate-from-image-design/SKILL.md
Comment thread skills/igniteui-wc-generate-from-image-design/SKILL.md Outdated
georgianastasov and others added 3 commits April 21, 2026 21:09
…nent-mapping.md

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…as.md

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Comment on lines +26 to +32
```scss
// BAD
@include typography($font-family: "Primary Font", "Fallback Font", sans-serif);

// GOOD
@include typography($font-family: ("Primary Font", "Fallback Font", sans-serif));
```
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sass is not used in igniteui-webcomponents

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Correct, it's not. Are those skills supposed to work for contributors, or for users of the Ignite UI for Web Components framework?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@simeonoff They’re intended for users of the Ignite UI for Web Components framework, not contributors. The reason is that they’re designed to work together with the MCP. When a new project is created through the CLI, these skills are added automatically along with the MCP configuration.

Comment on lines +152 to +162
```scss
@use 'igniteui-theming' as *;

$dark-palette: palette(
$primary: <resolved-primary-color>,
$secondary: <resolved-secondary-color>,
$surface: <resolved-surface-color>
);

@include palette($dark-palette, $schema: <resolved-dark-schema>);
```
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sass examples should go away in igniteui-webcomponents. Including @simeonoff for confirmation

@rkaraivanov rkaraivanov merged commit 4bd86b2 into master Apr 22, 2026
7 checks passed
@rkaraivanov rkaraivanov deleted the ganastasov/add-screenshot-to-app-skill branch April 22, 2026 14:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants