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
2 changes: 1 addition & 1 deletion crates/deep-code-agent/src/handle/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion crates/deep-code-agent/src/rlm/mod.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion crates/deep-code-agent/src/sandbox/linux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading