用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/bighardperson/computer-science-skills-collection --skill lucide-icons命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | lucide-icons |
| description | Auto-generated frontmatter |
Search, download, and customize Lucide icons (1000+ beautiful SVG icons).
# Search for icons
node ./scripts/lucide.js search heart
# Download an icon
node ./scripts/lucide.js download heart --output ./icons/
# Download with React component
node ./scripts/lucide.js download heart --output ./icons/ --format svg,react
# Customize icon
node ./scripts/lucide.js download star --color "#ffd700" --size 32
<keyword>Search for icons by name or keyword.
lucide search heart --limit 10
<icon-name>Download a single icon with optional customization.
Options:
-o, --output <dir> - Output directory (default: current directory)-f, --format <formats> - Output formats: svg, react (default: svg)-c, --color <color> - Icon color (default: currentColor)-s, --size <size> - Icon size in pixels (default: 24)-w, --stroke-width <width> - Stroke width (default: 2)--overwrite - Overwrite existing filesList all available icons.
lucide list -- 50
<icon-name>Show detailed information about an icon.
lucide info heart
Refresh the icon metadata cache.
lucide refresh
Before first use, install dependencies:
cd ./scripts && npm install
Standard SVG file with optional customization (color, size, stroke-width).
Generates a fully-typed React component with props:
size - Icon sizecolor - Icon colorstrokeWidth - Stroke widthclassName - CSS classesstyle - Inline stylesaria-label - Accessibility label# Download heart icon to src/icons/
lucide download heart -o ./src/icons/
# Download with custom color and size
lucide download star --color "#ffd700" --size 32 -o ./icons/
# Generate both SVG and React component
lucide download check-circle --format svg,react -o ./src/components/icons/
# Search for arrow icons
lucide search arrow --limit 20
Icons are fetched from the official Lucide repository.
See README.md for detailed documentation.