ソース情報
- リポジトリ
- gebruder/wirken
- ソースの最終更新活動
- 2026年5月1日 19:45
- 検出された SKILL.md の言語
- 英語
- スター
- 168
- フォーク
- 5
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/gebruder/wirken --skill calculatorコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Look up staff devices, assets, and locations in TeamDynamix (TDX). Given a list of names, emails, or partial identifiers, resolve each person and return the assets assigned to them with location, model, ownership type, and status. Read-only.
Security assessment of a codebase — minimal mode for runner validation
Daily fetch from a fixed public allowlist; score against the user's interests file; cluster into themes; push the digest to the configured channel
SOC 職業分類に基づく
SKILL.md を表示中
| name | calculator |
| description | Math calculations and unit conversions |
| disable-model-invocation | false |
| permissions | {"tools":{"allow":["exec"]},"egress":{"mode":"deny"},"inference":{"allow":["*"]}} |
Perform calculations using shell tools.
echo "scale=4; 355/113" | bc -lecho "scale=2; 847 * 0.15" | bc -lecho "2^32" | bcecho "scale=4; sqrt(2)" | bc -lFor complex math: python3 -c "import math; print(math.log2(1024))"
numfmt --to=iec 1073741824 (gives 1.0G)numfmt --from=iec 4G (gives 4294967296)python3 -c "c=37; print(f'{c}C = {c*9/5+32}F')"echo $(( ($(date -d 2025-12-31 +%s) - $(date +%s)) / 86400 )) daysdate -d "+30 days" +%Y-%m-%ddate -d @1700000000