/install call-my-agent
Call My Agent
Source
- Public app repository:
https://github.com/mrbese/call-my-agent - V1 runtime: OpenClaw only.
- Roadmap only: Hermes, custom command adapters, Codex, and ChatGPT App.
Security Review Notes
This skill describes setup for a local voice app. It must treat the following actions as explicit user-confirmation gates:
- Cloning, downloading, or updating the external app repository.
- Running
npm installor any package install command. - Writing or enabling macOS LaunchAgent or Linux systemd user-service files.
- Enabling, changing, or disabling Tailscale Serve routes.
- Starting a long-running local service.
The agent must show the target source before install:
https://github.com/mrbese/call-my-agent
The agent must prefer the latest tagged or release version when available. If installing from a branch, it must say so plainly before proceeding.
The agent must not request, print, paste, or store OpenAI API keys in chat. OpenAI keys should be resolved from existing OpenClaw auth profiles first. If a new key is needed, use OpenClaw's normal local auth flow.
The app must bind to 127.0.0.1 by default. If the user explicitly asks for
another bind host, explain the LAN/public exposure risk and ask for
confirmation before changing it. Never silently bind to 0.0.0.0.
Remote access must use Tailscale Serve by default, not a public tunnel, and must require confirmation before it is enabled.
Every persistence or remote-access setup path must include the corresponding teardown command before or immediately after enabling it.
Contract
This skill guarantees:
- Sets up one private voice line for one OpenClaw agent, usually
main. - Reuses existing OpenClaw
openai:*auth profiles before asking for a key. - Stores any newly supplied OpenAI key in OpenClaw auth, not in a Call My Agent-specific secret store.
- Runs the voice app locally and binds to
127.0.0.1by default. - Uses Tailscale Serve as the default remote access boundary.
- Prints a privacy check that explains what leaves the machine.
Phases
- Inspect the host.
- Confirm OpenClaw is installed.
- List available OpenClaw agents.
- Default to
mainunless the user chooses another agent. - Check whether Tailscale is installed and logged in.
- Resolve OpenAI auth.
- Check the target agent's OpenClaw
openai:*auth profiles. - Honor OpenClaw provider order when profiles exist.
- If no usable profile exists, ask for an OpenAI API key once and save it through OpenClaw's normal auth flow.
- Do not send keys to any Call My Agent service. There is no hosted backend.
- Check the target agent's OpenClaw
- Install the local app.
- Ask for confirmation before cloning, downloading, or updating the
call-my-agentapp in the configured local app directory. - Show the public app repository before install:
https://github.com/mrbese/call-my-agent. - Prefer a tagged release or pinned commit. If using a branch, say so.
- Run
npm run setup:openclawto generate.env.local, preserve existing local values, create a local incoming-call token, and inspect OpenClaw auth without printing secrets. - Ask for confirmation before running
npm install. - Keep generated local state out of publishable artifacts.
- Ask for confirmation before cloning, downloading, or updating the
- Configure service management.
- Start the app bound to
127.0.0.1by default. - If the user requests another bind host, explain the exposure risk and ask for confirmation before changing it.
- Offer, but do not silently install,
deploy/macos/ai.openclaw.call-my-agent.plist. - Offer, but do not silently install,
deploy/linux/call-my-agent.service. - Ask for confirmation before writing or enabling any persistence file.
- Provide the clean stop/uninstall path before or immediately after enabling persistence.
- Start the app bound to
- Configure private phone access.
- Offer Tailscale Serve for remote access:
npm run tailscale:setup. - Use
npm run tailscale:teardownto disable the Serve route. - Do not set up public tunnels by default.
- Ask for confirmation before enabling or changing Tailscale Serve.
- For incoming calls, require a call token when remote access is enabled.
- Offer Tailscale Serve for remote access:
- Verify and report.
- Run
npm run doctor. - Check that the local page loads.
- Check that
/api/toolsreturns the expected tools. - Check that OpenAI Realtime session creation works.
- Print the private Tailscale URL and privacy check.
- Run
Output Format
Good setup output looks like:
Call My Agent is ready.
Agent: OpenClaw main
Local URL: http://127.0.0.1:3000
Private phone URL: https://your-machine.your-tailnet.ts.net:8443/
Privacy check:
App hosting: your machine
Voice transport: OpenAI Realtime API
Agent runtime: local OpenClaw
Remote access: your Tailscale network
Phone provider: none
Hosted backend: none
Call My Agent API: none
App account: none
API keys collected: no
Anti-Patterns
- Claiming this creates carrier/PSTN phone calls. These are private internet voice sessions.
- Asking users to create a Twilio account or rent a phone number.
- Binding the app to
0.0.0.0during default setup. - Creating a public tunnel as the default remote access path.
- Storing OpenAI keys in a Call My Agent-specific remote service.
- Presenting Hermes, Codex, ChatGPT Apps, or custom command support as v1 features before those adapters exist.
Tools Used
- Shell commands for OpenClaw, npm, Tailscale, LaunchAgent, and systemd setup.
- Filesystem edits for local app configuration and service files.
- OpenClaw auth profile commands for key storage and provider ordering.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install call-my-agent - 安装完成后,直接呼叫该 Skill 的名称或使用
/call-my-agent触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Call My Agent 是什么?
Create a private phone line between you and your OpenClaw agent. Call your agent from your phone, or let your agent call you, without Twilio or phone number... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 41 次。
如何安装 Call My Agent?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install call-my-agent」即可一键安装,无需额外配置。
Call My Agent 是免费的吗?
是的,Call My Agent 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Call My Agent 支持哪些平台?
Call My Agent 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Call My Agent?
由 Omer Bese(@mrbese)开发并维护,当前版本 v0.1.2。