Files
openclaw/apps/shared/OpenClawKit/Sources/OpenClawProtocol/AgentSummary+Kind.swift
Peter Steinberger 49ff6a4497 fix(protocol): classify system agents in rosters (#111920)
* fix(protocol): classify system agents in rosters

* fix(ci): align agent kind client gates

* fix(ci): keep roster filtering in startup bundle

* chore(ui): remove superseded roster module

* style(android): satisfy agent kind test formatting

* style(linux): format merged agent capability assertion

* fix(config): reject reserved system agent ids

* chore(i18n): refresh native source inventory

* style(android): format agent kind surfaces

* fix(gateway): preserve configured agent ownership
2026-07-20 16:57:04 -07:00

8 lines
117 B
Swift

import Foundation
extension AgentSummary {
public var isSelectableAgent: Bool {
kind != .system
}
}