一键导入
converter
Convert values between various units (excluding currency).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Convert values between various units (excluding currency).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Manage user schedules (add, update, delete, search).
Manage personal finances (income, expense, analytics).
Manage user notes (create, read, update, delete, search).
Scrape data from a specified URL using the scraping tool.
Performs a search or extracts content using the Tavily API.
Get current time information in a specific timezone using Python.
| name | Converter |
| description | Convert values between various units (excluding currency). |
A tool to convert values between various units (excluding currency). Supported categories include:
The skill is executed via a Python script: ~/.myaaw/skills/converter/scripts/converter.py.
It accepts a JSON string as the first argument calling the tool.
The input JSON should contain the following fields:
| Field | Type | Description | Required |
|---|---|---|---|
value | number | The value to convert. | Yes |
from_unit | string | The source unit (e.g., meter, ounce, celsius). | Yes |
to_unit | string | The target unit (e.g., kilometer, gram, fahrenheit). | Yes |
celsius, fahrenheit, kelvinmeter, kilometer, centimeter, inch, footgram, kilogram, ounce, poundliter, milliliter, gallon, quartsecond, minute, hourmeter per second, kilometer per hour, mile per hour.venv/bin/python ~/.myaaw/skills/converter/scripts/converter.py '{"value": 100, "from_unit": "celsius", "to_unit": "fahrenheit"}'