# Unit Converter

> Interactive unit converter for temperature, length, weight, volume and speed. Use when the user asks to convert between units, compare metric and imperial, or just wants a quick conversion tool at hand.

- Skill: `jgouviergmail/unit-converter` (Agent Skill, multi-file: 4 files)
- Install (CLI): `npx skillmds@latest add jgouviergmail/unit-converter`
- Raw SKILL.md: https://api.skillmd.com/api/skills/jgouviergmail/unit-converter/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: jgouviergmail (https://skillmd.com/u/jgouviergmail)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/jgouviergmail/unit-converter

---


# Unit Converter

## Instructions

This skill renders a self-contained interactive unit converter directly in
the chat. The plan is deterministic: a single script call emits an HTML
frame with:

- A category selector (temperature / length / weight / volume / speed).
- Two unit dropdowns (from / to) populated for the selected category.
- A numeric input that triggers live conversion on every keystroke.
- A swap button to invert the source/target units.

No network calls are made; all conversion factors live inside the frame.

## Output Contract

Returns ``text`` + ``frame.html``:

- ``text``: short caption announcing the converter is ready.
- ``frame.html``: the self-contained interactive converter.

## Ressources disponibles

- scripts/render_converter.py — Generates the unit converter HTML frame.

