{
  "schemaVersion": "1.0",
  "item": {
    "slug": "unit-convert",
    "name": "Unit Converter",
    "source": "tencent",
    "type": "skill",
    "category": "其他",
    "sourceUrl": "https://clawhub.ai/ouyangAbel/unit-convert",
    "canonicalUrl": "https://clawhub.ai/ouyangAbel/unit-convert",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/unit-convert",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=unit-convert",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/unit-convert.py"
    ],
    "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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/unit-convert"
    },
    "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/unit-convert",
    "agentPageUrl": "https://openagent3.xyz/skills/unit-convert/agent",
    "manifestUrl": "https://openagent3.xyz/skills/unit-convert/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/unit-convert/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": "Unit Converter",
        "body": "Convert between different measurement units. Supports length, weight, temperature, area, volume, speed, time, and data units."
      },
      {
        "title": "When to Use",
        "body": "Convert between metric and imperial units\nCalculate unit equivalencies\nWork with different measurement systems\nConvert digital storage sizes"
      },
      {
        "title": "Basic Conversions",
        "body": "python3 scripts/unit-convert.py 100 cm m\n# Output: 100 cm = 1 m\n\npython3 scripts/unit-convert.py 10 kg lb\n# Output: 10 kg = 22.05 lb\n\npython3 scripts/unit-convert.py 25 C F\n# Output: 25 C = 77 F"
      },
      {
        "title": "List Units",
        "body": "python3 scripts/unit-convert.py list length\n# Shows all length units"
      },
      {
        "title": "Show Categories",
        "body": "python3 scripts/unit-convert.py categories"
      },
      {
        "title": "<value> <from_unit> <to_unit>",
        "body": "Convert between units.\n\nExamples:\n\n# Length\npython3 scripts/unit-convert.py 100 cm m\npython3 scripts/unit-convert.py 5 ft cm\npython3 scripts/unit-convert.py 1 mi km\n\n# Weight\npython3 scripts/unit-convert.py 10 kg lb\npython3 scripts/unit-convert.py 1000 g kg\npython3 scripts/unit-convert.py 16 oz lb\n\n# Temperature\npython3 scripts/unit-convert.py 25 C F\npython3 scripts/unit-convert.py 98.6 F C\npython3 scripts/unit-convert.py 300 K C\n\n# Area\npython3 scripts/unit-convert.py 100 m2 ft2\npython3 scripts/unit-convert.py 1 acre m2\n\n# Volume\npython3 scripts/unit-convert.py 1000 ml l\npython3 scripts/unit-convert.py 1 gal l\n\n# Speed\npython3 scripts/unit-convert.py 100 km/h mph\npython3 scripts/unit-convert.py 10 m/s km/h\n\n# Time\npython3 scripts/unit-convert.py 3600 s h\npython3 scripts/unit-convert.py 7 day h\n\n# Data\npython3 scripts/unit-convert.py 1024 B KB\npython3 scripts/unit-convert.py 1 GB MB"
      },
      {
        "title": "list <category>",
        "body": "List all units in a category.\n\nExamples:\n\npython3 scripts/unit-convert.py list length\npython3 scripts/unit-convert.py list weight\npython3 scripts/unit-convert.py list temperature"
      },
      {
        "title": "categories",
        "body": "Show all supported categories.\n\npython3 scripts/unit-convert.py categories"
      },
      {
        "title": "help <category>",
        "body": "Show help for a specific category.\n\npython3 scripts/unit-convert.py help temperature\npython3 scripts/unit-convert.py help length"
      },
      {
        "title": "Length",
        "body": "Metric: mm, cm, m, km\nImperial: in, ft, yd, mi, inch, foot, yard, mile"
      },
      {
        "title": "Weight",
        "body": "Metric: mg, g, kg, t (tonne)\nImperial: oz, lb, stone, ounce, pound"
      },
      {
        "title": "Temperature",
        "body": "C - Celsius\nF - Fahrenheit\nK - Kelvin"
      },
      {
        "title": "Area",
        "body": "Metric: mm², cm², m², km²\nImperial: in², ft², yd², acre, mi²"
      },
      {
        "title": "Volume",
        "body": "Metric: ml, l, kl\nImperial: fl oz, cup, pt, qt, gal"
      },
      {
        "title": "Speed",
        "body": "Metric: m/s, km/h\nImperial: ft/s, mph\nNautical: knot"
      },
      {
        "title": "Time",
        "body": "Short: ms, s, min\nLong: h, day, week, year"
      },
      {
        "title": "Data",
        "body": "Binary: B, KB, MB, GB, TB, PB\n(Uses 1024-based conversion)"
      },
      {
        "title": "Unit Aliases",
        "body": "The converter accepts common aliases:\n\nStandardAliasesininch, inchesftfoot, feetydyard, yardsmimile, milesozounce, ounceslbpound, poundsptpint, pintsqtquart, quartsgalgallon, gallonsmlmilliliter, milliliterslliter, litersklkiloliter, kilolitershhour, hoursminminute, minutesssecond, secondsmsmillisecond, milliseconds"
      },
      {
        "title": "Everyday Conversions",
        "body": "# Height conversions\npython3 scripts/unit-convert.py 180 cm ft\npython3 scripts/unit-convert.py 6 ft cm\n\n# Weight conversions\npython3 scripts/unit-convert.py 70 kg lb\npython3 scripts/unit-convert.py 150 lb kg\n\n# Temperature\npython3 scripts/unit-convert.py 32 F C\npython3 scripts/unit-convert.py 100 C F\n\n# Area (room size)\npython3 scripts/unit-convert.py 100 m2 ft2\npython3 scripts/unit-convert.py 1000 ft2 m2"
      },
      {
        "title": "Cooking & Recipes",
        "body": "# Volume conversions\npython3 scripts/unit-convert.py 1 cup ml\npython3 scripts/unit-convert.py 250 ml cup\npython3 scripts/unit-convert.py 1 gal l\n\n# Weight conversions\npython3 scripts/unit-convert.py 500 g lb\npython3 scripts/unit-convert.py 1 lb g"
      },
      {
        "title": "Travel & Distance",
        "body": "# Distance\npython3 scripts/unit-convert.py 100 km mi\npython3 scripts/unit-convert.py 50 mi km\n\n# Speed limits\npython3 scripts/unit-convert.py 60 mph km/h\npython3 scripts/unit-convert.py 100 km/h mph"
      },
      {
        "title": "Digital Storage",
        "body": "# File sizes\npython3 scripts/unit-convert.py 1 GB MB\npython3 scripts/unit-convert.py 1024 KB MB\npython3 scripts/unit-convert.py 1 TB GB"
      },
      {
        "title": "Science & Engineering",
        "body": "# Precise measurements\npython3 scripts/unit-convert.py 25.4 mm in\npython3 scripts/unit-convert.py 1000 mg g\n\n# Time calculations\npython3 scripts/unit-convert.py 365 day h\npython3 scripts/unit-convert.py 86400 s day"
      },
      {
        "title": "Tips",
        "body": "Use the list command to see all available units for a category\nTemperature units are case-sensitive (C, F, K)\nFor compound units like m/s, use the slash notation\nThe converter handles both short and long unit names\nResults are formatted for readability"
      },
      {
        "title": "Troubleshooting",
        "body": "\"Cannot convert\" error:\n\nCheck unit spelling\nEnsure units are from the same category (e.g., don't convert length to weight)\nUse list command to see available units\n\nUnexpected results:\n\nTemperature conversions use standard formulas\nData conversions use 1024-based (binary) units\nDouble-check unit case sensitivity"
      },
      {
        "title": "Notes",
        "body": "Temperature conversions use standard formulas\nData conversions use binary (1024-based) units\nAll other conversions use decimal (1000-based) units\nResults are automatically formatted for readability"
      }
    ],
    "body": "Unit Converter\n\nConvert between different measurement units. Supports length, weight, temperature, area, volume, speed, time, and data units.\n\nWhen to Use\nConvert between metric and imperial units\nCalculate unit equivalencies\nWork with different measurement systems\nConvert digital storage sizes\nQuick Start\nBasic Conversions\npython3 scripts/unit-convert.py 100 cm m\n# Output: 100 cm = 1 m\n\npython3 scripts/unit-convert.py 10 kg lb\n# Output: 10 kg = 22.05 lb\n\npython3 scripts/unit-convert.py 25 C F\n# Output: 25 C = 77 F\n\nList Units\npython3 scripts/unit-convert.py list length\n# Shows all length units\n\nShow Categories\npython3 scripts/unit-convert.py categories\n\nCommands\n<value> <from_unit> <to_unit>\n\nConvert between units.\n\nExamples:\n\n# Length\npython3 scripts/unit-convert.py 100 cm m\npython3 scripts/unit-convert.py 5 ft cm\npython3 scripts/unit-convert.py 1 mi km\n\n# Weight\npython3 scripts/unit-convert.py 10 kg lb\npython3 scripts/unit-convert.py 1000 g kg\npython3 scripts/unit-convert.py 16 oz lb\n\n# Temperature\npython3 scripts/unit-convert.py 25 C F\npython3 scripts/unit-convert.py 98.6 F C\npython3 scripts/unit-convert.py 300 K C\n\n# Area\npython3 scripts/unit-convert.py 100 m2 ft2\npython3 scripts/unit-convert.py 1 acre m2\n\n# Volume\npython3 scripts/unit-convert.py 1000 ml l\npython3 scripts/unit-convert.py 1 gal l\n\n# Speed\npython3 scripts/unit-convert.py 100 km/h mph\npython3 scripts/unit-convert.py 10 m/s km/h\n\n# Time\npython3 scripts/unit-convert.py 3600 s h\npython3 scripts/unit-convert.py 7 day h\n\n# Data\npython3 scripts/unit-convert.py 1024 B KB\npython3 scripts/unit-convert.py 1 GB MB\n\nlist <category>\n\nList all units in a category.\n\nExamples:\n\npython3 scripts/unit-convert.py list length\npython3 scripts/unit-convert.py list weight\npython3 scripts/unit-convert.py list temperature\n\ncategories\n\nShow all supported categories.\n\npython3 scripts/unit-convert.py categories\n\nhelp <category>\n\nShow help for a specific category.\n\npython3 scripts/unit-convert.py help temperature\npython3 scripts/unit-convert.py help length\n\nSupported Categories\nLength\nMetric: mm, cm, m, km\nImperial: in, ft, yd, mi, inch, foot, yard, mile\nWeight\nMetric: mg, g, kg, t (tonne)\nImperial: oz, lb, stone, ounce, pound\nTemperature\nC - Celsius\nF - Fahrenheit\nK - Kelvin\nArea\nMetric: mm², cm², m², km²\nImperial: in², ft², yd², acre, mi²\nVolume\nMetric: ml, l, kl\nImperial: fl oz, cup, pt, qt, gal\nSpeed\nMetric: m/s, km/h\nImperial: ft/s, mph\nNautical: knot\nTime\nShort: ms, s, min\nLong: h, day, week, year\nData\nBinary: B, KB, MB, GB, TB, PB\n(Uses 1024-based conversion)\nUnit Aliases\n\nThe converter accepts common aliases:\n\nStandard\tAliases\nin\tinch, inches\nft\tfoot, feet\nyd\tyard, yards\nmi\tmile, miles\noz\tounce, ounces\nlb\tpound, pounds\npt\tpint, pints\nqt\tquart, quarts\ngal\tgallon, gallons\nml\tmilliliter, milliliters\nl\tliter, liters\nkl\tkiloliter, kiloliters\nh\thour, hours\nmin\tminute, minutes\ns\tsecond, seconds\nms\tmillisecond, milliseconds\nExamples\nEveryday Conversions\n# Height conversions\npython3 scripts/unit-convert.py 180 cm ft\npython3 scripts/unit-convert.py 6 ft cm\n\n# Weight conversions\npython3 scripts/unit-convert.py 70 kg lb\npython3 scripts/unit-convert.py 150 lb kg\n\n# Temperature\npython3 scripts/unit-convert.py 32 F C\npython3 scripts/unit-convert.py 100 C F\n\n# Area (room size)\npython3 scripts/unit-convert.py 100 m2 ft2\npython3 scripts/unit-convert.py 1000 ft2 m2\n\nCooking & Recipes\n# Volume conversions\npython3 scripts/unit-convert.py 1 cup ml\npython3 scripts/unit-convert.py 250 ml cup\npython3 scripts/unit-convert.py 1 gal l\n\n# Weight conversions\npython3 scripts/unit-convert.py 500 g lb\npython3 scripts/unit-convert.py 1 lb g\n\nTravel & Distance\n# Distance\npython3 scripts/unit-convert.py 100 km mi\npython3 scripts/unit-convert.py 50 mi km\n\n# Speed limits\npython3 scripts/unit-convert.py 60 mph km/h\npython3 scripts/unit-convert.py 100 km/h mph\n\nDigital Storage\n# File sizes\npython3 scripts/unit-convert.py 1 GB MB\npython3 scripts/unit-convert.py 1024 KB MB\npython3 scripts/unit-convert.py 1 TB GB\n\nScience & Engineering\n# Precise measurements\npython3 scripts/unit-convert.py 25.4 mm in\npython3 scripts/unit-convert.py 1000 mg g\n\n# Time calculations\npython3 scripts/unit-convert.py 365 day h\npython3 scripts/unit-convert.py 86400 s day\n\nTips\nUse the list command to see all available units for a category\nTemperature units are case-sensitive (C, F, K)\nFor compound units like m/s, use the slash notation\nThe converter handles both short and long unit names\nResults are formatted for readability\nTroubleshooting\n\n\"Cannot convert\" error:\n\nCheck unit spelling\nEnsure units are from the same category (e.g., don't convert length to weight)\nUse list command to see available units\n\nUnexpected results:\n\nTemperature conversions use standard formulas\nData conversions use 1024-based (binary) units\nDouble-check unit case sensitivity\nNotes\nTemperature conversions use standard formulas\nData conversions use binary (1024-based) units\nAll other conversions use decimal (1000-based) units\nResults are automatically formatted for readability"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ouyangAbel/unit-convert",
    "publisherUrl": "https://clawhub.ai/ouyangAbel/unit-convert",
    "owner": "ouyangAbel",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/unit-convert",
    "downloadUrl": "https://openagent3.xyz/downloads/unit-convert",
    "agentUrl": "https://openagent3.xyz/skills/unit-convert/agent",
    "manifestUrl": "https://openagent3.xyz/skills/unit-convert/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/unit-convert/agent.md"
  }
}