
unit-converter
by annthurium
Claude's got SKILLZ
SKILL.md
name: unit-converter description: Convert between different units of measurement for temperature, distance, weight, and volume. Use when the user asks to convert units or measurements. argument-hint: to
When this skill is invoked with $ARGUMENTS:
-
Parse the arguments to extract:
- Value (the number to convert)
- From unit (source unit)
- To unit (target unit)
-
Identify the category (temperature, distance, weight, volume)
-
Perform the conversion using the appropriate formula:
Temperature:
- C to F: (C × 9/5) + 32
- F to C: (F - 32) × 5/9
- C to K: C + 273.15
- K to C: K - 273.15
Distance:
- 1 mile = 1.60934 km
- 1 foot = 0.3048 m
- 1 inch = 2.54 cm
Weight:
- 1 pound = 0.453592 kg
- 1 ounce = 28.3495 g
Volume:
- 1 gallon = 3.78541 liters
- 1 cup = 236.588 ml
-
Format the result clearly with appropriate units and precision (2-3 decimal places)
-
If the unit is not supported, list the available units for that category
Supported Conversions
Temperature: Celsius ↔ Fahrenheit ↔ Kelvin Distance: Meters, Kilometers, Miles, Feet, Inches, Yards Weight/Mass: Grams, Kilograms, Pounds, Ounces, Tons Volume: Liters, Milliliters, Gallons, Cups, Tablespoons, Teaspoons
Examples
User: /unit-converter 100 celsius to fahrenheit
Result: 100°C = 212°F
User: /unit-converter 5 miles to kilometers
Result: 5 miles = 8.05 kilometers
Score
Total Score
Based on repository quality metrics
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
Reviews
Reviews coming soon