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
16 changes: 9 additions & 7 deletions agent-bridle-tool-shell/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,16 @@
//! *advisory*: the result's `sandbox_kind` reports what actually enforced it
//! (I9), today [`agent_bridle_core::SandboxKind::None`].
//!
//! **Increments 1–4** of agent-bridle#34: a sequence of pipelines joined by
//! **Increments 1–5** of agent-bridle#34: a sequence of pipelines joined by
//! `&&`/`||`/`;` (short-circuit semantics), each pipeline simple commands with
//! quoted arguments and **file redirections** (`> out`, `>> out`, `< in`) whose
//! targets are leash-checked (`fs_write`/`fs_read`). Globbing and fd-number
//! redirections are added incrementally; until then they are refused as
//! *unsupported* (distinct from the *dynamic* constructs refused by design). The
//! process spawning is behind a `Spawner` seam (mocked in unit tests; real path
//! in `tests/real_spawn.rs`). `brush-bridle-core` remains the deferred, reversible
//! quoted arguments, **file redirections** (`> out`, `>> out`, `< in`) and
//! **filename globbing** (`*`/`?`/`[…]`) — all filesystem touches bridle performs
//! (redirect opens, glob directory listings) are leash-checked
//! (`fs_write`/`fs_read`). Variable expansion (`$VAR`) and fd-number redirections
//! are added incrementally; until then they are refused as *unsupported* (distinct
//! from the *dynamic* constructs refused by design). The process spawning is
//! behind a `Spawner` seam (mocked in unit tests; real path in
//! `tests/real_spawn.rs`). `brush-bridle-core` remains the deferred, reversible
//! full-bash alternative engine behind the same registry seam (ADR 0005 D4 —
//! tracked on agent-bridle#20).

Expand Down
Loading
Loading