スキル一覧に戻る
annthurium

unit-converter

by annthurium

Claude's got SKILLZ

0🍴 0📅 2026年1月21日
GitHubで見るManusで実行

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:

  1. Parse the arguments to extract:

    • Value (the number to convert)
    • From unit (source unit)
    • To unit (target unit)
  2. Identify the category (temperature, distance, weight, volume)

  3. 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
  4. Format the result clearly with appropriate units and precision (2-3 decimal places)

  5. 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

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です