在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
unit-converter
// Converts between common units of measurement including temperature, distance, and weight.
$ git log --oneline --stat
stars:188
forks:55
updated:2026年2月7日 01:12
SKILL.md
// Converts between common units of measurement including temperature, distance, and weight.
| name | unit-converter |
| description | Converts between common units of measurement including temperature, distance, and weight. |
| license | Apache-2.0 |
| allowed-tools | convert_temperature convert_distance convert_weight |
| metadata | {"author":"jido-examples","version":"1.0"} |
| tags | ["conversion","units","utility"] |
Use this skill when users ask about unit conversions for temperature, distance, or weight.
convert_temperature(value, from, to) - Convert between Celsius, Fahrenheit, and Kelvinconvert_distance(value, from, to) - Convert between metric and imperialconvert_weight(value, from, to) - Convert between weight unitsUser: "What is 100°F in Celsius?" → convert_temperature(100, "fahrenheit", "celsius") → "100°F = 37.78°C"
User: "How many kilometers is a marathon?"
→ convert_distance(26.2, "miles", "kilometers")
→ "A marathon (26.2 miles) = 42.16 km"
User: "Convert 150 pounds to kilograms" → convert_weight(150, "pounds", "kilograms") → "150 lbs = 68.04 kg"