# Send hotbutter voice chat to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "hotbutter",
    "name": "hotbutter voice chat",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/michael-stajer/hotbutter",
    "canonicalUrl": "https://clawhub.ai/michael-stajer/hotbutter",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/hotbutter",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hotbutter",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "index.html",
      "package.json",
      "SKILL.md",
      "lib/relay-client.js",
      "lib/agent-bridge.js",
      "bin/voice-bridge.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "hotbutter",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T23:46:36.209Z",
      "expiresAt": "2026-05-08T23:46:36.209Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hotbutter",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hotbutter",
        "contentDisposition": "attachment; filename=\"hotbutter-1.0.6.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "hotbutter"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/hotbutter"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/hotbutter",
    "downloadUrl": "https://openagent3.xyz/downloads/hotbutter",
    "agentUrl": "https://openagent3.xyz/skills/hotbutter/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hotbutter/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hotbutter/agent.md"
  }
}
```
## Documentation

### Hotbutter Voice Skill (Hosted Relay)

This skill routes data through hotbutter.ai. Voice transcripts and agent responses are transmitted through the hosted relay server at wss://hotbutter.ai. This is a convenience skill — not a private or local-only solution.

For a fully local alternative where no data leaves your machine, see hotbutter-os.

For updates, follow @DnuLkjkjh.

### Privacy & Data Flow

Data that transits through hotbutter.ai:

Transcribed speech text (from browser speech-to-text)
Agent response text (stdout from your local openclaw binary)

Warning: If your agent prints sensitive information (secrets, credentials, private data), that output will be sent through the relay. Avoid running agents that output secrets, or use --relay-url to point to a relay you control.

Data that stays local:

Raw audio (processed in the browser, never transmitted)
The openclaw binary execution (runs on your machine)
Config file (~/.hotbutter)

### Required Dependencies

openclaw CLI — must be installed and on your PATH

### How It Works

This skill connects via WebSocket to wss://hotbutter.ai
A pairing code and URL (https://hotbutter.ai/app?code=XXXXXX) are printed
Open the URL in your browser to start a voice session
Browser speech-to-text converts your voice to text, sent through the relay to this skill
This skill executes openclaw agent --session-id <id> -m <text> on your machine
The agent's text response is sent back through the relay and spoken via browser TTS

### Usage

# Start (connects to hotbutter.ai by default)
voice-bridge start

# Use your own relay for privacy
voice-bridge start --relay-url wss://your-relay.example.com

# Custom agent display name
voice-bridge start --agent-name "My Agent"

### Configuration

OptionDefaultDescription--relay-urlwss://hotbutter.aiRelay WebSocket URL. Change this to use your own relay.--agent-nameAgentDisplay name shown in the voice client

### First Run

On first run, the skill will prompt for an optional email (stored locally in ~/.hotbutter). Subsequent runs connect immediately.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: michael-stajer
- Version: 1.0.6
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T23:46:36.209Z
- Expires at: 2026-05-08T23:46:36.209Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/hotbutter)
- [Send to Agent page](https://openagent3.xyz/skills/hotbutter/agent)
- [JSON manifest](https://openagent3.xyz/skills/hotbutter/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/hotbutter/agent.md)
- [Download page](https://openagent3.xyz/downloads/hotbutter)