style(swift): run swiftformat + swiftlint autocorrect

This commit is contained in:
Peter Steinberger
2026-02-15 05:38:07 +01:00
parent 511ba938fb
commit 8725c2b19f
101 changed files with 771 additions and 482 deletions
@@ -1,5 +1,5 @@
import OpenClawProtocol
import Foundation
import OpenClawProtocol
struct SkillsStatusReport: Codable {
let workspaceDir: String
@@ -25,7 +25,9 @@ struct SkillStatus: Codable, Identifiable {
let configChecks: [SkillStatusConfigCheck]
let install: [SkillInstallOption]
var id: String { self.name }
var id: String {
self.name
}
}
struct SkillRequirements: Codable {
@@ -45,7 +47,9 @@ struct SkillStatusConfigCheck: Codable, Identifiable {
let value: AnyCodable?
let satisfied: Bool
var id: String { self.path }
var id: String {
self.path
}
}
struct SkillInstallOption: Codable, Identifiable {