Files
hanzo-devandzeekay 107d1213b6 Eradicate OpenClaw — resolve merge conflicts and finish the rebrand
Three coordinated things:

1. Resolve the committed upstream/main merge conflicts. 94 files were
   sitting with raw <<<<<<< HEAD ... >>>>>>> upstream/main blocks. Every
   conflict had HanzoBot/Bot on HEAD and OpenClaw on upstream. Resolved
   by keeping HEAD everywhere — 540 conflict blocks.

2. Rewrite remaining OpenClaw text refs.
     OPENCLAW   → HANZO_BOT
     OpenClaw   → HanzoBot          (PascalCase type identifiers)
     openclaw   → bot               (codebase convention — botToken,
                                    botUsername etc.; avoids invalid
                                    hyphenated JS identifiers)
     openclaw[_]/openclaw[A-Z] → bot[_]/bot[A-Z]   (compound)
     ai.openclaw.x → ai.hanzo.bot.x  (JVM package path)

3. Delete or rename openclaw-named file paths (116 of them). Dead
   duplicates with a Bot-named canonical from the partial migration:
   deleted. Otherwise renamed.
     ai/openclaw/**           → deleted (ai/hanzo/bot/** canonical)
     Sources/OpenClaw*/       → deleted (Sources/Bot* canonical)
     Tests/OpenClawIPCTests/  → deleted (Tests/BotIPCTests canonical)
     OpenClawKit/             → deleted (BotKit canonical)
     openclaw-tools.*.ts      → deleted (bot-tools.*.ts canonical)
     openclaw-root.ts etc.    → deleted (bot-root.ts canonical)
     types.openclaw.ts        → deleted (types.bot.ts canonical)
     extensions/*/openclaw.plugin.json → renamed hanzo-bot.plugin.json
     docs/start/openclaw.md   → renamed hanzo-bot.md (+ zh-CN)
     docs/assets/openclaw-*.png, whatsapp-openclaw*.jpg → deleted
     scripts/.../openclaw-*   → deleted (bot/hanzo-bot parallels)
     openclaw.mjs             → deleted (hanzo-bot.mjs is package.bin)

Then patched 65 broken JS/TS import strings where hanzo-bot had ended
up inside an import path ('./types.hanzo-bot.js' → './types.bot.js'
etc., since the on-disk filename uses the brand-neutral bot- prefix).

Pre-existing lint debt cleaned up to get oxlint --type-aware to 0/0:
removed the dead i18n test that referenced a path no longer existing;
defined the missing DIDConfig and WalletConfig types in types.base.ts
(they were imported but never declared); dropped unused imports;
collapsed redundant type assertion and a tautological meta.bot lookup
that the openclaw→bot rename made redundant.

The a2ui.bundle.js generated artifact is kept at its pre-rebrand
contents — it gets regenerated by 'pnpm canvas:a2ui:bundle' from
sources I cannot rebuild in this commit; the source side is clean.

Verified: 0 occurrences of openclaw (case-insensitive) in tree source
content, 0 file or directory paths with openclaw in the name; oxlint
--type-aware src test reports 0/0.
2026-06-10 20:01:57 -07:00
..
2026-01-30 03:16:21 +01:00

🎙️ swabble — Speech.framework wake-word hook daemon (macOS 26)

swabble is a Swift 6.2 wake-word hook daemon. The CLI targets macOS 26 (SpeechAnalyzer + SpeechTranscriber). The shared SwabbleKit target is multi-platform and exposes wake-word gating utilities for iOS/macOS apps.

  • Local-only: Speech.framework on-device models; zero network usage.
  • Wake word: Default clawd (aliases claude), optional --no-wake bypass.
  • SwabbleKit: Shared wake gate utilities (gap-based gating when you provide speech segments).
  • Hooks: Run any command with prefix/env, cooldown, min_chars, timeout.
  • Services: launchd helper stubs for start/stop/install.
  • File transcribe: TXT or SRT with time ranges (using AttributedString splits).

Quick start

# Install deps
brew install swiftformat swiftlint

# Build
swift build

# Write default config (~/.config/swabble/config.json)
swift run swabble setup

# Run foreground daemon
swift run swabble serve

# Test your hook
swift run swabble test-hook "hello world"

# Transcribe a file to SRT
swift run swabble transcribe /path/to/audio.m4a --format srt --output out.srt

Use as a library

Add swabble as a SwiftPM dependency and import the Swabble or SwabbleKit product:

// Package.swift
dependencies: [
    .package(url: "https://github.com/steipete/swabble.git", branch: "main"),
],
targets: [
    .target(name: "MyApp", dependencies: [
        .product(name: "Swabble", package: "swabble"),     // Speech pipeline (macOS 26+ / iOS 26+)
        .product(name: "SwabbleKit", package: "swabble"),  // Wake-word gate utilities (iOS 17+ / macOS 15+)
    ]),
]

CLI

  • serve — foreground loop (mic → wake → hook)
  • transcribe <file> — offline transcription (txt|srt)
  • test-hook "text" — invoke configured hook
  • mic list|set <index> — enumerate/select input device
  • setup — write default config JSON
  • doctor — check Speech auth & device availability
  • health — prints ok
  • tail-log — last 10 transcripts
  • status — show wake state + recent transcripts
  • service install|uninstall|status — user launchd plist (stub: prints launchctl commands)
  • start|stop|restart — placeholders until full launchd wiring

All commands accept Commander runtime flags (-v/--verbose, --json-output, --log-level), plus --config where applicable.

Config

~/.config/swabble/config.json (auto-created by setup):

{
  "audio": {"deviceName": "", "deviceIndex": -1, "sampleRate": 16000, "channels": 1},
  "wake": {"enabled": true, "word": "clawd", "aliases": ["claude"]},
  "hook": {
    "command": "",
    "args": [],
    "prefix": "Voice swabble from ${hostname}: ",
    "cooldownSeconds": 1,
    "minCharacters": 24,
    "timeoutSeconds": 5,
    "env": {}
  },
  "logging": {"level": "info", "format": "text"},
  "transcripts": {"enabled": true, "maxEntries": 50},
  "speech": {"localeIdentifier": "en_US", "etiquetteReplacements": false}
}
  • Config path override: --config /path/to/config.json on relevant commands.
  • Transcripts persist to ~/Library/Application Support/swabble/transcripts.log.

Hook protocol

When a wake-gated transcript passes min_chars & cooldown, swabble runs:

<command> <args...> "<prefix><text>"

Environment variables:

  • SWABBLE_TEXT — stripped transcript (wake word removed)
  • SWABBLE_PREFIX — rendered prefix (hostname substituted)
  • plus any hook.env key/values

Speech pipeline

  • AVAudioEngine tap → BufferConverterAnalyzerInputSpeechAnalyzer with a SpeechTranscriber module.
  • Requests volatile + final results; the CLI uses text-only wake gating today.
  • Authorization requested at first start; requires macOS 26 + new Speech.framework APIs.

Development

  • Format: ./scripts/format.sh (uses local .swiftformat)
  • Lint: ./scripts/lint.sh (uses local .swiftlint.yml)
  • Tests: swift test (uses swift-testing package)

Roadmap

  • launchd control (load/bootout, PID + status socket)
  • JSON logging + PII redaction toggle
  • Stronger wake-word detection and control socket status/health