Find and download icons from the Lingaro Icons Catalog for architecture diagrams, presentations, slide decks, and technical documentation. Use this skill whenever the user mentions needing icons, looking for icons, architecture diagrams, solution diagrams, technology logos, cloud service icons, or wants visual assets for any kind of technical or business material. Also trigger when the user lists technologies or services and likely needs visual representations — even if they don't explicitly say "icon". Covers Azure, GCP, Databricks, Microsoft Fabric, and the Lingaro custom icon set.
Search the Lingaro Icons Catalog and download icons for architecture diagrams, presentations, and documentation.
The catalog contains icons from these collections:
The CLI cli-anything-lingaro-catalog is installed in PATH. It connects to the production catalog at https://lingaro-icons-catalog.azurewebsites.net via LINGARO_CATALOG_URL and LINGARO_API_KEY env vars (set in ). For local dev, omit those vars and run .
~/.claude/settings.jsoncli-anything-lingaro-catalog server start# Text search — fast, keyword-based
cli-anything-lingaro-catalog search "virtual machine"
# Semantic search — understands meaning, better for abstract concepts
cli-anything-lingaro-catalog search --semantic "data pipeline orchestration"
# Filter by set
cli-anything-lingaro-catalog search "storage" --set "Azure"
# Filter by category
cli-anything-lingaro-catalog search "database" --category "general"
Use text search first for specific names (e.g., "Cosmos DB", "Cloud Storage"). Use semantic search when looking for conceptual matches (e.g., "something representing data flow").
cli-anything-lingaro-catalog icons get <icon-id>
This shows description, tags, and use cases — helpful for confirming the icon matches what the user needs.
# Download to specific path
cli-anything-lingaro-catalog icons download <icon-id> -o path/to/icon.svg
# Download multiple icons for a diagram
cli-anything-lingaro-catalog icons download Azure_compute_virtualmachines -o diagram/vm.svg
cli-anything-lingaro-catalog icons download Azure_databases_cosmosdb -o diagram/cosmos.svg
# List all collections
cli-anything-lingaro-catalog categories collections
# List categories within a set
cli-anything-lingaro-catalog categories list
# Browse icons in a category
cli-anything-lingaro-catalog icons list --set "Azure" --category "Compute" --limit 50
Add --json for machine-readable output — useful when you need to process results programmatically:
cli-anything-lingaro-catalog --json search "database" --limit 5
When the user describes an architecture (e.g., "I need a diagram with App Service, Cosmos DB, and Event Hub"):
search "App Service" --set AzureIf an icon isn't found in the catalog, say so — don't silently skip it. Suggest alternatives if the search returns close matches.
Azure_<category>_<name> (e.g., Azure_compute_virtualmachines)GCP_<name> (e.g., GCP_cloud_storage)Microsoft Fabric_<variant>_<name> (e.g., Microsoft Fabric_color_lakehouse)LINGARO_CATALOG_URL is set. For local dev only: cli-anything-lingaro-catalog server start