priv/skills/unit-converter/SKILL.md
Converts between common units of measurement including temperature, distance, and weight.
npx skillsauth add agentjido/jido_ai unit-converterInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
4 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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"
development
Reviews code changes for quality, security, and best practices.
documentation
Guides interactive Hex package release for AgentJido repos. Supports automated (GitHub Actions workflow_dispatch) and manual release flows. Uses git_ops for version bumping and changelog generation. Triggers on: release, hex publish, bump version, new release, publish package.
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------