{
  "schemaVersion": "1.0",
  "item": {
    "slug": "svg",
    "name": "SVG",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/ivangdavila/svg",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/svg",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/svg",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=svg",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "accessibility.md",
      "embedding.md",
      "optimization.md",
      "styling.md",
      "viewbox.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/svg"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/svg",
    "agentPageUrl": "https://openagent3.xyz/skills/svg/agent",
    "manifestUrl": "https://openagent3.xyz/skills/svg/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/svg/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Quick Reference",
        "body": "TopicFileKey TrapviewBox & Scalingviewbox.mdMissing viewBox = no scalingScreen Readersaccessibility.mdrole=\"img\" + title as first childSVGO Configoptimization.mdDefault removes viewBox/titleInline vs imgembedding.md<img> cannot be styled with CSScurrentColorstyling.mdHardcoded fills block theming"
      },
      {
        "title": "Critical Defaults",
        "body": "<!-- Minimum viable SVG -->\n<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" fill=\"currentColor\">\n  <path d=\"...\"/>\n</svg>"
      },
      {
        "title": "Common Mistakes Checklist",
        "body": "viewBox present (not just width/height)\n Coordinates within viewBox bounds\n No hardcoded fill=\"#000\" if theming needed\n role=\"img\" + <title> for informative SVGs\n aria-hidden=\"true\" for decorative SVGs\n Unique IDs across all inline SVGs on page\n xmlns included for external .svg files"
      },
      {
        "title": "Memory Storage",
        "body": "User preferences persist in ~/svg/memory.md. Create on first use.\n\n## User Preferences\n<!-- SVG workflow defaults. Format: \"setting: value\" -->\n<!-- Examples: default_viewbox: 0 0 24 24, prefer_inline: true -->\n\n## Accessibility Mode\n<!-- informative | decorative -->\n\n## Optimization\n<!-- Tool and settings. Format: \"tool: setting\" -->\n<!-- Examples: svgo: preset-default, remove_metadata: true -->\n\n## Icon Defaults\n<!-- Fill and sizing preferences -->\n<!-- Examples: fill: currentColor, default_size: 24x24 -->\n\nEmpty sections = use skill defaults. Learns user preferences over time."
      }
    ],
    "body": "Quick Reference\nTopic\tFile\tKey Trap\nviewBox & Scaling\tviewbox.md\tMissing viewBox = no scaling\nScreen Readers\taccessibility.md\trole=\"img\" + title as first child\nSVGO Config\toptimization.md\tDefault removes viewBox/title\nInline vs img\tembedding.md\t<img> cannot be styled with CSS\ncurrentColor\tstyling.md\tHardcoded fills block theming\nCritical Defaults\n<!-- Minimum viable SVG -->\n<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" fill=\"currentColor\">\n  <path d=\"...\"/>\n</svg>\n\nCommon Mistakes Checklist\n viewBox present (not just width/height)\n Coordinates within viewBox bounds\n No hardcoded fill=\"#000\" if theming needed\n role=\"img\" + <title> for informative SVGs\n aria-hidden=\"true\" for decorative SVGs\n Unique IDs across all inline SVGs on page\n xmlns included for external .svg files\nMemory Storage\n\nUser preferences persist in ~/svg/memory.md. Create on first use.\n\n## User Preferences\n<!-- SVG workflow defaults. Format: \"setting: value\" -->\n<!-- Examples: default_viewbox: 0 0 24 24, prefer_inline: true -->\n\n## Accessibility Mode\n<!-- informative | decorative -->\n\n## Optimization\n<!-- Tool and settings. Format: \"tool: setting\" -->\n<!-- Examples: svgo: preset-default, remove_metadata: true -->\n\n## Icon Defaults\n<!-- Fill and sizing preferences -->\n<!-- Examples: fill: currentColor, default_size: 24x24 -->\n\n\nEmpty sections = use skill defaults. Learns user preferences over time."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/svg",
    "publisherUrl": "https://clawhub.ai/ivangdavila/svg",
    "owner": "ivangdavila",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/svg",
    "downloadUrl": "https://openagent3.xyz/downloads/svg",
    "agentUrl": "https://openagent3.xyz/skills/svg/agent",
    "manifestUrl": "https://openagent3.xyz/skills/svg/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/svg/agent.md"
  }
}