Help us improve
Share bugs, ideas, or general feedback.
From antv-g6-graph
Searches for icons via an HTTP API and retrieves SVG strings using curl. Useful for obtaining icons programmatically for diagrams or web pages.
npx claudepluginhub antvis/chart-visualization-skills --plugin chart-visualizationHow this skill is triggered — by the user, by Claude, or both
Slash command
/antv-g6-graph:icon-retrievalThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use the icon HTTP API directly with `curl`.
Generates project-specific SVG icon sets with consistent style specs for websites and apps. Activates on custom icon requests or projects needing visual assets like service icons.
Generates and edits SVG logos, icons, and graphics. Covers path commands, shape primitives, styling, accessibility, gradients, masks, sprites, optimization, and animation techniques like CSS keyframes and SVG-specific methods.
Generates square PNG icons with transparent backgrounds for app icons, favicons, and UI using Google Gemini. Supports flat/3D/line/glyph/gradient/minimal styles, sizes 128-1024px, batch sets, reference matching.
Share bugs, ideas, or general feedback.
Use the icon HTTP API directly with curl.
GEThttps://lab.weavefox.cn/api/v1/infographic/icontext (required): search keyword, e.g. "data analysis"topK (optional): number of icons to fetch (1-20), default 5Example:
curl -sS -L --max-time 20 "https://lab.weavefox.cn/api/v1/infographic/icon?text=document&topK=5"
Typical response:
{
"success": true,
"data": [
"https://example.com/icon1.svg",
"https://example.com/icon2.svg"
]
}
curl -sS -L --max-time 20 "https://example.com/icon1.svg"
security, document, data).curl to fetch the SVG content of selected URLs.text.topK range is 1–20; if omitted, the service returns up to 5 results.topK or verify endpoint accessibility.