/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.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install call-my-agent - After installation, invoke the skill by name or use
/call-my-agent - Provide required inputs per the skill's parameter spec and get structured output
What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 41 downloads so far.
How do I install Call My Agent?
Run "/install call-my-agent" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Call My Agent free?
Yes, Call My Agent is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Call My Agent support?
Call My Agent is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Call My Agent?
It is built and maintained by Omer Bese (@mrbese); the current version is v0.1.2.