Skills mobayilo-voice

Place outbound phone calls via Mobayilo with safe defaults (preview mode by default) and explicit live execution.

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/adusingi/mobayilo-voice" ~/.claude/skills/openclaw-skills-mobayilo-voice && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/adusingi/mobayilo-voice" ~/.openclaw/skills/openclaw-skills-mobayilo-voice && rm -rf "$T"
manifest: skills/adusingi/mobayilo-voice/SKILL.md
source content

Mobayilo Voice (Beta)

Use this skill when a workflow needs a real phone call step (booking, confirmation, follow-up).

Safety model

  • Default behavior is preview mode (no real call is dialed).
  • Real call requires explicit live execution (
    --execute
    ).
  • Callback and fallback behavior are explicit options.

Actions

1) Check readiness

cd {workspace}/integrations/mobayilo_voice
PYTHONPATH=. python actions/check_status.py

2) Start call (preview mode)

cd {workspace}/integrations/mobayilo_voice
PYTHONPATH=. python actions/start_call.py --destination +14155550123 --country US

3) Start real call

cd {workspace}/integrations/mobayilo_voice
PYTHONPATH=. python actions/start_call.py \
  --destination +14155550123 \
  --country US \
  --execute

Optional controls

  • --approved
    (when approval gate is enabled)
  • --callback
  • --fallback-callback
  • --require-agent-ready

Outputs

  • Human-friendly summary line for operators
  • JSON payload for automation pipelines

Known limitation (Beta)

Desktop agent-mode call progression messaging is still being refined for fully human-friendly UX in all environments.