mirror of
https://gitee.com/mateos/mateclaw.git
synced 2026-09-13 11:13:43 +08:00
18 lines
458 B
Java
18 lines
458 B
Java
package vip.mate.skill.lifecycle;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* A skill that satisfies the curator's idle time window but is kept out of
|
|
* the candidate set because it is explicitly bound to one or more enabled
|
|
* agents. Surfaced in the run report so an admin can see what was held back.
|
|
*
|
|
* @author MateClaw Team
|
|
*/
|
|
public record BlockedByBindingRow(
|
|
Long skillId,
|
|
String name,
|
|
List<Long> agentIds,
|
|
long daysIdle) {
|
|
}
|