mirror of
https://gitee.com/mateos/mateclaw.git
synced 2026-09-13 03:13:41 +08:00
9 lines
353 B
Java
9 lines
353 B
Java
package vip.mate.goal.model;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
/** Explicit continuation outcome shared by graph compatibility and durable scheduling. */
|
|
public record GoalContinuationDecision(Action action, String prompt, LocalDateTime nextRunAt, String reason) {
|
|
public enum Action { CONTINUE, DEFER, DISABLED, COMPLETE, BUDGET_LIMITED, RETRY }
|
|
}
|