2.4 KiB
RFC: Make the bash tool foreground-only
Status: proposed
Problem
The bash capability seam supports both foreground commands and long-running background tasks. Background support is large: the abstract executor exposes start, get, ownerOf, list, readOutput, kill, and onTaskDone; the local executor tracks tasks, incremental reads, owner tokens, process cleanup, and completion listeners; the model sees three tools (bash, bash_output, bash_kill); the tool plugin injects completion notices back into the owning agent's session. Recent work added owner-token isolation because global predictable task ids become a cross-session read/kill hazard.
The cookbook already points at the real design smell: background bash is really generic long-running-tool infrastructure living inside one tool. If future tools need background execution, polling, kill, ownership, and completion notices, those semantics should not be hidden in dsh-bash.
Proposal
Temporarily collapse bash to foreground-only execution. Remove run_in_background, bash_output, bash_kill, background task ownership, incremental task reads, completion injection, and task-listener APIs from the public bash executor seam. Long commands can still run with an explicit timeout; a command that needs to outlive a model step is not supported until a generic task service exists.
If long-running tasks return later, implement them once as a capability-agnostic task layer that owns ids, authorization, polling, cancellation, completion notifications, and any UI affordances. Bash can then opt into that layer like any other tool.
Acceptance criteria
@deepseek-ai/dsh-tool-bashregisters only thebashtool.BashExecutorexposesresolve()and foregroundrun()only.@deepseek-ai/dsh-bash-localno longer tracks background task maps, owner tokens, task listeners, or incremental output cursors.- ACP and snapshot fixtures no longer mention
bash_outputorbash_kill. - The cookbook either removes the background example or redirects long-running work to the future generic task RFC.
What we give up
The model loses the ability to start a server or long-running command, continue other work, and poll later. That is a real capability regression, but the current design makes one tool carry infrastructure that belongs above all tools. Foreground-only bash is smaller, safer, and easier to sandbox while the generic long-running-tool design is still absent.