From 511df1cbd1ec52062d9cc9eaa220c43b1c52188b Mon Sep 17 00:00:00 2001 From: liwenkai <2020583117@qq.com> Date: Fri, 26 Jun 2026 18:13:13 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E7=A7=BB=E9=99=A4=E6=B3=A8=E9=87=8A?= =?UTF-8?q?=E4=B8=AD=E7=9A=84=E4=B8=8A=E6=B8=B8=E9=A1=B9=E7=9B=AE=E5=90=8D?= =?UTF-8?q?,=E6=94=B9=E4=B8=BA=E4=B8=AD=E6=80=A7=E8=A1=A8=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crates/deep-code-agent/src/handle/store.rs | 2 +- crates/deep-code-agent/src/rlm/mod.rs | 2 +- crates/deep-code-agent/src/sandbox/linux.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/deep-code-agent/src/handle/store.rs b/crates/deep-code-agent/src/handle/store.rs index 329360d..bb8f8f3 100644 --- a/crates/deep-code-agent/src/handle/store.rs +++ b/crates/deep-code-agent/src/handle/store.rs @@ -15,7 +15,7 @@ impl HandleId { } } -/// DeepSeek-TUI compatible symbolic handle reference. +/// Symbolic handle reference for richer analysis backends. #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] pub struct VarHandle { pub kind: String, diff --git a/crates/deep-code-agent/src/rlm/mod.rs b/crates/deep-code-agent/src/rlm/mod.rs index 6437d3c..597db59 100644 --- a/crates/deep-code-agent/src/rlm/mod.rs +++ b/crates/deep-code-agent/src/rlm/mod.rs @@ -1,7 +1,7 @@ //! Minimal persistent analysis sessions (RLM v1). //! //! v1 uses a bounded command runtime over loaded context instead of a full -//! Python REPL. The tool surface matches DeepSeek-TUI so richer backends can +//! Python REPL. The tool surface is backend-agnostic so richer backends can //! be swapped in later. mod runtime; diff --git a/crates/deep-code-agent/src/sandbox/linux.rs b/crates/deep-code-agent/src/sandbox/linux.rs index fbe5f4f..8a22098 100644 --- a/crates/deep-code-agent/src/sandbox/linux.rs +++ b/crates/deep-code-agent/src/sandbox/linux.rs @@ -2,7 +2,7 @@ //! filtering, applied in the forked child via `pre_exec` (no external binary, //! unlike the macOS `sandbox-exec` wrapper). //! -//! Model (parity with macOS seatbelt, ≥ CodeWhale): +//! Model (parity with the macOS seatbelt backend): //! - **Reads stay broad** — only write-class Landlock access rights are //! *handled*, so reads are unrestricted (keeps tools working). //! - **Writes are confined** to the policy's writable roots, plus the temp dir