1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
//! Context-compaction payloads for [`SessionEvent`].
//!
//! These types describe the lifecycle of a single compaction attempt and
//! its fallback cascade:
//!
//! ```text
//! CompactionStarted
//! │
//! ▼
//! ┌──────────┐ success ┌────────────────────┐
//! │ RLM │ ────────────────────▶ │ CompactionCompleted│
//! └──────────┘ └────────────────────┘
//! │ exhausted / failed ▲
//! ▼ │ success
//! ┌──────────────┐ still over budget ┌────────────┐
//! │chunk-compress│ ────────────────────▶ │ truncate │
//! └──────────────┘ └────────────┘
//! │ success │ still fails
//! ▼ ▼
//! CompactionCompleted CompactionFailed
//! ```
//!
//! [`SessionEvent`]: crate::session::SessionEvent
use ;
use Uuid;
/// Which fallback path the compaction pipeline selected.
///
/// Ordered from highest to lowest fidelity. Emitting this as structured
/// telemetry (rather than a free-form `reason` string) is what lets the
/// trace-driven self-tuning job group runs by strategy.
///
/// # Examples
///
/// ```rust
/// use codetether_agent::session::FallbackStrategy;
///
/// assert_eq!(FallbackStrategy::Rlm.as_str(), "rlm");
/// assert!(FallbackStrategy::Truncate.is_terminal());
/// assert!(!FallbackStrategy::Rlm.is_terminal());
/// ```
/// Emitted when a compaction pass begins.
///
/// # Examples
///
/// ```rust
/// use codetether_agent::session::CompactionStart;
/// use uuid::Uuid;
///
/// let s = CompactionStart {
/// trace_id: Uuid::nil(),
/// reason: "context_budget".into(),
/// before_tokens: 140_000,
/// budget: 128_000,
/// };
/// assert!(s.before_tokens > s.budget);
/// ```
/// Emitted when a compaction pass finishes successfully.
///
/// # Examples
///
/// ```rust
/// use codetether_agent::session::{CompactionOutcome, FallbackStrategy};
/// use uuid::Uuid;
///
/// let o = CompactionOutcome {
/// trace_id: Uuid::nil(),
/// strategy: FallbackStrategy::Rlm,
/// before_tokens: 140_000,
/// after_tokens: 22_400,
/// kept_messages: 12,
/// };
/// assert!(o.reduction() > 0.8);
/// ```
/// Emitted when the terminal truncation fallback fires.
///
/// Distinct from [`CompactionOutcome`] with [`FallbackStrategy::Truncate`]
/// because truncation silently drops context — consumers that care about
/// data loss (the TUI, the flywheel) need an explicit signal to attach
/// user-visible warnings and archive the dropped prefix.
///
/// # Examples
///
/// ```rust
/// use codetether_agent::session::ContextTruncation;
/// use uuid::Uuid;
///
/// let t = ContextTruncation {
/// trace_id: Uuid::nil(),
/// dropped_tokens: 98_000,
/// kept_messages: 6,
/// archive_ref: Some("minio://codetether/ctx/abc123".into()),
/// };
/// assert!(t.dropped_tokens > 0);
/// ```
/// Emitted when *every* fallback strategy failed to fit under budget.
///
/// At this point the caller must surface an error to the user — sending
/// the request to the provider would 400. `fell_back_to` is `None`
/// explicitly (rather than omitted) so JSONL consumers can distinguish
/// "never attempted truncation" from "attempted and it also failed".
///
/// # Examples
///
/// ```rust
/// use codetether_agent::session::{CompactionFailure, FallbackStrategy};
/// use uuid::Uuid;
///
/// let f = CompactionFailure {
/// trace_id: Uuid::nil(),
/// fell_back_to: Some(FallbackStrategy::Truncate),
/// reason: "truncation below minimum viable request".into(),
/// after_tokens: 9_200,
/// budget: 8_000,
/// };
/// assert!(f.after_tokens > f.budget);
/// ```