Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled
Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11), free to diverge. Tree copied sans upstream .git; upstream remote added for future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19. Preserves docs/ARCHITECTURE.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
199 lines
7.3 KiB
Swift
199 lines
7.3 KiB
Swift
import Foundation
|
|
import OSLog
|
|
|
|
enum VoiceWakeForwarder {
|
|
private static let logger = Logger(subsystem: "ai.openclaw", category: "voicewake.forward")
|
|
|
|
static func prefixedTranscript(_ transcript: String, machineName: String? = nil) -> String {
|
|
let resolvedMachine = machineName
|
|
.flatMap { name -> String? in
|
|
let trimmed = name.trimmingCharacters(in: .whitespacesAndNewlines)
|
|
return trimmed.isEmpty ? nil : trimmed
|
|
}
|
|
?? Host.current().localizedName
|
|
?? ProcessInfo.processInfo.hostName
|
|
|
|
let safeMachine = resolvedMachine.isEmpty ? "this Mac" : resolvedMachine
|
|
return """
|
|
User talked via voice recognition on \(safeMachine) - repeat prompt first \
|
|
+ remember some words might be incorrectly transcribed.
|
|
|
|
\(transcript)
|
|
"""
|
|
}
|
|
|
|
enum VoiceWakeForwardError: LocalizedError, Equatable {
|
|
case rpcFailed(String)
|
|
|
|
var errorDescription: String? {
|
|
switch self {
|
|
case let .rpcFailed(message): message
|
|
}
|
|
}
|
|
}
|
|
|
|
struct ForwardOptions {
|
|
var sessionKey: String = "main"
|
|
var thinking: String?
|
|
var deliver: Bool = true
|
|
var to: String?
|
|
var channel: GatewayAgentChannel = .webchat
|
|
var voiceWakeTrigger: String?
|
|
}
|
|
|
|
private struct SessionListResponse: Decodable {
|
|
let sessions: [SessionRouteEntry]
|
|
}
|
|
|
|
struct SessionRouteEntry: Decodable, Equatable {
|
|
let key: String
|
|
let channel: String?
|
|
let lastChannel: String?
|
|
let lastTo: String?
|
|
let deliveryContext: DeliveryContext?
|
|
}
|
|
|
|
struct DeliveryContext: Decodable, Equatable {
|
|
let channel: String?
|
|
let to: String?
|
|
}
|
|
|
|
static func selectedSessionOptions(voiceWakeTrigger: String? = nil) async -> ForwardOptions {
|
|
let activeSessionKey = await MainActor.run { WebChatManager.shared.activeSessionKey }
|
|
let sessionKey: String = if let activeSessionKey = activeSessionKey?.trimmingCharacters(
|
|
in: .whitespacesAndNewlines),
|
|
!activeSessionKey.isEmpty
|
|
{
|
|
activeSessionKey
|
|
} else {
|
|
await GatewayConnection.shared.mainSessionKey()
|
|
}
|
|
|
|
let routeEntry = await self.loadSessionRouteEntry(sessionKey: sessionKey)
|
|
return self.forwardOptions(
|
|
sessionKey: sessionKey,
|
|
routeEntry: routeEntry,
|
|
voiceWakeTrigger: voiceWakeTrigger)
|
|
}
|
|
|
|
static func forwardOptions(
|
|
sessionKey: String,
|
|
routeEntry: SessionRouteEntry?,
|
|
voiceWakeTrigger: String? = nil) -> ForwardOptions
|
|
{
|
|
let parsedRoute = self.parseSessionKeyRoute(sessionKey)
|
|
let channelRaw = self.firstNonEmpty(
|
|
routeEntry?.deliveryContext?.channel,
|
|
routeEntry?.lastChannel,
|
|
routeEntry?.channel,
|
|
parsedRoute?.channel)
|
|
let channel = channelRaw
|
|
.flatMap { GatewayAgentChannel(rawValue: $0.trimmingCharacters(in: .whitespacesAndNewlines).lowercased()) }
|
|
?? .webchat
|
|
let to = self.firstNonEmpty(
|
|
routeEntry?.deliveryContext?.to,
|
|
routeEntry?.lastTo,
|
|
parsedRoute?.to)
|
|
|
|
return ForwardOptions(
|
|
sessionKey: sessionKey,
|
|
deliver: true,
|
|
to: to,
|
|
channel: channel,
|
|
voiceWakeTrigger: voiceWakeTrigger)
|
|
}
|
|
|
|
@discardableResult
|
|
static func forwardToSelectedSession(
|
|
transcript: String,
|
|
voiceWakeTrigger: String? = nil) async -> Result<Void, VoiceWakeForwardError>
|
|
{
|
|
let options = await self.selectedSessionOptions(voiceWakeTrigger: voiceWakeTrigger)
|
|
return await self.forward(transcript: transcript, options: options)
|
|
}
|
|
|
|
@discardableResult
|
|
static func forward(
|
|
transcript: String,
|
|
options: ForwardOptions = ForwardOptions()) async -> Result<Void, VoiceWakeForwardError>
|
|
{
|
|
let payload = Self.prefixedTranscript(transcript)
|
|
let deliver = options.channel.shouldDeliver(options.deliver)
|
|
let result = await GatewayConnection.shared.sendAgent(GatewayAgentInvocation(
|
|
message: payload,
|
|
sessionKey: options.sessionKey,
|
|
thinking: options.thinking,
|
|
deliver: deliver,
|
|
to: options.to,
|
|
channel: options.channel,
|
|
voiceWakeTrigger: options.voiceWakeTrigger))
|
|
|
|
if result.ok {
|
|
self.logger.info("voice wake forward ok")
|
|
return .success(())
|
|
}
|
|
|
|
let message = result.error ?? "agent rpc unavailable"
|
|
self.logger.error("voice wake forward failed: \(message, privacy: .public)")
|
|
return .failure(.rpcFailed(message))
|
|
}
|
|
|
|
static func checkConnection() async -> Result<Void, VoiceWakeForwardError> {
|
|
let status = await GatewayConnection.shared.status()
|
|
if status.ok { return .success(()) }
|
|
return .failure(.rpcFailed(status.error ?? "agent rpc unreachable"))
|
|
}
|
|
|
|
private static func loadSessionRouteEntry(sessionKey: String) async -> SessionRouteEntry? {
|
|
do {
|
|
let data = try await GatewayConnection.shared.request(
|
|
method: "sessions.list",
|
|
params: [
|
|
"includeGlobal": AnyCodable(false),
|
|
"includeUnknown": AnyCodable(false),
|
|
"limit": AnyCodable(500),
|
|
],
|
|
timeoutMs: 10000)
|
|
let response = try JSONDecoder().decode(SessionListResponse.self, from: data)
|
|
return response.sessions.first {
|
|
$0.key.trimmingCharacters(in: .whitespacesAndNewlines)
|
|
.caseInsensitiveCompare(sessionKey.trimmingCharacters(in: .whitespacesAndNewlines)) == .orderedSame
|
|
}
|
|
} catch {
|
|
self.logger.debug(
|
|
"voice wake selected route lookup failed: \(error.localizedDescription, privacy: .public)")
|
|
return nil
|
|
}
|
|
}
|
|
|
|
private static func parseSessionKeyRoute(_ sessionKey: String) -> (channel: String, to: String?)? {
|
|
let trimmed = sessionKey.trimmingCharacters(in: .whitespacesAndNewlines)
|
|
guard !trimmed.isEmpty else { return nil }
|
|
let rawParts = trimmed.split(separator: ":", omittingEmptySubsequences: true).map(String.init)
|
|
let body: [String] = if rawParts.count >= 3, rawParts[0].caseInsensitiveCompare("agent") == .orderedSame {
|
|
Array(rawParts.dropFirst(2))
|
|
} else {
|
|
rawParts
|
|
}
|
|
guard body.count >= 3 else { return nil }
|
|
let kind = body[1].trimmingCharacters(in: .whitespacesAndNewlines).lowercased()
|
|
guard kind == "direct" || kind == "group" || kind == "channel" else { return nil }
|
|
let channel = body[0].trimmingCharacters(in: .whitespacesAndNewlines)
|
|
guard !channel.isEmpty else { return nil }
|
|
let to = body.dropFirst(2)
|
|
.joined(separator: ":")
|
|
.trimmingCharacters(in: .whitespacesAndNewlines)
|
|
return (channel: channel, to: to.isEmpty ? nil : to)
|
|
}
|
|
|
|
private static func firstNonEmpty(_ values: String?...) -> String? {
|
|
for value in values {
|
|
let trimmed = value?.trimmingCharacters(in: .whitespacesAndNewlines)
|
|
if let trimmed, !trimmed.isEmpty {
|
|
return trimmed
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
}
|