用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill svg命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | SVG |
| version | 1.1.0 |
| changelog | Restructured with auxiliary files for focused reference |
| description | Create and optimize SVG graphics with proper viewBox, accessibility, and CSS styling. |
| metadata | {"clawdbot":{"emoji":"📐","requires":{},"os":["linux","darwin","win32"]}} |
| Topic | File | Key Trap |
|---|---|---|
| viewBox & Scaling | viewbox.md | Missing viewBox = no scaling |
| Screen Readers | accessibility.md | role="img" + title as first child |
| SVGO Config | optimization.md | Default removes viewBox/title |
| Inline vs img | embedding.md | <img> cannot be styled with CSS |
| currentColor | styling.md | Hardcoded fills block theming |
<!-- Minimum viable SVG -->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
<path d="..."/>
</svg>
fill="#000" if theming neededrole="img" + <title> for informative SVGsaria-hidden="true" for decorative SVGs.svg filesUser preferences persist in ~/svg/memory.md. Create on first use.
## User Preferences
<!-- SVG workflow defaults. Format: "setting: value" -->
<!-- Examples: default_viewbox: 0 0 24 24, prefer_inline: true -->
## Accessibility Mode
<!-- informative | decorative -->
## Optimization
<!-- Tool and settings. Format: "tool: setting" -->
<!-- Examples: svgo: preset-default, remove_metadata: true -->
## Icon Defaults
<!-- Fill and sizing preferences -->
<!-- Examples: fill: currentColor, default_size: 24x24 -->
Empty sections = use skill defaults. Learns user preferences over time.