2025-12-18 02:12:53 +01:00
|
|
|
import Foundation
|
|
|
|
|
|
2026-01-30 03:15:10 +01:00
|
|
|
public enum OpenClawCapability: String, Codable, Sendable {
|
2025-12-18 02:12:53 +01:00
|
|
|
case canvas
|
|
|
|
|
case camera
|
2025-12-19 02:56:48 +01:00
|
|
|
case screen
|
2025-12-18 02:12:53 +01:00
|
|
|
case voiceWake
|
2026-01-04 00:54:44 +01:00
|
|
|
case location
|
2026-02-08 18:08:13 +01:00
|
|
|
case device
|
2026-02-18 13:37:41 +00:00
|
|
|
case watch
|
2026-02-08 18:08:13 +01:00
|
|
|
case photos
|
|
|
|
|
case contacts
|
|
|
|
|
case calendar
|
|
|
|
|
case reminders
|
|
|
|
|
case motion
|
2025-12-18 02:12:53 +01:00
|
|
|
}
|