ワンクリックで
call
Telephony actions — dial a contact/number, redial, hang up, answer. Mock backend (no real telephony). Pure execution.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Telephony actions — dial a contact/number, redial, hang up, answer. Mock backend (no real telephony). Pure execution.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Application control — open/launch, close/quit, and switch-to a running app by name. Mock backend. Pure execution.
Drive the user's real browser (Chromium/Brave/Chrome) — open url, web search, read page text, click, type, screenshot, list/switch tabs. Real backend = Playwright connect_over_cdp (attaches to your existing browser); mock for the binding benchmark. Pure execution (slot-filled, no LLM).
Unified time control — countdown timers, absolute-time alarms (with optional repeat), and current/world time. The one skill that ACTUALLY fires (systemd-run --user) when ALFRED_CLOCK_REAL=1; mock for the binding benchmark. Pure execution.
Connectivity + UI toggles — wifi, bluetooth, airplane mode, do-not-disturb, dark mode, each on/off. Mock backend. Pure execution.
Manage Docker containers — start/stop/restart, remove, show logs, list running containers. Pure execution, no communication. Mock backend (binding-only) for the thesis benchmark.
Local media processing with ffmpeg — extract audio to MP3, transcode formats, trim segments, capture frames, resize, and concatenate. Real ffmpeg binary; deterministic, offline, no network. Binding-only in the thesis benchmark.
| name | call |
| description | Telephony actions — dial a contact/number, redial, hang up, answer. Mock backend (no real telephony). Pure execution. |
Place and control phone calls. Canonical reflexer case.
Mock / binding-only. Echoes JSON; no telephony. A real backend would bridge to a phone link (KDE Connect / GSConnect) or a SIP client.
CLI: python3 agents/skills/call/call.py <command> (aliased call).
call dial --to "<contact name or number>"
call redial
call hangup
call answer
One JSON line: {"ok":bool,"data":{...},"error":null|{...},"meta":{"mock":true}}. Exit 0/2.
composite_call_contact chains contacts search --query "<name>" → call dial --to "<name>" (resolve a name to a number, then dial) — the classic two-tier name→number→action.
dial (needs a target) vs redial/hangup/answer (no target) is the within-skill split.