← Back to Skills Marketplace
cutthemustard

Convert Units

by CutTheMustard · GitHub ↗ · v1.0.0
cross-platform ✓ Security Clean
389
Downloads
0
Stars
2
Active Installs
1
Versions
Install in OpenClaw
/install convert-units
Description
Convert currencies, physical units, and encodings between formats.
README (SKILL.md)

unit-convert

Convert currencies (live rates), physical units (80+ units across 8 categories), and encodings (base64, hex, URL) in one service.

Endpoints

Currency Conversion

curl -X POST https://convert.agentutil.net/v1/currency \
  -H "Content-Type: application/json" \
  -d '{"value": 100, "from": "USD", "to": "NZD"}'

Unit Conversion

curl -X POST https://convert.agentutil.net/v1/units \
  -H "Content-Type: application/json" \
  -d '{"value": 1, "from": "mi", "to": "km"}'

Supported categories: length, weight, volume, area, speed, data, time, temperature.

Encoding Conversion

curl -X POST https://convert.agentutil.net/v1/encoding \
  -H "Content-Type: application/json" \
  -d '{"input": "hello", "from": "utf8", "to": "base64"}'

Formats: utf8, base64, hex, url.

Response Format

{
  "result": 1.609344,
  "from": "mi",
  "to": "km",
  "value": 1,
  "formula": "1 mi = 1.609344 km",
  "request_id": "abc-123",
  "service": "https://convert.agentutil.net"
}

Pricing

  • Free tier: 10 queries/day, no authentication required
  • Paid tier: $0.001/query via x402 protocol (USDC on Base)

Privacy

No authentication required for free tier. No personal data collected. Rate limiting uses IP hashing only.

Usage Guidance
This skill is coherent with its stated purpose, but it sends whatever you provide to convert.agentutil.net. Do not send secrets or sensitive data to the skill. If you plan to use the paid tier, verify the payment method and service terms on the provider site (the SKILL.md mentions USDC on Base and 'x402 protocol'). If you require offline or private conversions, prefer a local library instead of this networked service. Finally, because the service endpoint is external and not vetted here, consider checking the provider's domain, privacy policy, and uptime before relying on it for important tasks.
Capability Analysis
Type: OpenClaw Skill Name: convert-units Version: 1.0.0 The skill bundle appears benign. It defines a skill for unit, currency, and encoding conversions, providing `curl` examples that interact with a single, consistently declared external API endpoint (`https://convert.agentutil.net`). There is no evidence of data exfiltration, malicious execution, persistence mechanisms, obfuscation, or prompt injection attempts against the agent beyond its stated purpose within `SKILL.md`.
Capability Assessment
Purpose & Capability
The skill name/description (unit/currency/encoding conversions) matches the runtime instructions, which show curl calls to a conversion API (convert.agentutil.net) for currency, units, and encodings. No unrelated binaries or credentials are requested.
Instruction Scope
The SKILL.md instructs the agent to POST data to https://convert.agentutil.net endpoints. This is expected for a network-backed conversion service, but it means any input you send (including text you ask to convert) will be transmitted to that external service. The metadata includes privacy/pricing claims (free tier 10/day, paid via USDC on Base) that are not verifiable from the skill alone.
Install Mechanism
There is no install spec and no code files; the skill is instruction-only, so nothing is written to disk and no third-party packages are pulled in.
Credentials
The skill declares no required environment variables, credentials, or config paths. That is proportionate to the described purpose.
Persistence & Privilege
always:false and the skill does not request persistent system access or modify other skills. The agent may invoke the skill autonomously (platform default), which is normal; combined with network calls this increases blast radius only in the sense the skill can call the external API when used autonomously.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install convert-units
  3. After installation, invoke the skill by name or use /convert-units
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of unit-convert: - Convert currencies with live rates, physical units (80+ units, 8 categories), and encodings (base64, hex, URL) via simple API endpoints. - No authentication required for free tier (10 queries/day), with additional paid usage available. - Returns clear, structured results including formulas and request metadata. - Privacy-focused: no personal data collected; rate limiting uses only IP hashing.
Metadata
Slug convert-units
Version 1.0.0
License
All-time Installs 2
Active Installs 2
Total Versions 1
Frequently Asked Questions

What is Convert Units?

Convert currencies, physical units, and encodings between formats. It is an AI Agent Skill for Claude Code / OpenClaw, with 389 downloads so far.

How do I install Convert Units?

Run "/install convert-units" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Convert Units free?

Yes, Convert Units is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Convert Units support?

Convert Units is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Convert Units?

It is built and maintained by CutTheMustard (@cutthemustard); the current version is v1.0.0.

💬 Comments