ソース情報
- リポジトリ
- IBM/CodeEngine
- ソースの最終更新活動
- 2026年3月13日 16:14
- 検出された SKILL.md の言語
- 英語
- スター
- 117
- フォーク
- 152
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/IBM/CodeEngine --skill currency-converterコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Deploys, configures, and troubleshoots IBM Cloud Code Engine workloads using the ibmcloud ce CLI. Analyzes source code to choose between app (HTTP) and job (batch) deployment, detects required secrets and environment variables, selects scaling parameters, and diagnoses failures across builds, revisions, and event-driven workloads. Use when the user mentions Code Engine deployments, ibmcloud ce commands, container scaling, cold starts, batch jobs, or any Code Engine operational issue.
Get personalized travel destination recommendations based on preferences
Get current weather and forecast for any location worldwide
| name | Currency Converter |
| description | Convert amounts between different currencies with current exchange rates |
| version | 1.0.0 |
| category | finance |
| parameters | [{"name":"amount","type":"float","required":true,"description":"Amount to convert"},{"name":"from_currency","type":"string","required":true,"description":"Source currency code (e.g., 'USD', 'EUR', 'GBP')"},{"name":"to_currency","type":"string","required":true,"description":"Target currency code (e.g., 'USD', 'EUR', 'GBP')"}] |
This skill converts monetary amounts between different currencies using exchange rates.
The skill accepts an amount and source/target currency codes.
result = currency_converter(
amount=100.0,
from_currency="USD",
to_currency="EUR"
)
Returns a formatted string with: