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
220 lines
7.2 KiB
Swift
220 lines
7.2 KiB
Swift
import Foundation
|
|
|
|
public struct WakeWordSegment: Sendable, Equatable {
|
|
public let text: String
|
|
public let start: TimeInterval
|
|
public let duration: TimeInterval
|
|
public let range: Range<String.Index>?
|
|
|
|
public init(text: String, start: TimeInterval, duration: TimeInterval, range: Range<String.Index>? = nil) {
|
|
self.text = text
|
|
self.start = start
|
|
self.duration = duration
|
|
self.range = range
|
|
}
|
|
|
|
public var end: TimeInterval {
|
|
self.start + self.duration
|
|
}
|
|
}
|
|
|
|
public struct WakeWordGateConfig: Sendable, Equatable {
|
|
public var triggers: [String]
|
|
public var minPostTriggerGap: TimeInterval
|
|
public var minCommandLength: Int
|
|
|
|
public init(
|
|
triggers: [String],
|
|
minPostTriggerGap: TimeInterval = 0.45,
|
|
minCommandLength: Int = 1)
|
|
{
|
|
self.triggers = triggers
|
|
self.minPostTriggerGap = minPostTriggerGap
|
|
self.minCommandLength = minCommandLength
|
|
}
|
|
}
|
|
|
|
public struct WakeWordGateMatch: Sendable, Equatable {
|
|
public let triggerEndTime: TimeInterval
|
|
public let postGap: TimeInterval
|
|
public let command: String
|
|
public let trigger: String?
|
|
|
|
public init(
|
|
triggerEndTime: TimeInterval,
|
|
postGap: TimeInterval,
|
|
command: String,
|
|
trigger: String? = nil)
|
|
{
|
|
self.triggerEndTime = triggerEndTime
|
|
self.postGap = postGap
|
|
self.command = command
|
|
self.trigger = trigger
|
|
}
|
|
}
|
|
|
|
public enum WakeWordGate {
|
|
private struct Token {
|
|
let normalized: String
|
|
let start: TimeInterval
|
|
let end: TimeInterval
|
|
let range: Range<String.Index>?
|
|
let text: String
|
|
}
|
|
|
|
private struct TriggerTokens {
|
|
let source: String
|
|
let tokens: [String]
|
|
}
|
|
|
|
private struct MatchCandidate {
|
|
let index: Int
|
|
let endIndex: Int
|
|
let tokenCount: Int
|
|
let triggerEnd: TimeInterval
|
|
let gap: TimeInterval
|
|
let trigger: String
|
|
}
|
|
|
|
public static func match(
|
|
transcript: String,
|
|
segments: [WakeWordSegment],
|
|
config: WakeWordGateConfig)
|
|
-> WakeWordGateMatch? {
|
|
let triggerTokens = self.normalizeTriggers(config.triggers)
|
|
guard !triggerTokens.isEmpty else { return nil }
|
|
|
|
let tokens = self.normalizeSegments(segments)
|
|
guard !tokens.isEmpty else { return nil }
|
|
|
|
var best: MatchCandidate?
|
|
|
|
for trigger in triggerTokens {
|
|
let count = trigger.tokens.count
|
|
guard count > 0, tokens.count > count else { continue }
|
|
for i in 0...(tokens.count - count - 1) {
|
|
let matched = (0..<count).allSatisfy { tokens[i + $0].normalized == trigger.tokens[$0] }
|
|
if !matched { continue }
|
|
|
|
let triggerEnd = tokens[i + count - 1].end
|
|
let nextToken = tokens[i + count]
|
|
let gap = nextToken.start - triggerEnd
|
|
if gap < config.minPostTriggerGap { continue }
|
|
|
|
let endIndex = i + count - 1
|
|
if let best {
|
|
if endIndex < best.endIndex { continue }
|
|
if endIndex == best.endIndex, count <= best.tokenCount { continue }
|
|
}
|
|
|
|
best = MatchCandidate(
|
|
index: i,
|
|
endIndex: endIndex,
|
|
tokenCount: count,
|
|
triggerEnd: triggerEnd,
|
|
gap: gap,
|
|
trigger: trigger.source)
|
|
}
|
|
}
|
|
|
|
guard let best else { return nil }
|
|
let command = self.commandText(transcript: transcript, segments: segments, triggerEndTime: best.triggerEnd)
|
|
.trimmingCharacters(in: Self.whitespaceAndPunctuation)
|
|
guard command.count >= config.minCommandLength else { return nil }
|
|
return WakeWordGateMatch(
|
|
triggerEndTime: best.triggerEnd,
|
|
postGap: best.gap,
|
|
command: command,
|
|
trigger: best.trigger)
|
|
}
|
|
|
|
public static func commandText(
|
|
transcript _: String,
|
|
segments: [WakeWordSegment],
|
|
triggerEndTime: TimeInterval)
|
|
-> String {
|
|
let threshold = triggerEndTime + 0.001
|
|
var commandWords: [String] = []
|
|
commandWords.reserveCapacity(segments.count)
|
|
for segment in segments where segment.start >= threshold {
|
|
let normalized = normalizeToken(segment.text)
|
|
if normalized.isEmpty { continue }
|
|
commandWords.append(segment.text)
|
|
}
|
|
return commandWords.joined(separator: " ").trimmingCharacters(in: Self.whitespaceAndPunctuation)
|
|
}
|
|
|
|
public static func matchesTextOnly(text: String, triggers: [String]) -> Bool {
|
|
guard !text.isEmpty else { return false }
|
|
let normalized = text.lowercased()
|
|
for trigger in triggers {
|
|
let token = trigger.trimmingCharacters(in: self.whitespaceAndPunctuation).lowercased()
|
|
if token.isEmpty { continue }
|
|
if normalized.contains(token) { return true }
|
|
}
|
|
return false
|
|
}
|
|
|
|
public static func stripWake(text: String, triggers: [String]) -> String {
|
|
var out = text
|
|
for trigger in triggers {
|
|
let token = trigger.trimmingCharacters(in: self.whitespaceAndPunctuation)
|
|
guard !token.isEmpty else { continue }
|
|
out = out.replacingOccurrences(of: token, with: "", options: [.caseInsensitive])
|
|
}
|
|
return out.trimmingCharacters(in: self.whitespaceAndPunctuation)
|
|
}
|
|
|
|
private static func normalizeTriggers(_ triggers: [String]) -> [TriggerTokens] {
|
|
var output: [TriggerTokens] = []
|
|
for trigger in triggers {
|
|
let tokens = trigger
|
|
.split(whereSeparator: { $0.isWhitespace })
|
|
.map { self.normalizeToken(String($0)) }
|
|
.filter { !$0.isEmpty }
|
|
if tokens.isEmpty { continue }
|
|
output.append(TriggerTokens(source: tokens.joined(separator: " "), tokens: tokens))
|
|
}
|
|
return output
|
|
}
|
|
|
|
private static func normalizeSegments(_ segments: [WakeWordSegment]) -> [Token] {
|
|
segments.compactMap { segment in
|
|
let normalized = self.normalizeToken(segment.text)
|
|
guard !normalized.isEmpty else { return nil }
|
|
return Token(
|
|
normalized: normalized,
|
|
start: segment.start,
|
|
end: segment.end,
|
|
range: segment.range,
|
|
text: segment.text)
|
|
}
|
|
}
|
|
|
|
private static func normalizeToken(_ token: String) -> String {
|
|
token
|
|
.trimmingCharacters(in: self.whitespaceAndPunctuation)
|
|
.lowercased()
|
|
}
|
|
|
|
private static let whitespaceAndPunctuation = CharacterSet.whitespacesAndNewlines
|
|
.union(.punctuationCharacters)
|
|
}
|
|
|
|
#if canImport(Speech)
|
|
import Speech
|
|
|
|
public enum WakeWordSpeechSegments {
|
|
public static func from(transcription: SFTranscription, transcript: String) -> [WakeWordSegment] {
|
|
transcription.segments.map { segment in
|
|
let range = Range(segment.substringRange, in: transcript)
|
|
return WakeWordSegment(
|
|
text: segment.substring,
|
|
start: segment.timestamp,
|
|
duration: segment.duration,
|
|
range: range)
|
|
}
|
|
}
|
|
}
|
|
#endif
|