English | 中文
The model-facing filesystem tools — read, read_image, write, edit — and their executor. This is the consumer layer of the filesystem stack: it owns tool names, JSON schemas, argument validation, prompt sections, read windowing, and result formatting. It reads/writes/edits through the ctx.fs provider contract (@deepseek-ai/dsh-fs) directly. The freshness/observation policy is contributed by a separate plugin (@deepseek-ai/dsh-fs-observation-policy) through the fs/* event gate; the tool is not method-coupled to it. Under a confining provider, the shared sandbox-policy service is required for per-session execution and the tool exposes escalation for filesystem mutations.
// Default deployment: a ctx.fs provider, the policy plugin, then the tools.
await ctx.plugin(LocalFileSystem, { cwd: process.cwd() }) // @deepseek-ai/dsh-fs-local
await ctx.plugin(FsPolicy) // @deepseek-ai/dsh-fs-observation-policy (policy gate)
await ctx.plugin(LocalAttachmentStore, { dshHome }) // optional — enables durable read_image results
await ctx.plugin(ToolFs) // this package — read/write/edit, plus read_image with attachments@deepseek-ai/dsh-fs-observation-policy is optional: omit it and the tools run against the bare provider (unconditional write/overwrite/edit, no observed-state). A deployment that loads these tools is expected to also load it, so the behavior is read-before-write/edit.
read_image registers only while a durable ctx.attachments service is mounted — without one the deployment cannot commit image bytes, so the tool never appears. Execution additionally requires the exact routed model to declare image input (resolved through ctx.llm.resolveModelInfo from the session's latest request header, falling back to agent options); an unknown or text-only route gets a refusal result before any filesystem I/O, so a text route's durable history stays free of image blocks.
All keys are optional; the defaults are the shipped read caps.
| Key | Default | Meaning |
|---|---|---|
readLimit |
2000 |
Default and maximum lines returned by one read call (the tool schema advertises it as the limit default). |
readMaxLineLength |
2000 |
Characters kept per line before truncation (the suffix names the cap). |
readMaxBytes |
51200 |
Byte cap on one read call's selected lines; overflow ends the window with a "capped" footer. |
readStreamMinSize |
10485760 |
Files at or above this size (or with unknown size) stream instead of loading whole into memory. |
Tools (schemas per the filesystem tool schemas Agent Note)
| Tool | Arguments | Behavior |
|---|---|---|
read |
file_path, offset?, limit? |
Line-numbered UTF-8 content with a pagination footer. offset is 1-based; limit defaults to and caps at the configured readLimit (2000). |
read_image |
file_path |
Reads a PNG/JPEG/WebP/GIF file through the bounded byte seam, persists it through ctx.attachments.saveImage, and returns an image block beside a small metadata envelope. It succeeds only when the exact routed model declares image input. |
write |
file_path, content |
Create or fully replace a file. With the policy plugin: overwriting an existing file requires a prior read at the unchanged version; creating a new file does not. Without it: unconditional. |
edit |
file_path, non-empty old_string, new_string, replace_all? |
Literal replacement; unique match required unless replace_all is true. With the policy plugin: requires a prior read (any window) and the file unchanged since. Without it: unconditional. |
Field names are snake_case to match Claude Code and existing harness tool schemas.
Canonical successes are read → { path, offset, lines: [{ number, text }], totalLines }, read_image → { path, image: { attachmentId, mediaType, bytes, width, height, name? } }, write → { path, operation: 'create' | 'update', before: string | null, after }, and edit → { path, before, after }. Native renderers preserve the line-numbered read and mutation acknowledgements below. write/edit derive replayable diff-card metadata, and read derives a replayable read-card window { path, offset, lines, totalLines, lang? }, from these canonical values; the canonical values themselves are execution-local and are not added to tool/result, only the derived presentation metadata is persisted.
The tools do not inject a policy service or inspect any cache. Each tool resolves the path via ctx.fs.resolve(path, { cwd, signal }) — passing the calling agent's session cwd (exec.agent.session.header.cwd) so a relative path resolves against the session's workspace, matching dsh-tool-bash, and forwarding tool cancellation through resolution (see the per-session cwd Agent Note) — then:
- read — one
ctx.fs.stat(type + size routing + version), thenreadText/streamText, then builds the line window, then emitsfs/observedwith a plainctx.emit. (1 stat.) - read_image — validates the argument, extension, attachment availability, deployment media types, and the image-capable route before any I/O; then one
ctx.fs.stat(recording anabsentobservation for a missing target, likeread), a boundedctx.fs.readBytescapped at the smaller ofimageLimits.maxImageBytesandimageLimits.maxMessageImageBytes(the result is one message carrying one image),attachments.saveImage(content-addressed, so the image block references a durably committed object by the timetool/resultis appended), and finallyfs/observed. (1 stat.) - write —
ctx.waterfall('fs/write-intent', target, exec, () => undefined)for the optional guard, thenctx.fs.writeText(target, content, intent), thenfs/observed. (0 stat.) - edit —
ctx.waterfall('fs/edit-intent', target, exec, () => undefined)for the optional guard, thenctx.fs.editText(target, edit, intent), thenfs/observed. (0 stat.)
The tool passes exec (the tool-execution context) as the opaque actor on every dispatch. The default thunks return undefined (the unconstrained bare provider). When @deepseek-ai/dsh-fs-observation-policy is loaded it occupies the single decision slot — returning createIfAbsent/replaceIfVersion/{ version } or throwing FS_NOT_OBSERVED — and records on fs/observed. Backend errors (FsError) and a thrown FS_NOT_OBSERVED flow through ToolRuntime.execute() and become isError tool results with their { name, code } attached.
When ctx.fs.sandboxMode reports confinement, write/edit advertise sandbox_permissions and justification and resolve approved retries through ctx.approval. The policy owner contributes capability-neutral standing policy; the tool results retain operation-specific denial and retry guidance.
fs/observed fires AFTER the read/read_image/write/edit already succeeded, via a plain ctx.emit. A listener is contractually a synchronous, side-effect-only recorder (@deepseek-ai/dsh-fs-observation-policy's is a WeakMap.set); the tool does not guard the emit, so a listener that throws would surface as the tool's isError result — async or fallible observation does not belong on this event.
read opts into concurrent scheduling because its only mutation is the synchronous version recorder. Recorder races fail closed when a later write or edit re-checks the version under its target lock; both mutation tools remain exclusive. See the parallel tool-call Agent Note.
The package root exports only the Cordis plugin contract (name, inject, Config, and apply). Read rendering (line windowing + output formatting) lives in src/read-render.ts (Cordis-free, independently unit-tested); src/read.ts/read-image.ts/write.ts/edit.ts are the tool executors and src/index.ts composes them.
Every request in this plugin's registration scope receives the independently registered read, write, and edit guidance below. Scoped tool restrictions can hide schemas without removing these sections.
Use the read tool — not shell commands like cat — to inspect text files. Results include line numbers. Use offset and limit to continue reading large files.Use the write tool to create files or completely replace file contents. Existing files are overwritten, so read an existing file first (the default fs-observation-policy requires it) and prefer edit for targeted changes.Use the edit tool for targeted changes to existing UTF-8 text files. It replaces literal old_string with new_string; by default old_string must appear exactly once. If old_string appears multiple times, provide a more specific old_string or set replace_all to true. Read the file first (the default fs-observation-policy requires it), unless you just created or edited it in this session.Fixed guidance cost per request while the plugin is active, even when a restriction hides one or more tools.
Prefix-stable while the plugin scope and guidance text are unchanged. Tool restrictions do not remove this section, but plugin activation or disposal may invalidate reuse from it.
The model sees the generated read, read_image, write, and edit schemas, with snake_case arguments. read_image appears only while a durable attachment store is mounted; the schema itself is route-independent, and the strict gate refuses at execution. Scoped tool restrictions can remove any definition for one agent.
Fixed schema cost on every request in that tool view.
Prefix-stable while the visible tool definitions and order are unchanged. Registration lifecycle or scoped restrictions may invalidate reuse from the first changed schema token.
A successful read is exactly <path><displayPath></path>, newline, <type>file</type>, newline, <content>, numbered lines as <lineNumber>: <text>, a blank line, one footer, and </content>. The footer is exactly (Output capped. Showing lines <start>-<end>. Use offset=<next> to continue.), (Showing lines <start>-<end> of <total>. Use offset=<next> to continue.), or (End of file - total <total> lines). A long line ends exactly ... (line truncated to <max> chars). A missing read still returns FS_NOT_FOUND, but it records confirmed absence for the calling session; after an externally deleted file is re-read, a retried write can safely recreate it through the provider's no-replace guard.
Read output is capped by readLimit, readMaxLineLength, and readMaxBytes; the retained call and result are resent until compaction.
Append-only; newly visible content follows the reusable request prefix and does not invalidate existing KV-cache entries.
A successful read_image returns <path><displayPath></path>, <type>image</type>, and a <content> envelope naming the media type, dimensions, and byte size, followed by the image itself as a native image block. The session log stores only the durable sha256: attachment reference; the routed provider re-reads and digest-verifies the bytes on each request.
The image is billed on every later request until compaction. Each call is independently bounded by the attachment store's maxImageBytes/maxImagePixels; repeated successful calls accumulate history, and content addressing deduplicates only the stored bytes, not the per-request token cost.
Append-only; newly visible content follows the reusable request prefix and does not invalidate existing KV-cache entries.
Write returns the exact five-line envelope <path><displayPath></path>, <type>file</type>, <content>, Created file or Updated file, then </content>. Edit returns exactly The file <displayPath> has been updated successfully. or, for replace_all, The file <displayPath> has been updated. All occurrences were successfully replaced. The full write or replacement text remains in the assistant tool-call arguments.
Success text is small, but large mutation arguments and any result are resent until compaction.
Append-only; newly visible content follows the reusable request prefix and does not invalidate existing KV-cache entries.
Failures are normalized as Error: <message>. This package's stable validation and read messages are file_path must be a non-empty string, limit must be less than or equal to <max>, old_string must be a non-empty string, old_string and new_string must differ, cannot read "<path>": not found, cannot read "<path>": not a regular file, offset <offset> is out of range for "<path>" (<total> lines), cannot read "<path>": read_image only accepts PNG/JPEG/WebP/GIF paths, cannot read "<path>" as an image: model "<model>" does not declare image input; switch to an image-capable model to read images, and the mismatch repair cannot read "<path>": the <ext> extension declares <type>, but the bytes use a different image format; rename the file to match its actual format if it is PNG/JPEG/WebP/GIF, or convert it to one of those formats; provider and policy templates are quoted in their package READMEs. Guarded-mutation failures additionally carry their recovery instruction in the message, appended by this package's model-facing error wrapper: FS_STALE_VERSION gets — re-read the file, then retry, and FS_NOT_OBSERVED gets — read the file, then retry; the structured code is preserved. After that reread confirms absence, edit reports FS_NOT_FOUND instead of repeating a stale remedy, while write uses guarded creation.
Only a failing call adds these retained tokens.
Append-only; newly visible content follows the reusable request prefix and does not invalidate existing KV-cache entries.
- No model-facing directory listing ships —
ctx.fs.listDirserves provider code such as skill discovery, while the siblingdsh-tool-fs-searchpackage supplies ripgrep-backedglobandgreprather than extending the filesystem seam. readhandles UTF-8 text files only — images use the separate extension-routedread_imagetool; PDF, audio, and video remain deferred. A directory target isFS_NOT_REGULAR_FILE.- The route gate races a concurrent model switch —
read_imagechecks the latest routed model at execution; a switch committed between that check and the next request can leave an image block on a route that rejects image content. The Web host already refuses switching an image-bearing session to a text-only model; other front doors own their equivalent guard. - Extension-declared media type — the extension selects the declared type and the attachment store's magic-byte validation stays authoritative; a correctly formatted image under a wrong extension is refused with the rename remedy rather than sniffed.
- No inline image preview on the tool-result card — UI surfaces render the image result generically (the durable reference, not pixels); inline rendering is deferred to the UI packages.
- No timeout surface —
read/write/edittake no timeout argument and declare notimeout-policybudget; cancellation ridesexec.signalonly (provider rationale).