Add skill for identifying icons from Figma designs#33
Add skill for identifying icons from Figma designs#33jeff-phillips-18 wants to merge 1 commit intopatternfly:mainfrom
Conversation
| @@ -0,0 +1,412 @@ | |||
| --- | |||
There was a problem hiding this comment.
At 412 lines this is well over the 200-line guideline — could the output format templates (Brief and Detailed sections) be extracted to reference files like you did with common-icons.md? That'd bring the core instructions way down.
| name: figma-icon-finder | ||
| description: Identifies PatternFly icons used in Figma mockups and provides the correct import statements for React components. Works with any PatternFly-based application. | ||
| argument-hint: "[path/to/figma-screenshot.png] or [figma-url] or use @file for autocomplete" | ||
| allowed-tools: Read, WebFetch, AskUserQuestion |
There was a problem hiding this comment.
allowed-tools and argument-hint in frontmatter are Claude Code specific — Cursor would ignore these. Same with the AskUserQuestion tool reference on line 120. Could these be rephrased to be tool-agnostic (e.g., "ask the user" instead of "use the AskUserQuestion tool")?
✅ Actions performedFull review triggered. |
📝 WalkthroughWalkthroughIntroduces documentation for a new Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~15 minutes 🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
@coderabbitai full review |
✅ Actions performedFull review triggered. |
|
@coderabbitai review |
✅ Actions performedReview triggered.
|
There was a problem hiding this comment.
Actionable comments posted: 2
♻️ Duplicate comments (1)
plugins/pf-figma/skills/figma-icon-finder/SKILL.md (1)
4-5:⚠️ Potential issue | 🟠 MajorMake the skill tool-agnostic (currently tied to Claude-specific capabilities/tools).
Line 4-5 (
argument-hint,allowed-tools), Line 38 (“Since Claude is multimodal”), and Line 119+ (“use the AskUserQuestion tool”) couple behavior to a specific runtime. This breaks the requirement that the same skill works in both Claude Code and Cursor.Suggested direction
-argument-hint: "[path/to/figma-screenshot.png] or [figma-url] or use `@file` for autocomplete" -allowed-tools: Read, WebFetch, AskUserQuestion +# Keep frontmatter tool-neutral; put optional invocation examples in body text. -Read the image file at the provided path. Since Claude is multimodal, you will be able to see the image visually. +Read the image file at the provided path and analyze it with available vision capabilities. -**Always ask the user two questions** using the AskUserQuestion tool: +**Always ask the user two questions** before generating the report:As per coding guidelines, “Skills must be tool-agnostic — they run in both Claude Code and Cursor. Avoid referencing a specific tool.”
Also applies to: 38-39, 119-137
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@plugins/pf-figma/skills/figma-icon-finder/SKILL.md` around lines 4 - 5, Update SKILL.md to remove runtime-specific references: replace the argument-hint and allowed-tools entries so they don’t reference Claude-specific tooling (change argument-hint to a generic example like "[path/to/figma-screenshot.png] or [figma-url] or use `@file` for autocomplete" if needed but avoid runtime names, and change allowed-tools to generic tool names such as "Read, WebFetch, AskUser" or simply "Read, WebFetch, InteractivePrompt"). Also replace the sentence that says "Since Claude is multimodal" with a neutral phrase like "In multimodal runtimes" and change any occurrences of "AskUserQuestion" or other Claude-specific tool names (lines ~119+) to the generic interactive tool name used above (e.g., "AskUser" or "InteractivePrompt") so the skill is tool-agnostic across runtimes.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@plugins/pf-figma/skills/figma-icon-finder/references/common-icons.md`:
- Around line 7-153: Replace the five non-exported icon identifiers with the
correct PatternFly exports: change AddCircleIcon to AddCircleOIcon, DeleteIcon
to TrashIcon, SlidersIcon to SlidersHIcon, SparklesIcon to HandSparklesIcon, and
VolumeSlashIcon to either VolumeMuteIcon or VolumeOffIcon; update all
occurrences in the skill docs and reference table (e.g., the SKILL.md examples
and common-icons.md entries) and adjust any import statements/usages to import
these exact exported symbol names so generated code references only valid
PatternFly exports.
In `@plugins/pf-figma/skills/figma-icon-finder/SKILL.md`:
- Line 3: Update the SKILL.md frontmatter `description` so it includes an
explicit trigger context phrase (e.g., start with or append "Use when..." or
"Use when you need to...") so the skill loader can reliably detect when to
activate; edit the `description` string shown in this file (the PatternFly/Figma
icon capability description) to include that trigger language while keeping the
existing capability text intact.
---
Duplicate comments:
In `@plugins/pf-figma/skills/figma-icon-finder/SKILL.md`:
- Around line 4-5: Update SKILL.md to remove runtime-specific references:
replace the argument-hint and allowed-tools entries so they don’t reference
Claude-specific tooling (change argument-hint to a generic example like
"[path/to/figma-screenshot.png] or [figma-url] or use `@file` for autocomplete" if
needed but avoid runtime names, and change allowed-tools to generic tool names
such as "Read, WebFetch, AskUser" or simply "Read, WebFetch,
InteractivePrompt"). Also replace the sentence that says "Since Claude is
multimodal" with a neutral phrase like "In multimodal runtimes" and change any
occurrences of "AskUserQuestion" or other Claude-specific tool names (lines
~119+) to the generic interactive tool name used above (e.g., "AskUser" or
"InteractivePrompt") so the skill is tool-agnostic across runtimes.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Run ID: 794efe52-e435-4cba-9b74-08921632a659
📒 Files selected for processing (2)
plugins/pf-figma/skills/figma-icon-finder/SKILL.mdplugins/pf-figma/skills/figma-icon-finder/references/common-icons.md
| | Icon Name | Visual Description | Common Usage | | ||
| |-----------|-------------------|--------------| | ||
| | `PlusIcon` | Plus sign (+) | Add item, create new resource | | ||
| | `PlusCircleIcon` | Plus sign in a circle | Add action button | | ||
| | `TrashIcon` | Trash bin/garbage can | Delete, remove resource | | ||
| | `EditIcon` | Pencil or pen icon | Edit mode, modify | | ||
| | `PencilAltIcon` | Alternate pencil icon | Edit action | | ||
| | `CopyIcon` | Two overlapping rectangles | Copy to clipboard, duplicate | | ||
| | `UploadIcon` | Arrow pointing up into box | Upload file, import | | ||
| | `DownloadIcon` | Arrow pointing down from box | Download, export | | ||
| | `SearchIcon` | Magnifying glass | Search, find | | ||
| | `FilterIcon` | Funnel shape | Filter results, refine view | | ||
| | `SyncIcon` | Circular arrows | Refresh, sync, reload | | ||
| | `UndoIcon` | Arrow curving left | Undo action | | ||
| | `RedoIcon` | Arrow curving right | Redo action | | ||
| | `SaveIcon` | Floppy disk icon | Save changes | | ||
|
|
||
| ## Navigation Icons | ||
|
|
||
| | Icon Name | Visual Description | Common Usage | | ||
| |-----------|-------------------|--------------| | ||
| | `ArrowRightIcon` | Right-pointing arrow | Next, forward, navigate | | ||
| | `ArrowLeftIcon` | Left-pointing arrow | Back, previous | | ||
| | `ArrowUpIcon` | Up-pointing arrow | Scroll up, move up | | ||
| | `ArrowDownIcon` | Down-pointing arrow | Scroll down, move down | | ||
| | `ChevronRightIcon` | Right-pointing chevron (>) | Expand, next item | | ||
| | `ChevronLeftIcon` | Left-pointing chevron (<) | Collapse, previous item | | ||
| | `ChevronDownIcon` | Down-pointing chevron (v) | Expand dropdown, show more | | ||
| | `ChevronUpIcon` | Up-pointing chevron (^) | Collapse, show less | | ||
| | `AngleRightIcon` | Small right angle | Breadcrumb separator | | ||
| | `AngleDownIcon` | Small down angle | Dropdown indicator | | ||
| | `ExternalLinkAltIcon` | Arrow pointing out of box | External link, open in new window | | ||
| | `ExternalLinkSquareAltIcon` | Square with arrow | External resource link | | ||
| | `ExpandIcon` | Arrows pointing outward | Expand view, fullscreen | | ||
| | `CompressIcon` | Arrows pointing inward | Exit fullscreen, compress | | ||
| | `EllipsisVIcon` | Three vertical dots | More options menu | | ||
| | `EllipsisHIcon` | Three horizontal dots | More actions | | ||
|
|
||
| ## Status Icons | ||
|
|
||
| | Icon Name | Visual Description | Common Usage | | ||
| |-----------|-------------------|--------------| | ||
| | `CheckCircleIcon` | Check mark in circle | Success, completed, verified | | ||
| | `CheckIcon` | Simple check mark | Selected, enabled, confirmed | | ||
| | `TimesCircleIcon` | X in circle | Error, failed, closed | | ||
| | `TimesIcon` | Simple X | Close, dismiss, remove | | ||
| | `ExclamationCircleIcon` | Exclamation point in circle | Error, critical issue | | ||
| | `ExclamationTriangleIcon` | Exclamation in triangle | Warning, caution | | ||
| | `WarningTriangleIcon` | Triangle with exclamation | Warning state | | ||
| | `InfoCircleIcon` | Information 'i' in circle | Information, help text | | ||
| | `QuestionCircleIcon` | Question mark in circle | Help, tooltip, unknown | | ||
| | `BanIcon` | Circle with diagonal line | Blocked, prohibited, disabled | | ||
| | `InProgressIcon` | Circle with partial fill | In progress, loading | | ||
| | `PausedIcon` | Two vertical bars | Paused state | | ||
| | `PendingIcon` | Clock or hourglass | Pending, waiting | | ||
| | `UnknownIcon` | Question mark or dash | Unknown state | | ||
| | `ErrorCircleOIcon` | Outlined circle with X | Error (outlined variant) | | ||
|
|
||
| ## Resource/Object Icons | ||
|
|
||
| | Icon Name | Visual Description | Common Usage | | ||
| |-----------|-------------------|--------------| | ||
| | `CubeIcon` | 3D cube | Pod, container, resource | | ||
| | `FolderIcon` | Folder | Directory, namespace | | ||
| | `FolderOpenIcon` | Open folder | Expanded directory | | ||
| | `FileIcon` | Document/file | Generic file | | ||
| | `ImageIcon` | Picture frame | Image file | | ||
| | `DatabaseIcon` | Cylinder/database | Database resource | | ||
| | `ServerIcon` | Server/rack | Server, node | | ||
| | `CodeIcon` | Angle brackets (<>) | Code, YAML, config | | ||
| | `TerminalIcon` | Command prompt | Terminal, console | | ||
| | `ClockIcon` | Clock face | Time, schedule, history | | ||
| | `CalendarAltIcon` | Calendar | Date, schedule | | ||
| | `UserIcon` | Person silhouette | User, account | | ||
| | `UsersIcon` | Multiple people | Group, team | | ||
| | `KeyIcon` | Key | Secret, credentials, authentication | | ||
| | `LockIcon` | Locked padlock | Secured, encrypted, restricted | | ||
| | `LockOpenIcon` | Open padlock | Unlocked, accessible | | ||
| | `GlobeIcon` | Globe/world | Network, public, web | | ||
| | `NetworkWiredIcon` | Network nodes | Network, connectivity | | ||
| | `CloudIcon` | Cloud | Cloud service, storage | | ||
|
|
||
| ## Monitoring/Chart Icons | ||
|
|
||
| | Icon Name | Visual Description | Common Usage | | ||
| |-----------|-------------------|--------------| | ||
| | `MonitoringIcon` | Chart or graph | Monitoring dashboard | | ||
| | `ChartLineIcon` | Line graph | Metrics, trends | | ||
| | `ChartBarIcon` | Bar chart | Statistics, data | | ||
| | `ChartAreaIcon` | Area chart | Metrics over time | | ||
| | `ChartPieIcon` | Pie chart | Distribution, percentages | | ||
| | `TachometerAltIcon` | Speedometer/gauge | Performance, metrics | | ||
| | `BellIcon` | Bell | Notifications, alerts | | ||
| | `BellSlashIcon` | Bell with slash | Muted notifications | | ||
|
|
||
| ## Settings/Tools Icons | ||
|
|
||
| | Icon Name | Visual Description | Common Usage | | ||
| |-----------|-------------------|--------------| | ||
| | `CogIcon` | Gear/cog | Settings, configuration | | ||
| | `WrenchIcon` | Wrench | Tools, maintenance | | ||
| | `SlidersIcon` | Slider controls | Adjust settings, filters | | ||
| | `PaletteIcon` | Artist palette | Theme, customization | | ||
| | `PlugIcon` | Electrical plug | Plugin, integration | | ||
|
|
||
| ## Git/Version Control Icons | ||
|
|
||
| | Icon Name | Visual Description | Common Usage | | ||
| |-----------|-------------------|--------------| | ||
| | `GitAltIcon` | Git logo | Git repository | | ||
| | `GitlabIcon` | GitLab logo | GitLab integration | | ||
| | `GithubIcon` | GitHub logo | GitHub integration | | ||
| | `BitbucketIcon` | Bitbucket logo | Bitbucket integration | | ||
| | `CodeBranchIcon` | Git branch | Branch, version | | ||
|
|
||
| ## Misc Icons | ||
|
|
||
| | Icon Name | Visual Description | Common Usage | | ||
| |-----------|-------------------|--------------| | ||
| | `BookIcon` | Book | Documentation, guide | | ||
| | `BookOpenIcon` | Open book | Reading, documentation | | ||
| | `GripVerticalIcon` | Vertical grip dots | Drag handle (vertical) | | ||
| | `GripHorizontalIcon` | Horizontal grip dots | Drag handle (horizontal) | | ||
| | `MinusIcon` | Minus sign (-) | Remove, decrease, collapse | | ||
| | `MinusCircleIcon` | Minus in circle | Remove item, decrease | | ||
| | `EyeIcon` | Eye | View, show, visible | | ||
| | `EyeSlashIcon` | Eye with slash | Hide, invisible | | ||
| | `VolumeUpIcon` | Speaker with sound | Audio on, notifications on | | ||
| | `VolumeSlashIcon` | Speaker with slash | Muted, silent | | ||
| | `PrintIcon` | Printer | Print | | ||
| | `ShareAltIcon` | Share symbol | Share, export | | ||
| | `TagIcon` | Tag | Label, category | | ||
| | `StarIcon` | Star | Favorite, featured | | ||
| | `HeartIcon` | Heart | Like, favorite | | ||
| | `MapMarkerIcon` | Location pin | Location, place | | ||
| | `FlagIcon` | Flag | Mark, report | | ||
| | `HomeIcon` | House | Home, dashboard | | ||
| | `InboxIcon` | Inbox tray | Messages, items | | ||
| | `LayerGroupIcon` | Stacked layers | Layers, groups | | ||
| | `ListIcon` | Bulleted list | List view | | ||
| | `ThIcon` | Grid squares | Grid view, table | | ||
| | `PlayIcon` | Play triangle | Start, run, execute | | ||
| | `StopIcon` | Stop square | Stop, terminate | | ||
| | `MagicIcon` | Magic wand with sparkles | AI assistance, auto-generate | | ||
| | `SparklesIcon` | Sparkles/stars | AI-generated, enhanced | | ||
| | `RobotIcon` | Robot face | AI, automation | | ||
|
|
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
set -euo pipefail
# 1) Collect icon-like identifiers from the new skill docs
tmp_icons="$(mktemp)"
tmp_exports="$(mktemp)"
python - <<'PY' > "$tmp_icons"
import re, pathlib
files = [
"plugins/pf-figma/skills/figma-icon-finder/references/common-icons.md",
"plugins/pf-figma/skills/figma-icon-finder/SKILL.md",
]
icons=set()
for f in files:
text=pathlib.Path(f).read_text(encoding="utf-8")
for m in re.findall(r'`([A-Z][A-Za-z0-9]*Icon)`', text):
icons.add(m)
for i in sorted(icons):
print(i)
PY
# 2) Fetch latest exported icons typing surface from unpkg
# Try common declaration paths used by package builds.
url1="https://unpkg.com/@patternfly/react-icons@latest/dist/esm/icons/index.d.ts"
url2="https://unpkg.com/@patternfly/react-icons@latest/dist/js/icons/index.d.ts"
if curl -fsSL "$url1" -o "$tmp_exports"; then
:
else
curl -fsSL "$url2" -o "$tmp_exports"
fi
# 3) Parse exported names and diff
python - "$tmp_icons" "$tmp_exports" <<'PY'
import re, sys
icons_path, exports_path = sys.argv[1], sys.argv[2]
icons = {l.strip() for l in open(icons_path, encoding="utf-8") if l.strip()}
exports_txt = open(exports_path, encoding="utf-8").read()
# Handles forms like: export { default as PlusIcon } from './plus-icon';
exports = set(re.findall(r'default\s+as\s+([A-Z][A-Za-z0-9]*Icon)\b', exports_txt))
missing = sorted(icons - exports)
print("Total referenced icons:", len(icons))
print("Total exported icons parsed:", len(exports))
if missing:
print("\nReferenced but NOT found in exports:")
for m in missing:
print(" -", m)
sys.exit(2)
print("\nAll referenced icons were found in exports.")
PYRepository: patternfly/ai-helpers
Length of output: 1942
🏁 Script executed (no clone):
curl -fsSL "https://registry.npmjs.org/@patternfly/react-icons" | jq -r '.["dist-tags"].latest'
Length of output: 36
🏁 Script executed:
#!/bin/bash
# Check the files referenced in the review comment
ls -lh plugins/pf-figma/skills/figma-icon-finder/references/common-icons.md 2>/dev/null || echo "File not found"
ls -lh plugins/pf-figma/skills/figma-icon-finder/SKILL.md 2>/dev/null || echo "File not found"
# Count icons in the common-icons.md file to verify the count
grep -o '`[A-Z][A-Za-z0-9]*Icon`' plugins/pf-figma/skills/figma-icon-finder/references/common-icons.md 2>/dev/null | sort -u | wc -l || echo "0"Repository: patternfly/ai-helpers
Length of output: 285
🏁 Script executed (no clone):
#!/bin/bash
# Fetch the TypeScript definitions and examine the actual format
curl -fsSL "https://unpkg.com/@patternfly/react-icons@latest/dist/esm/icons/index.d.ts" 2>/dev/null | head -50
Length of output: 3725
🏁 Script executed (no clone):
#!/bin/bash
# Fetch complete TypeScript definitions and extract all icon exports
curl -fsSL "https://unpkg.com/@patternfly/react-icons@6.4.0/dist/esm/icons/index.d.ts" 2>/dev/null | \
grep -o 'export { [A-Za-z0-9]*Icon,' | \
sed 's/export { //' | sed 's/,//' | sort -u > /tmp/exported_icons.txt
wc -l /tmp/exported_icons.txt
head -20 /tmp/exported_icons.txt
Length of output: 352
🏁 Script executed:
#!/bin/bash
# Extract all icon references from skill files
grep -oh '`[A-Z][A-Za-z0-9]*Icon`' \
plugins/pf-figma/skills/figma-icon-finder/references/common-icons.md \
plugins/pf-figma/skills/figma-icon-finder/SKILL.md 2>/dev/null | \
sed 's/`//g' | sort -u > /tmp/referenced_icons.txt
echo "Referenced icons:"
wc -l /tmp/referenced_icons.txt
echo -e "\nSample of referenced icons:"
head -20 /tmp/referenced_icons.txtRepository: patternfly/ai-helpers
Length of output: 407
🏁 Script executed (no clone):
#!/bin/bash
# Get exported icons
curl -fsSL "https://unpkg.com/@patternfly/react-icons@6.4.0/dist/esm/icons/index.d.ts" 2>/dev/null | \
grep -o 'export { [A-Za-z0-9]*Icon,' | \
sed 's/export { //' | sed 's/,//' | sort -u > /tmp/exported_icons.txt
# Compare files (requires both to exist)
if [ -f /tmp/referenced_icons.txt ] && [ -f /tmp/exported_icons.txt ]; then
echo "=== Icons referenced but NOT exported (missing) ==="
comm -23 /tmp/referenced_icons.txt /tmp/exported_icons.txt || echo "None missing"
echo -e "\n=== Statistics ==="
echo "Referenced: $(wc -l < /tmp/referenced_icons.txt)"
echo "Exported: $(wc -l < /tmp/exported_icons.txt)"
fi
Length of output: 199
🏁 Script executed (no clone):
#!/bin/bash
# Get all exported icons and search for similar names
curl -fsSL "https://unpkg.com/@patternfly/react-icons@6.4.0/dist/esm/icons/index.d.ts" 2>/dev/null | \
grep -o 'export { [A-Za-z0-9]*Icon,' | \
sed 's/export { //' | sed 's/,//' | sort -u | \
grep -E '(Add|Delete|Slider|Sparkle|Volume)' | head -30
Length of output: 239
🏁 Script executed:
#!/bin/bash
# Find exact references to the 5 missing icons
for icon in "AddCircleIcon" "DeleteIcon" "SlidersIcon" "SparklesIcon" "VolumeSlashIcon"; do
echo "=== $icon ==="
grep -n "\`$icon\`" plugins/pf-figma/skills/figma-icon-finder/references/common-icons.md plugins/pf-figma/skills/figma-icon-finder/SKILL.md || echo "Not found"
doneRepository: patternfly/ai-helpers
Length of output: 941
Replace 5 non-exported icon names with actual PatternFly exports.
The skill references these icons that don't exist in @patternfly/react-icons@6.4.0 (1,748 total exports):
AddCircleIcon→ useAddCircleOIcon(lines 47, 49 in SKILL.md)DeleteIcon→ useTrashIcon(line 49 in SKILL.md; already listed in common-icons.md)SlidersIcon→ useSlidersHIcon(line 108 in common-icons.md)SparklesIcon→ useHandSparklesIcon(line 151 in common-icons.md)VolumeSlashIcon→ useVolumeMuteIconorVolumeOffIcon(line 135 in common-icons.md)
The remaining 110 referenced icons are valid exports. Update the documentation examples and reference table to use only exported names, or generated code will break.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@plugins/pf-figma/skills/figma-icon-finder/references/common-icons.md` around
lines 7 - 153, Replace the five non-exported icon identifiers with the correct
PatternFly exports: change AddCircleIcon to AddCircleOIcon, DeleteIcon to
TrashIcon, SlidersIcon to SlidersHIcon, SparklesIcon to HandSparklesIcon, and
VolumeSlashIcon to either VolumeMuteIcon or VolumeOffIcon; update all
occurrences in the skill docs and reference table (e.g., the SKILL.md examples
and common-icons.md entries) and adjust any import statements/usages to import
these exact exported symbol names so generated code references only valid
PatternFly exports.
| @@ -0,0 +1,412 @@ | |||
| --- | |||
| name: figma-icon-finder | |||
| description: Identifies PatternFly icons used in Figma mockups and provides the correct import statements for React components. Works with any PatternFly-based application. | |||
There was a problem hiding this comment.
Add trigger context to the frontmatter description for reliable skill activation.
Line 3 describes capability, but it should explicitly include trigger language (e.g., “Use when …”) so the model can decide when to load this skill.
Proposed frontmatter tweak
-description: Identifies PatternFly icons used in Figma mockups and provides the correct import statements for React components. Works with any PatternFly-based application.
+description: Use when you need to identify PatternFly icons from a Figma screenshot/mockup and generate correct React imports and usage examples.As per coding guidelines, “The description should include trigger contexts (e.g., 'Use when...') since the AI decides whether to load the skill based on the description alone.”
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@plugins/pf-figma/skills/figma-icon-finder/SKILL.md` at line 3, Update the
SKILL.md frontmatter `description` so it includes an explicit trigger context
phrase (e.g., start with or append "Use when..." or "Use when you need to...")
so the skill loader can reliably detect when to activate; edit the `description`
string shown in this file (the PatternFly/Figma icon capability description) to
include that trigger language while keeping the existing capability text intact.
Summary
Adds a new
/figma-icon-finderskill to the pf-figma plugin that helps developers identify PatternFly icons used in Figma mockups andprovides the correct React import statements.
Changes
plugins/pf-figma/skills/figma-icon-finder/SKILL.mdplugins/pf-figma/skills/figma-icon-finder/references/common-icons.mdUsage
Test plan
References
🤖 Generated with https://claude.com/claude-code
Summary by CodeRabbit