Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/crates/assembly/core/src/agentic/core/message.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ pub enum InternalReminderKind {
InterruptedContinue,
ThinkingOnlyRescue,
FinalizeCacheAnchor,
/// Marks a retained suffix whose earlier exchanges in the same turn were compacted.
RecentContextBoundary,
/// Re-establishes execution after compaction; replaced by the next compaction.
CompressionContinuation,
/// A Stop hook blocked the end of a turn and asked the agent to continue.
StopHookBlock,
/// Model-visible context contributed by a SessionStart or
Expand Down Expand Up @@ -147,6 +147,7 @@ impl InternalReminderKind {
| Self::InterruptedContinue
| Self::ThinkingOnlyRescue
| Self::FinalizeCacheAnchor
| Self::CompressionContinuation
// Mid-turn scaffolding: the Stop hook's feedback matters only
// while the reopened turn is still running. HookContext is
// deliberately absent — it carries real context a hook asked
Expand Down
Loading