mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
# Conflicts: # AGENTS.md # docs/config-catalog.md # docs/cordis-catalog/events.md # docs/cordis-catalog/services.md # docs/core-data-structures/core.md # docs/event-producer-consumer.md # docs/persistence-catalog.md # docs/rfc/implemented/architecture/2026-07-05-reconstructable-requests.md # docs/rfc/implemented/feature/2026-06-15-code-mode.md # docs/rfc/implemented/feature/2026-06-30-hook-bridges.md # docs/rfc/implemented/feature/2026-06-30-interception-seams.md # docs/rfc/implemented/feature/2026-07-08-repeat-tool-guard.md # docs/rfc/proposed/simplification/2026-07-04-prune-dead-core-spine-surface.md # examples/AGENTS.md # examples/acp-agent/cordis.yml # examples/acp-agent/tests/acp.snapshot.ts # examples/echo-agent/cordis.yml # examples/sandbox-acp-agent/cordis.yml # packages/cordis/tool-cordis/src/api-catalog.ts # packages/core/agent-core/README.md # packages/core/agent-core/src/index.ts # packages/core/agent-loop/README.md # packages/core/agent-loop/src/loop.ts # packages/core/agent-loop/tests/interception.spec.ts # packages/core/agent/src/types.ts # packages/core/tools/README.md # packages/core/tools/src/code-mode.ts # packages/core/tools/src/index.ts # packages/fs/fs-local/src/index.ts # packages/fs/fs/README.md # packages/fs/fs/src/index.ts # packages/guard/repeat-tool-guard/README.md # packages/guard/repeat-tool-guard/src/index.ts # packages/hooks/hooks-claude/src/index.ts # packages/hooks/hooks-codex/src/index.ts # packages/ui/acp-agent/src/index.ts
102 lines
5.1 KiB
TypeScript
102 lines
5.1 KiB
TypeScript
/**
|
|
* Model-facing full-file write. It obtains an optional intent from the single policy slot, calls
|
|
* `ctx.fs.writeText` without a stat, then records the resulting version; no policy means an
|
|
* unconditional atomic create-or-overwrite.
|
|
* @module @deepseek-ai/dsh-tool-fs/src/write
|
|
*/
|
|
|
|
import type { Context } from 'cordis'
|
|
import { defineTool } from '@deepseek-ai/dsh-tools'
|
|
import type { DiffCallView, DiffResultView, ToolResult } from '@deepseek-ai/dsh-tools'
|
|
import type { ContentBlock } from '@deepseek-ai/dsh-llm'
|
|
import type { FsWriteOutcome } from '@deepseek-ai/dsh-fs'
|
|
import type {} from '@deepseek-ai/dsh-fs'
|
|
import type {} from '@deepseek-ai/dsh-system-prompt'
|
|
import { computeHunkDiffs, diffsFromMeta, type FsDiffMeta } from './diff.ts'
|
|
import { sessionResolveOptions } from './session-cwd.ts'
|
|
|
|
/**
|
|
* Validate value constraints the schema DSL can't express: only a non-blank
|
|
* `file_path` — an empty `content` is legitimate (it writes an empty file).
|
|
* @param args - the schema-validated raw tool arguments.
|
|
* @returns the camelCased input; `content` passes through untouched.
|
|
*/
|
|
export function parseWriteArgs(args: { file_path: string; content: string }): { filePath: string; content: string } {
|
|
if (args.file_path.trim().length === 0) throw new Error('file_path must be a non-empty string')
|
|
return { filePath: args.file_path, content: args.content }
|
|
}
|
|
|
|
/**
|
|
* Format a write outcome as one model-facing text block body.
|
|
* @param displayPath - the backend-resolved path rendered in the envelope's `<path>` element.
|
|
* @param outcome - the write outcome; its `operation` selects the Created/Updated wording.
|
|
* @returns the model-facing confirmation envelope (no file content is echoed back).
|
|
*/
|
|
export function formatWriteOutput(displayPath: string, outcome: FsWriteOutcome): string {
|
|
const verb = outcome.operation === 'create' ? 'Created' : 'Updated'
|
|
return `<path>${displayPath}</path>
|
|
<type>file</type>
|
|
<content>
|
|
${verb} file
|
|
</content>`
|
|
}
|
|
|
|
/**
|
|
* Register the `write` tool and its system-prompt guidance.
|
|
* @param ctx - the plugin context; registrations are effects scoped to it, and execution uses its `fs` service.
|
|
*/
|
|
export function applyWriteTool(ctx: Context): void {
|
|
ctx.systemPrompt.section({
|
|
name: 'tool:write',
|
|
order: 101,
|
|
text: '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-policy requires it) and prefer edit for targeted changes.',
|
|
})
|
|
|
|
ctx.tools.register(defineTool({
|
|
name: 'write',
|
|
description: 'Create or fully replace a UTF-8 text file.',
|
|
parameters: {
|
|
file_path: { type: 'string', required: true, description: 'Path to write, resolved by the filesystem backend.' },
|
|
content: { type: 'string', required: true, description: 'Full UTF-8 text content to write.' },
|
|
},
|
|
async execute(args, exec): Promise<{ content: ContentBlock[]; meta?: FsDiffMeta }> {
|
|
const input = parseWriteArgs(args)
|
|
const target = await ctx.fs.resolve(input.filePath, sessionResolveOptions(exec))
|
|
// Single-slot decision: the policy plugin produces createIfAbsent/
|
|
// replaceIfVersion; the bare default is undefined (unconditional). No stat.
|
|
const intent = await ctx.waterfall('fs/write-intent', target, exec, () => undefined)
|
|
const outcome = await ctx.fs.writeText(target, input.content, intent, exec.signal)
|
|
// Record the observed version (a no-op when no policy plugin listens).
|
|
ctx.emit('fs/observed', target, outcome.version, exec)
|
|
// Overwrites carry applied hunks. Creates have no prior text, so result presentation uses
|
|
// the args-derived whole-file diff instead.
|
|
const diffs = outcome.before !== null ? computeHunkDiffs(input.filePath, outcome.before, outcome.after) : []
|
|
return {
|
|
content: [{ type: 'text', text: formatWriteOutput(target.displayPath, outcome) }],
|
|
...diffs.length > 0 ? { meta: { diffs } } : {},
|
|
}
|
|
},
|
|
// Pure display: a diff card (an editor renders write as a new-file / full- replace diff).
|
|
// `oldText: null` — a call-time presenter has no access to the file's prior content, so
|
|
// even an overwrite renders new-file style, matching claude-agent-acp.
|
|
presentCall(args): DiffCallView {
|
|
return {
|
|
card: 'diff',
|
|
title: `Write ${args.file_path}`,
|
|
diffs: [{ path: args.file_path, oldText: null, newText: args.content }],
|
|
locations: [{ path: args.file_path }],
|
|
}
|
|
},
|
|
// Result-time display: a `diff` card so the completed `tool_call_update` re-installs the
|
|
// diff rather than the model-facing result text (an ACP `tool_call_update.content` REPLACES
|
|
// the call's content, so a text result would clobber the pending diff card). Overwrites use
|
|
// applied metadata; creates and identical overwrites use the replay-safe args fallback.
|
|
presentResult(args, result: ToolResult): DiffResultView | undefined {
|
|
if (result.isError) return undefined
|
|
const diffs = diffsFromMeta(result.meta)
|
|
?? [{ path: args.file_path, oldText: null, newText: args.content }]
|
|
return { card: 'diff', title: `Write ${args.file_path}`, diffs }
|
|
},
|
|
}))
|
|
}
|