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.
How 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`.
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.npx claudepluginhub antvis/chart-visualization-skills --plugin chart-visualizationCreates, edits, reviews, and validates high-quality SVG graphics with W3C compliance, CSS independence, accessibility, and safety.
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.