Temperature Convert

Use this skill to convert a temperature between Celsius, Fahrenheit, and Kelvin (from_unit/to_unit = C/F/K). Deterministic, offline.

ncreighton Updated

File contents

temperature-convert

Use this skill to convert a temperature between Celsius, Fahrenheit, and Kelvin (from_unit/to_unit = C/F/K). Deterministic, offline.

  • Kind: tool | Niche: ai | Cost tier: free | Version: 0.1.0

Empire Integration

import sys
sys.path.insert(0, r'C:\D\Claude Code Projects\_SHARED')
import empire_bootstrap  # wires all shared paths

Usage

As a CLI:

python run.py --value <number>

From a Python agent (ATEN runtime):

from skill_library import executor
result = executor.execute("temperature-convert", {value=...})

Parameters

Name Type Required Description
value number yes Temperature value
from_unit string no C/F/K (default C)
to_unit string no C/F/K (default F)

Returns

object{"status": "ok"|"error", "result": ...}

ncreighton/empire-skills/tree/main/skills/temperature-convert commit c6f8a526b4

Frequently asked questions

npx skillmds@latest add ncreighton/temperature-convert