docs(comments): rewrite comments across all crates to the guidelines
Sweep every first-party crate source (1956 .rs files) to the project comment guidelines: delete redundant restatements, decorative banners, change narration, and end-of-line comments; keep and tighten the crucial ones (invariants, bug rationale, SAFETY blocks, ported-source attribution). No functional code changed. Every edit is proven comment-only against the prior tree by a comment-stripping lexer (string/char/raw-string aware) plus a separate doctest-fence check. Where removing a comment made rustfmt or clippy want to re-lay-out adjacent code, the minimal triggering comment is restored so code tokens stay byte-identical. Gates green: cargo fmt --all --check (0 diffs), cargo check and cargo clippy --workspace --all-targets (0 warnings). Adds scripts/check_codegen_comment_guidelines.py — the enforcement gate for these guidelines (flags banners, end-of-line comments, change narration, and commented-out code).
This commit is contained in:
@@ -1,10 +1,7 @@
|
||||
//! Compaction methods for `SessionActor`.
|
||||
//!
|
||||
//! This module contains all compaction-related methods: manual `/compact`,
|
||||
//! auto-compact threshold checks, inline auto-compact with auto-continue,
|
||||
//! error-recovery compaction, preflight overflow detection, and checkpoint
|
||||
//! persistence. These methods form a second `impl SessionActor` block that
|
||||
//! lives alongside the primary one in `acp_session.rs`.
|
||||
//! These form a second `impl SessionActor` block alongside the primary one in
|
||||
//! `acp_session.rs`.
|
||||
use super::SessionActor;
|
||||
use super::is_project_instructions;
|
||||
use crate::agent::models_fetch::DEFAULT_CONTEXT_WINDOW;
|
||||
@@ -438,7 +435,6 @@ impl SessionActor {
|
||||
Some(out)
|
||||
}
|
||||
}
|
||||
/// Trigger info for auto-compact decisions.
|
||||
pub(crate) struct AutoCompactTriggerInfo {
|
||||
pub tokens_used: u64,
|
||||
pub context_window: u64,
|
||||
@@ -591,8 +587,6 @@ impl SessionActor {
|
||||
span.record("detail", tracing::field::display(detail));
|
||||
}
|
||||
}
|
||||
/// Runs the compact operation over here which compresses the current conversation
|
||||
/// and helps with saving the context for the model
|
||||
#[tracing::instrument(
|
||||
name = "session.compact",
|
||||
skip_all,
|
||||
@@ -1678,8 +1672,6 @@ impl SessionActor {
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
/// Check if auto-compact should be triggered based on context window usage.
|
||||
/// Returns Some(AutoCompactTriggerInfo) if threshold is reached, None otherwise.
|
||||
pub(crate) fn should_auto_compact(
|
||||
&self,
|
||||
total_tokens: u64,
|
||||
|
||||
Reference in New Issue
Block a user