Pith. sign in

REVIEW 2 major objections 5 minor 25 references

SafeCommit: Certifying When Memory-Grounded Agents May Safely Act

T0 review · 2 major / 5 minor · reviewed 2026-08-15 · deepseek-v4-flash

Pith's one-line read SafeCommit certifies an action only when every retained plausible world marks it safe, capping unsafe commits at $\alpha$.

desk verdict A well-scoped and honest framework for safe commitment under memory uncertainty, with a correct conditional theorem; the central gap is that the adaptive probe loop doesn't carry the coverage guarantee to the stopping time, as the paper itself concedes. read the letter →

arxiv 2608.04289 v1 pith:PSNS75CU submitted 2026-08-04 cs.AI cs.CL

classification cs.AIcs.CL
keywords safecommitmentmemoryuncertaintyconformalpredictionactioncertificateplausibleworldsagentsafetyprobeselectionriskcontrol
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

SafeCommit tackles premature commitment: an agent acting on memory before it knows whether that memory is stale, conflicting, incomplete, or corrupted. The paper places a risk-controlled layer between agent reasoning and external execution. The layer builds a calibrated set of plausible latent worlds from memory, observations, tool outputs, provenance, and policy constraints, and releases a side-effectful action only when a conformal action certificate shows the action is safe in every retained world. Otherwise it picks a low-side-effect probe aimed at the worlds blocking certification, or returns a defer, escalate, or abstain fallback. If the retained world set still covers the true world with probability at least $1-\alpha$ at the decision moment, the probability of an unsafe certified commit is at most $\alpha$; in the paper's controlled simulator this cuts unsafe commits from 41.2% for a single-world agent to 2.6% while reaching 97.4% task success with targeted probes.

What carries the argument

The load-bearing object is the conformal action certificate: an action $a$ is $\alpha$-certified when $U_t(a)=\emptyset$, meaning no world in the retained set makes the action unsafe. The retained set is built by split-conformal calibration, $W_t=\{\omega \in \hat{\Omega}_t : \omega \text{ is hard-evidence consistent and } s_t(\omega) \le \kappa_\alpha\}$, with $\kappa_\alpha$ the finite-sample quantile of nonconformity scores on calibration cases. Safety-equivalence compression merges worlds with identical action signatures $\sigma_t(\omega)=(\mathbf{1}[a\in\Gamma_t(\omega)])_{a\in A_t}$, preserving the certified set exactly. Probe selection scores expected certificate shrinkage per unit cost, $\Phi_t(p)=\max_{a\in A_t} \mathbb{E}_y[\mu(U_t(a))-\mu(U^{y,p}_{t+1}(a))]/(c(p)+\epsilon)$, rather than generic information gain.

What would settle it

Construct an episode family where a probe's outcome is more informative precisely when the true world has already been dropped from the proposed support, so stopping after a successful probe selects for coverage failures; if the empirical unsafe-commit rate at the stopping time exceeds the target $\alpha$, the stopping-time coverage premise fails.

Watch

Extended reading notes

Core claim

The paper's central claim is Proposition 1 (unsafe-commit control). Suppose the plausible-world set at the stopping time $\tau$ satisfies $P(\omega^*_\tau \in W_\tau) \ge 1-\alpha$, and the controller commits only to actions with an empty uncertified region $U_\tau(a)=\{\omega \in W_\tau : a \notin \Gamma_\tau(\omega)\}$. Then $P(a_\tau \notin \Gamma_\tau(\omega^*_\tau)) \le \alpha$, because an unsafe certified commit is possible only when the true world fell outside the retained set, an event of probability at most $\alpha$. When the world proposal can miss the true world, the bound becomes $\alpha+\beta$, where $\beta$ is the probability the true world is never proposed, separating miscalibration from representation failure. The same argument is restated and proven in the appendix.

Load-bearing premise

The argument depends on the world set still covering the true world with probability at least $1-\alpha$ at the exact moment the controller stops probing and commits, after probe choices were made adaptively from observed outcomes; the paper does not prove this for the full probe loop.

Editorial extensions

If this is right

  • Per-decision safety becomes a tunable parameter: choosing $\alpha=0.01$ keeps unsafe commits below 1% in the controlled benchmark, at the cost of more probes and slightly lower task success.
  • Targeted probing is what turns a certificate-only gate from conservative refusal into useful autonomy: one probe lifts task success from 44.7% to 95.1% without raising the unsafe-commit rate.
  • The guarantee composes with a representation term: if the world proposal misses the true world with probability $\beta$, the unsafe-commit bound becomes $\alpha+\beta$, so safety work must include support recall, not only calibration.
  • The controller can be integrated on top of access control, sandboxing, and filesystem-level controls, whose outputs enter as evidence or safety predicates.
  • If a safety-relevant world is retained but an unsafe action is certified, the paper attributes the failure to the safety map; if the world is absent, to the constructor; if the worlds are right but the system falls back, to the probe policy or budget.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Beyond the paper's controlled setting, the same gate could govern any external action with a small candidate set and an executable safety predicate, not only LLM agents.
  • The adaptive-probe gap points to a concrete research target: online or time-uniform conformal coverage that remains valid after outcome-dependent sampling; until then, mission-level guarantees need a total risk budget across commitments.
  • A testable extension is to replace deterministic probes with stochastic outcomes and measure whether certificate-shrinkage ranking still beats generic uncertainty sampling; the paper only exercises deterministic identity probes.
  • An empirical estimate of $\beta$ could come from red-teaming the world constructor with injected stale or poisoned memories and counting how often the true world is omitted; the paper only varies $\beta$ synthetically.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

2 major / 5 minor

Summary. The paper formalizes the problem of safe commitment under memory uncertainty for long-horizon AI agents: an agent may act based on stale, conflicting, incomplete, or corrupted memory, leading to premature and unsafe side-effectful actions. The authors propose SafeCommit, a risk-controlled layer that constructs a calibrated set of plausible latent worlds from memory, observations, tool outputs, provenance, and policy constraints; an action is certified only if it is safe in every retained world. Otherwise, the layer selects a low-side-effect probe targeting the worlds that block certification, or returns a conservative fallback (defer, escalate, abstain). The main theoretical result (Proposition 1) states that if the world set at the stopping time satisfies the coverage condition P(true world ∈ retained set) ≥ 1−α, then committing only to actions with empty uncertified region yields an unsafe-commit probability of at most α. The paper also separates calibration error from representation error (Eq. (7)) and provides a controlled, dependency-free simulator with one-command reproducibility to study the safety–utility tradeoff across stale, conflicting, poisoned, and authorization-shifted memory. The paper is explicit that the guarantee is conditional on calibrated coverage and that sequential/adaptive probing is an open problem.

Significance. The paper addresses an important, timely problem—deciding not just what an agent should do, but when available evidence is sufficient to do it safely. The set-valued certificate view is a useful conceptual step beyond scalar confidence, and the separation of calibration and representation error is valuable for both analysis and auditing. The theoretical result is correct under its stated assumptions, and the accompanying dependency-free simulator with reproducible, one-command experiments is a concrete strength that supports community use and extension. The authors are appropriately cautious about the scope: they describe the experiments as a mechanism check rather than a claim of deployed-agent validation, and they explicitly flag adaptive probing and repeated commitments as open concerns. If the guarantee–algorithm gap is clarified (see major comments), this could be a solid contribution to the AI-safety and uncertainty-quantification literature.

major comments (2)
  1. [Section 2.3 (Prop. 1) and Section 3.3 (Algorithm 1)] The paper's headline bound (Eq. (6)) is proven only for a stopping time τ at which Eq. (3) holds, but Algorithm 1 reaches τ after an adaptive probe loop. No proof is given that the final W_τ preserves the coverage condition; in general, adaptively selecting probes based on observed outcomes can break the exchangeability on which split-conformal calibration relies. The paper acknowledges this in Section 5 and Appendix E, but the empirical section presents UCR values for the full algorithm without explaining why the benchmark can use the bound. In the simulator, probes are deterministic identity checks (Appendix B.2) that cannot remove a true world that is currently retained, so coverage is preserved trivially; this should be stated and proven near Algorithm 1, and the general gap should be flagged at that point rather than only in later limitations. As written, a reader could mistakenly attribute the α guarantee to the full commit–probe–fallback loop in real deployments.
  2. [Section 2.3, Eq. (7) and Appendix A.4] The representation-error bound α+β requires a conditional coverage guarantee, P(ω*_t ∈ W_t | ω*_t ∈ support) ≥ 1−α, which is strictly stronger than the marginal coverage guarantee that the split-conformal threshold in Eq. (14) provides. The paper does not prove this conditional guarantee, and it may fail if the support construction is correlated with the score distribution. Please clarify that Eq. (7) is a formal decomposition under an additional assumption, or provide a calibration scheme that achieves the conditional guarantee; otherwise the bound could be misread as a direct consequence of split-conformal calibration.
minor comments (5)
  1. [Section 4.1] The sentence "Appendix A, B and C specifies the schema" should be "Appendix A, B and C specify the schema".
  2. [Abstract] The phrase "Under calibrated world coverage, the probability of an unsafe certified commit is at most α" would be clearer if reworded as "When the retained world set covers the true world with probability at least 1−α" to avoid implying that the full algorithm always maintains this coverage.
  3. [Section 4 (Tables 2 and 3)] The empirical evaluation reports only point estimates. Reporting standard errors or per-seed variation would strengthen claims such as "approximately halves unsafe commits" (Section 4.2), especially because the absolute differences in UCR (e.g., 2.6% vs. 4.8% in Table 2) are small.
  4. [Section 5] The mention of "time-uniform conformal methods" would benefit from a citation to make the suggested direction concrete.
  5. [Algorithm 1 (Section 3.3)] The parameters η (probe-value threshold) and budget B are required inputs, but no guidance is given for choosing them; a sentence describing how they trade off safety and utility would help practitioners.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: the unsafe-commit bound is derived by event inclusion from the stated coverage assumption, not by construction or fitted-input renaming.

full rationale

The derivation chain is self-contained. Proposition 1 (Eq. 6) is explicitly conditional: it assumes P(omega*_tau in W_tau) >= 1-alpha (Eq. 3) and that the controller commits only when U_tau(a)=empty. The proof shows that {a_tau notin Gamma_tau(omega*_tau)} is contained in {omega*_tau notin W_tau}, so the bound follows by monotonicity of probability. This is a genuine event containment, not an equality by construction: coverage failure is necessary but not sufficient for an unsafe commit, and the argument never defines coverage in terms of unsafe commits. The split-conformal threshold kappa_alpha is calibrated from held-out exchangeable histories (Appendix A.1), but the advertised guarantee is conditional on Eq. (3); the paper does not rename a fitted value as a prediction. The only substantive gap is that Algorithm 1's adaptive probes and data-dependent stopping rule may break exchangeability at the stopping time, so the coverage premise is not proved for the full probe loop. The paper itself flags this in Section 5 ('Per-step calibration does not automatically imply a tight mission-level guarantee') and in Appendix E; that is a correctness risk, not circularity. Self-citations (references 5 and 7-14) appear only in the future-work discussion in Appendix D and do not carry the central theorem. No circular step can be exhibited, so the score is 0.

Assumptions & free parameters 4 free parameters · 6 assumptions · 0 invented entities

The central claim is conditional on four domain assumptions the paper states but does not independently verify: exchangeable calibration data, a proposal that usually includes the true world, a correct safety map, and coverage at the adaptive stopping time. The controlled simulator enforces these assumptions by construction, so it checks the mechanism but not their validity in real settings. No new physical entities are introduced.

free parameters (4)
  • Target risk level alpha = 0.05 main setting; 0.01 and 0.10 in sweep
    User-set risk target in Eq. (3) that determines the calibration quantile. It is an input to the method rather than a number inferred from data, but it is hand-chosen and directly controls the guarantee.
  • Nonconformity score weights lambda_prov, lambda_cons, lambda_tool, lambda_policy
    Eq. (9) defines the default score as a weighted sum; the paper says weights are selected on separate development data but reports no values. The theorem is conditional on calibrated coverage, so the guarantee does not depend on the weights, but empirical results would.
  • Simulator score distribution parameters
    Appendix B.1 says the simulator uses a scalar score sampled by family; the exact family parameters and scenario-generation probabilities are in the released generator, not in the text. Tables 2-5 depend on these choices.
  • Probe budget B and probe value threshold eta = B in {0,1,2,4}; eta not reported
    Algorithm 1 uses budget B and threshold eta to decide when to fall back; the paper sweeps B but does not report eta or the cost function c(p), so the probe policy has unstated tuning choices.
assumptions (6)
  • domain assumption Exchangeability between calibration and deployment episodes holds.
    Eq. (14) and Appendix A.1 require exchangeability for the split-conformal quantile. Section 4.6 notes that distribution shift can violate this assumption.
  • domain assumption The finite proposed support contains the true world with probability at least 1-beta, and beta can be estimated or upper-bounded.
    Section 2.3 Eq. (7) and Appendix A.4 use the representation error term beta. Without this, calibration cannot repair a world that was never proposed.
  • domain assumption The safety map Gamma_t(omega) is correct and independent of the LLM proposal path.
    Section 3.1 and Limitations E state that a wrong safety map can certify harmful actions even when the true world is retained.
  • domain assumption The coverage condition Eq. (3) holds at the stopping time tau of the probe loop.
    Proposition 1 assumes it. Algorithm 1 does not prove it after adaptive probes and repeated commitments; Section 5 says per-step calibration does not automatically imply a mission-level guarantee.
  • domain assumption Calibration labels of true latent worlds are available for audited histories.
    Section 3.2 says calibration uses histories with known latent worlds or audited safety-relevant labels. In deployed memory systems these labels may be expensive or unavailable.
  • standard math The finite-sample split-conformal quantile in Eq. (14) gives marginal coverage under exchangeability.
    This is a standard conformal prediction result invoked without proof. It is correct under the stated exchangeability condition.

how reviews work

0 comments
Cite this review

Pith. "Pith review of SafeCommit: Certifying When Memory-Grounded Agents May Safely Act." pith.science (2026). https://pith.science/paper/PSNS75CU

@misc{pith2026260804289,
  author       = {Pith},
  title        = {Pith review of: SafeCommit: Certifying When Memory-Grounded Agents May Safely Act},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/PSNS75CU}},
  note         = {Machine review of arXiv:2608.04289}
}
read the original abstract

Long-horizon agents increasingly use persistent memory and tools to take actions with external side effects. A central failure mode is premature commitment: an agent acts before resolving whether its memory grounding is stale, conflicting, incomplete, or corrupted. We formalize this problem as safe commitment under memory uncertainty and introduce SafeCommit, a risk controlled layer between agent reasoning and external execution. The layer constructs a calibrated set of plausible latent worlds from memory, observations, tool outputs, provenance, and policy constraints. It permits a side effectful action only when a conformal action certificate shows that the action is safe in every retained world. Otherwise, it selects a low-side-effect probe that targets the worlds blocking certification, or returns a conservative fallback. Under calibrated world coverage, the probability of an unsafe certified commit is at most the target level {\alpha}; with imperfect world proposal, the bound separates calibration and representation error. A dependency-free controlled simulator illustrates the safety-utility tradeoff and reproduces all reported results with one command. The goal is to offer a concrete approach for deciding not only what an agent should do, but when the available evidence is sufficient to safely do it.

Figures

Figures reproduced from arXiv: 2608.04289 by the authors.

Figure 1
Figure 1. SAFECOMMIT converts memory uncertainty into an explicit commit-probe-fallback decision. A proposed action is released only when no retained plausible world makes it unsafe; otherwise, a low-side-effect probe updates the evidence and repeats the check. 4 [PITH_FULL_IMAGE:figures/full_fig_p004_1.png] view at source ↗

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

25 extracted references · 5 canonical work pages

  1. [1]

    Agentguardian: Learning access control policies to govern AI agent behavior.CoRR, abs/2601.10440, 2026

    Nadya Abaev, Denis Klimov, Gerard Levinov, David Mimran, Yuval Elovici, and Asaf Shab- tai. Agentguardian: Learning access control policies to govern AI agent behavior.CoRR, abs/2601.10440, 2026. doi: 10.48550/arXiv.2601.10440

  2. [2]

    Check yourself before you wreck yourself: Selectively quitting improves LLM agent safety

    Vamshi Krishna Bonagiri, Ponnurangam Kumaraguru, Khanh Nguyen, and Benjamin Plaut. Check yourself before you wreck yourself: Selectively quitting improves LLM agent safety. CoRR, abs/2510.16492, 2025. doi: 10.48550/arXiv.2510.16492

  3. [3]

    Agentpoison: Red-teaming LLM agents via poisoning memory or knowledge bases.CoRR, abs/2407.12784, 2024

    Zhaorun Chen, Zhen Xiang, Chaowei Xiao, Dawn Song, and Bo Li. Agentpoison: Red-teaming LLM agents via poisoning memory or knowledge bases.CoRR, abs/2407.12784, 2024. doi: 10.48550/arXiv.2407.12784

  4. [4]

    A practical memory injection attack against LLM agents.CoRR, abs/2503.03704, 2025

    Shen Dong, Shaochen Xu, Pengfei He, Yige Li, Jiliang Tang, Tianming Liu, Hui Liu, and Zhen Xiang. A practical memory injection attack against LLM agents.CoRR, abs/2503.03704, 2025. doi: 10.48550/arXiv.2503.03704

  5. [5]

    Embodied foundation models at the edge: A survey of deployment constraints and mitigation strategies.arXiv preprint arXiv:2603.16952, 2026

    Utkarsh Grover, Ravi Ranjan, Mingyang Mao, Trung Tien Dong, Satvik Praveen, Zhenqi Wu, J Morris Chang, Tinoosh Mohsenin, Yi Sheng, Agoritsa Polyzou, et al. Embodied foundation models at the edge: A survey of deployment constraints and mitigation strategies.arXiv preprint arXiv:2603.16952, 2026

  6. [6]

    Active task disambiguation with LLMs.CoRR, abs/2502.04485, 2025

    Katarzyna Kobalczyk, Nicolas Astorga, Tennison Liu, and Mihaela van der Schaar. Active task disambiguation with LLMs.CoRR, abs/2502.04485, 2025. doi: 10.48550/arXiv.2502.04485

  7. [7]

    Trustworthi- ness of llms in medical domain.Researchgate preprint, 2024

    Ravi R Kumar, Vishal Pramanik, Utkarsh Grover, and Venkata Ramesh Ganapam. Trustworthi- ness of llms in medical domain.Researchgate preprint, 2024

  8. [8]

    Vla-forget: Vision-language-action unlearning for embodied foundation models.arXiv preprint arXiv:2604.03956, 2026

    Ravi Ranjan and Agoritsa Polyzou. Vla-forget: Vision-language-action unlearning for embodied foundation models.arXiv preprint arXiv:2604.03956, 2026

Show all 25 references
  1. [9]

    Catrag: Functor-guided structural debiasing with retrieval augmentation for fair llms.arXiv preprint arXiv:2603.21524, 2026

    Ravi Ranjan, Utkarsh Grover, Mayur Akewar, Xiaomin Lin, and Agoritsa Polyzou. Catrag: Functor-guided structural debiasing with retrieval augmentation for fair llms.arXiv preprint arXiv:2603.21524, 2026

  2. [10]

    G-drift mia: Membership inference via gradient-induced feature drift in llms.arXiv preprint arXiv:2604.00419, 2026

    Ravi Ranjan, Utkarsh Grover, Xiaomin Lin, and Agoritsa Polyzou. G-drift mia: Membership inference via gradient-induced feature drift in llms.arXiv preprint arXiv:2604.00419, 2026

  3. [11]

    Listening with atten- tion: Entropy-guided explainability for transformer-based audio models.arXiv preprint arXiv:2606.14647, 2026

    Ravi Ranjan, Utkarsh Grover, Xiaomin Lin, and Agoritsa Polyzou. Listening with atten- tion: Entropy-guided explainability for transformer-based audio models.arXiv preprint arXiv:2606.14647, 2026

  4. [12]

    Persa: Reinforcement learning for professor-style personalized feedback with llms.arXiv preprint arXiv:2605.01123, 2026

    Ravi Ranjan, Utkarsh Grover, Xiaomin Lin, and Agoritsa Polyzou. Persa: Reinforcement learning for professor-style personalized feedback with llms.arXiv preprint arXiv:2605.01123, 2026

  5. [13]

    Razor: Ratio-aware layer editing for targeted unlearning in vision transformers and diffusion models.arXiv preprint arXiv:2603.14819, 2026

    Ravi Ranjan, Utkarsh Grover, Xiaomin Lin, and Agoritsa Polyzou. Razor: Ratio-aware layer editing for targeted unlearning in vision transformers and diffusion models.arXiv preprint arXiv:2603.14819, 2026

  6. [14]

    Position: Llms must use functor-based and rag-driven bias mitigation for fairness.arXiv preprint arXiv:2603.07368, 2026

    Ravi Ranjan, Utkarsh Grover, and Agorista Polyzou. Position: Llms must use functor-based and rag-driven bias mitigation for fairness.arXiv preprint arXiv:2603.07368, 2026

  7. [15]

    Maddison, and Tatsunori Hashimoto

    Yangjun Ruan, Honghua Dong, Andrew Wang, Silviu Pitis, Yongchao Zhou, Jimmy Ba, Yann Dubois, Chris J. Maddison, and Tatsunori Hashimoto. Identifying the risks of LM agents with an LM-emulated sandbox.CoRR, abs/2309.15817, 2024. doi: 10.48550/arXiv.2309.15817. 10

  8. [16]

    Mem2actbench: A benchmark for evaluating long-term memory utilization in task-oriented autonomous agents.CoRR, abs/2601.19935,

    Yiting Shen, Kun Li, Wei Zhou, and Songlin Hu. Mem2actbench: A benchmark for evaluating long-term memory utilization in task-oriented autonomous agents.CoRR, abs/2601.19935,

  9. [17]

    Re- flexion: Language agents with verbal reinforcement learning

    Noah Shinn, Federico Cassano, Ashwin Gopinath, Karthik Narasimhan, and Shunyu Yao. Re- flexion: Language agents with verbal reinforcement learning. InAdvances in Neural Information Processing Systems, volume 36, 2023

  10. [18]

    Rossi, and Dinesh Manocha

    Manan Suri, Puneet Mathur, Nedim Lipka, Franck Dernoncourt, Ryan A. Rossi, and Dinesh Manocha. Structured uncertainty guided clarification for LLM agents.CoRR, abs/2511.08798,

  11. [19]

    Osworld: Benchmarking multimodal agents for open-ended tasks in real computer environments

    Tianbao Xie, Danyang Zhang, Jixuan Chen, Xiaochuan Li, Siheng Zhao, Ruisheng Cao, Toh Jing Hua, Zhoujun Cheng, Dongchan Shin, Fangyu Lei, Yitao Liu, Yiheng Xu, Shuyan Zhou, Silvio Savarese, Caiming Xiong, Victor Zhong, and Tao Yu. Osworld: Benchmarking multimodal agents for op...

  12. [20]

    A-mem: Agentic memory for LLM agents.CoRR, abs/2502.12110, 2025

    Wujiang Xu, Zujie Liang, Kai Mei, Hang Gao, Juntao Tan, and Yongfeng Zhang. A-mem: Agentic memory for LLM agents.CoRR, abs/2502.12110, 2025. doi: 10.48550/arXiv.2502. 12110

  13. [21]

    React: Synergizing reasoning and acting in language models

    Shunyu Yao, Jeffrey Zhao, Dian Yu, Nan Du, Izhak Shafran, Karthik Narasimhan, and Yuan Cao. React: Synergizing reasoning and acting in language models. InInternational Conference on Learning Representations, 2023

  14. [22]

    Agentic uncertainty quantification.CoRR, abs/2601.15703, 2026

    Jiaxin Zhang, Prafulla Kumar Choubey, Kung-Hsiang Huang, Caiming Xiong, and Chien-Sheng Wu. Agentic uncertainty quantification.CoRR, abs/2601.15703, 2026. doi: 10.48550/arXiv. 2601.15703

  15. [23]

    Arpaci-Dusseau, and Remzi H

    Shawn Wanxiang Zhong, Junxuan Liao, Jing Liu, Mai Zheng, Andrea C. Arpaci-Dusseau, and Remzi H. Arpaci-Dusseau. Don’t let AI agents YOLO your files: Shifting information and control to filesystems for agent safety and autonomy.CoRR, abs/2604.13536, 2026. doi: 10.48550/arXiv.26...

  16. [2025]

    doi: 10.48550/arXiv.2511.08798

  17. [2026]

    doi: 10.48550/arXiv.2601.19935

Pith tools

Reviewed August 15, 2026 · model on record in the stance chip above.