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
3 changes: 1 addition & 2 deletions crates/stella-cli/src/daemon/boot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@
//! retracts its resume point on the way out. A row written by a build that
//! predates #1653 — where a policy stop really did store `Error` — is
//! therefore filtered by [`crate::daemon::boot::SkipReason::NoResumePoint`]
//! anyway, without this
//! module having to trust its status.
//! anyway, without this module having to trust its status.
//! - **The attempt bound still applies.** An `Error` that resumes into
//! another `Error` is counted like any other continuation and retired
//! after `MAX_BOOT_ATTEMPTS`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,11 @@
use super::*;
use crate::LineMutation;

/// The mid-turn flip halt's arming witnesses (#1793) — a child rather than a
/// sibling module so it reaches this file's shared fakes through `use super::*`,
/// and so the already-oversized `tests.rs` does not grow another module
/// declaration.
///
/// Its two *shell* doubles are deliberately not shared from here. They live
/// beside the witnesses that use them, so a wholesale rewrite of this file
/// collides with them instead of silently deleting the tests underneath — the
/// clobber that cost a #1793 witness once already (#1971, #1997). That file's
/// own module doc is the normative statement of the rule.
/// The authored-witness arming of the mid-turn flip halt (#1793) — a child
/// rather than a sibling module so it reaches the shared fakes through this
/// file's own `use super::*`, and so the already-oversized `tests.rs` does
/// not grow another module declaration. The shell doubles the halt needs live
/// in that module, beside the only tests that script them.
mod flip_halt_arming;

/// #860 acceptance: a baseline that TIMES OUT observed no failing assertion,
Expand Down
2 changes: 1 addition & 1 deletion crates/stella-protocol/src/event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ pub enum AgentEvent {
/// The replacement bytes each in-place rewrite left behind, one entry
/// per digest — what lets reconstruction resolve a compacted block to
/// the bytes the model received rather than the pre-compaction output
/// under the same `call_id` (#1667); see [`crate::CompactionRewrite`].
/// under the same `call_id` (#1667); see `CompactionRewrite`.
/// `serde(default)` — absent on journals written before rewrites were
/// journaled, whose compacted blocks surface as digest mismatches.
#[serde(default, skip_serializing_if = "Vec::is_empty")]
Expand Down
3 changes: 1 addition & 2 deletions docs/wire/agentevent.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1285,8 +1285,7 @@ export type AgentEvent = {
* The replacement bytes each in-place rewrite left behind, one entry
* per digest — what lets reconstruction resolve a compacted block to
* the bytes the model received rather than the pre-compaction output
* under the same `call_id` (#1667); see
* [`CompactionRewrite`](crate::CompactionRewrite).
* under the same `call_id` (#1667); see `CompactionRewrite`.
* `serde(default)` — absent on journals written before rewrites were
* journaled, whose compacted blocks surface as digest mismatches.
*/
Expand Down
2 changes: 1 addition & 1 deletion docs/wire/agentevent.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2152,7 +2152,7 @@
"type": "array"
},
"rewrites": {
"description": "The replacement bytes each in-place rewrite left behind, one entry\nper digest — what lets reconstruction resolve a compacted block to\nthe bytes the model received rather than the pre-compaction output\nunder the same `call_id` (#1667); see\n[`CompactionRewrite`](crate::CompactionRewrite).\n`serde(default)` — absent on journals written before rewrites were\njournaled, whose compacted blocks surface as digest mismatches.",
"description": "The replacement bytes each in-place rewrite left behind, one entry\nper digest — what lets reconstruction resolve a compacted block to\nthe bytes the model received rather than the pre-compaction output\nunder the same `call_id` (#1667); see `CompactionRewrite`.\n`serde(default)` — absent on journals written before rewrites were\njournaled, whose compacted blocks surface as digest mismatches.",
"items": {
"$ref": "#/$defs/CompactionRewrite"
},
Expand Down
3 changes: 1 addition & 2 deletions docs/wire/serveframe.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,7 @@ export type AgentEvent = {
* The replacement bytes each in-place rewrite left behind, one entry
* per digest — what lets reconstruction resolve a compacted block to
* the bytes the model received rather than the pre-compaction output
* under the same `call_id` (#1667); see
* [`CompactionRewrite`](crate::CompactionRewrite).
* under the same `call_id` (#1667); see `CompactionRewrite`.
* `serde(default)` — absent on journals written before rewrites were
* journaled, whose compacted blocks surface as digest mismatches.
*/
Expand Down
2 changes: 1 addition & 1 deletion docs/wire/serveframe.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@
"type": "array"
},
"rewrites": {
"description": "The replacement bytes each in-place rewrite left behind, one entry\nper digest — what lets reconstruction resolve a compacted block to\nthe bytes the model received rather than the pre-compaction output\nunder the same `call_id` (#1667); see\n[`CompactionRewrite`](crate::CompactionRewrite).\n`serde(default)` — absent on journals written before rewrites were\njournaled, whose compacted blocks surface as digest mismatches.",
"description": "The replacement bytes each in-place rewrite left behind, one entry\nper digest — what lets reconstruction resolve a compacted block to\nthe bytes the model received rather than the pre-compaction output\nunder the same `call_id` (#1667); see `CompactionRewrite`.\n`serde(default)` — absent on journals written before rewrites were\njournaled, whose compacted blocks surface as digest mismatches.",
"items": {
"$ref": "#/$defs/CompactionRewrite"
},
Expand Down