| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- /**
- * Tool render-intent vocabulary: the provider-neutral types a tool declares via
- * `ToolDefinition.presentCall`/`ToolDefinition.presentResult` to say how one of its calls
- * renders in a UI (an editor's tool-call card, a CLI log line).
- * @module @deepseek-ai/dsh-tools/src/presentation
- */
- import type { ContentBlock } from '@deepseek-ai/dsh-llm'
- /**
- * Category of a tool call, used by a UI to pick an icon or treatment. The
- * provider-neutral vocabulary lets tools describe themselves without depending
- * on a particular client; `other` is the default.
- */
- export type ToolCallKind = 'read' | 'edit' | 'delete' | 'move' | 'search' | 'execute' | 'fetch' | 'other'
- /**
- * A file location a tool reads or modifies, so a capable UI can "follow along" —
- * highlight or jump to the file (and line) as the tool runs. `path` is what the
- * tool operated on (the model-facing path); `line` is an optional 1-based line
- * to focus (e.g. a read's offset).
- */
- export interface FileLocation {
- path: string
- line?: number
- }
- /**
- * A single-file change a tool is about to make, for a UI that renders inline
- * diffs. `oldText` is `null` for a new-file create (nothing to diff against);
- * an overwrite also uses `null`, because a call-time presenter has no access to
- * the file's prior content.
- */
- export interface FileDiff {
- path: string
- /** Prior content, or `null` for a new file / an overwrite (no prior content available at call time). */
- oldText: string | null
- /** Content after the change. */
- newText: string
- }
- /**
- * Provider-neutral pending-call presentation. Tools declare one tagged intent;
- * UI bridges map it without special-casing tool names.
- */
- export type ToolCallView = GenericCallView | TerminalCallView | DiffCallView
- /**
- * The default card: a titled tool-call row with an optional category icon, a
- * salient raw input, extra content blocks, and follow-along file locations. Any
- * tool whose call is not a terminal or a diff uses this.
- */
- export interface GenericCallView {
- card: 'generic'
- /**
- * Human-readable, always-visible label describing what THIS call does. Keep it
- * short — a UI shows it as a card header / log line.
- */
- title: string
- /** Category for icon/treatment; defaults to `other` when omitted. */
- kind?: ToolCallKind
- /**
- * The salient input to show in a detail/expanded view (e.g. a background
- * job id). Omit to show nothing; a string renders as-is, an object as pretty
- * JSON. NOT the full raw args object unless that is genuinely what a reader wants.
- */
- rawInput?: unknown
- /**
- * UI-facing content blocks to show on the pending call alongside the title.
- * Omit to show none. A UI maps these to its own content blocks.
- */
- content?: ContentBlock[]
- /** Files this call reads/modifies, for editor follow-along. Omit for a call that touches no file. */
- locations?: FileLocation[]
- }
- /**
- * A call that IS a shell command running in a working directory: a capable UI
- * renders it as a terminal card (cwd-headed, with the command as the title and
- * live/afterward output from the {@link TerminalResultView}); an incapable UI
- * falls back to a generic card whose body is the fenced command output. Set by a
- * tool whose call is a foreground command (e.g. `bash`).
- */
- export interface TerminalCallView {
- card: 'terminal'
- /** The command, shown as the terminal card's title / header line. */
- title: string
- /**
- * A human-readable one-line summary of what the command does, rendered ABOVE
- * the terminal card (the card itself has no description slot). Omit for none.
- */
- description?: string
- /**
- * Working directory the command runs in, shown as the terminal header. An
- * ABSOLUTE path is used as-is; a RELATIVE path is resolved by the UI bridge
- * against the session workspace (the pure presenter can't see the session cwd).
- * Omit entirely to let the bridge use the session workspace.
- */
- cwd?: string
- }
- /**
- * A call that creates or modifies files, rendered as an inline diff card by a
- * capable UI. Set by a tool whose call writes/edits a file (e.g. `write`,
- * `edit`). The diffs are derived from the call ARGUMENTS (a create's `oldText` is
- * `null`); the tool emits a separate {@link DiffResultView} after `execute` — the
- * applied change (an edit/overwrite hunk with context, or a whole-file diff for a
- * create).
- */
- export interface DiffCallView {
- card: 'diff'
- /** Card header (e.g. `Write foo.txt`). */
- title: string
- /** One entry per file the call changes. */
- diffs: FileDiff[]
- /** Files this call modifies, for editor follow-along (usually the diffs' paths). */
- locations?: FileLocation[]
- }
- /**
- * One numbered line of a file, the unit a {@link ReadResultView} carries so a
- * capable UI can render a syntax-highlighted, line-numbered code view. `number`
- * is the 1-based line number in the file (a window past `offset` keeps the file's
- * own numbering, not a 1-based re-count); `text` is the line without its trailing
- * newline, already truncated to the read tool's per-line cap.
- */
- export interface ReadFileLine {
- number: number
- text: string
- }
- /**
- * How a tool wants the COMPLETED call shown — the *result* state, after `execute`
- * returns. A `card`-tagged union mirroring {@link ToolCallView}: a UI switches on
- * `card`. Lets the tool reformat its result for a UI distinctly from the
- * model-facing text it returned from `execute`. Returned by
- * `ToolDefinition.presentResult`; omitting the method keeps the pending
- * title and renders the raw result content.
- */
- export type ToolResultView = GenericResultView | TerminalResultView | DiffResultView | SearchResultView | ReadResultView | WebResultView
- /**
- * The default completed card: an optional replacement title and reformatted
- * content. Omit a field to keep the pending title / render the raw result content.
- */
- export interface GenericResultView {
- card: 'generic'
- /** Replacement title for the completed call. Omit to keep the pending-state title. */
- title?: string
- /**
- * UI-facing result content (harness {@link ContentBlock}s), reformatted from
- * the model-facing result. Omit to let the UI render the raw result content.
- */
- content?: ContentBlock[]
- }
- /**
- * The completed state of a {@link TerminalCallView}: the captured output and exit
- * status. A capable UI renders `output` in the terminal card and shows an
- * exit-status pill; an incapable UI gets a fenced ```console fallback the BRIDGE
- * derives from `output` (the tool does not double-encode it).
- */
- export interface TerminalResultView {
- card: 'terminal'
- /** Replacement title for the completed call. Omit to keep the pending-state title. */
- title?: string
- /** Captured command output (stdout+stderr as the tool chooses to combine them). */
- output?: string
- /**
- * Process exit code, when the run ended by exiting (not a signal). Lets a
- * capable UI show an exit-status pill. Omit when killed by a signal or unknown.
- */
- exitCode?: number
- /** Signal name that killed the process (e.g. `SIGTERM`). Mutually exclusive with `exitCode`. */
- signal?: string
- }
- /**
- * A completed file mutation rendered as an inline diff card, the result-time
- * analogue of {@link DiffCallView}. Because a completed UI update replaces the
- * pending card content, mutation tools return this even when it repeats the
- * call-time diff; otherwise raw result text would replace the diff.
- */
- export interface DiffResultView {
- card: 'diff'
- /** Replacement title for the completed call. Omit to keep the pending-state title. */
- title?: string
- /** The change to show, in file order — applied contextual hunks, or a whole-file diff when there is no before-image. */
- diffs: FileDiff[]
- }
- /** One matched line inside a {@link SearchFileMatches} group: its 1-based line number and text. */
- export interface SearchLineMatch {
- /** 1-based line number of the match within its file. */
- lineNumber: number
- /** The matched line text, as the tool surfaced it (the per-line preview budget already applied). */
- line: string
- }
- /** One file's grouped content matches for a {@link SearchMatchesResultView}, in first-seen file order. */
- export interface SearchFileMatches {
- /** The file the matches belong to (the model-facing display path). */
- path: string
- /** The file's matched lines, in output order. */
- matches: SearchLineMatch[]
- }
- /**
- * A completed content search (`grep`) rendered as a search card whose matches are
- * grouped by file, so a capable UI can list each file as an expandable group of
- * its matched lines. `shape: 'matches'` discriminates this variant from the path
- * variant ({@link SearchPathsResultView}) within {@link SearchResultView}. The
- * discriminant is `shape`, not `kind`, so it never collides with the
- * {@link ToolCallKind} `kind` an icon-picking bridge reads off a call view.
- */
- export interface SearchMatchesResultView {
- card: 'search'
- shape: 'matches'
- /** Replacement title for the completed call. Omit to keep the pending-state title. */
- title?: string
- /** Matched lines grouped by file, in first-seen file order. */
- files: SearchFileMatches[]
- /**
- * Whether the tool capped the inline result: `files` carries only the retained
- * matches, not every match the search found. A UI shows a capped indicator so it
- * never presents a partial group as complete.
- */
- truncated: boolean
- /** Total matches the search found before capping (equals the retained count when not `truncated`). */
- total: number
- }
- /**
- * A completed path search (`glob`) rendered as a search card whose result is a flat
- * path list. `shape: 'paths'` discriminates this variant from the grouped-matches
- * variant ({@link SearchMatchesResultView}) within {@link SearchResultView}.
- */
- export interface SearchPathsResultView {
- card: 'search'
- shape: 'paths'
- /** Replacement title for the completed call. Omit to keep the pending-state title. */
- title?: string
- /** The discovered paths, in the tool's result order (the retained page when `truncated`). */
- paths: string[]
- /**
- * Whether the tool capped the inline result: `paths` carries only the retained
- * page, not every path the search found. A UI shows a capped indicator so it
- * never presents a partial list as complete.
- */
- truncated: boolean
- /** Total paths the search found before capping (equals `paths.length` when not `truncated`). */
- total: number
- }
- /**
- * A completed search rendered as a search card, the result-time view a discovery
- * tool (`grep`, `glob`) returns from `presentResult`. One `card: 'search'` view
- * with two `shape`-discriminated variants: grouped-by-file content matches
- * ({@link SearchMatchesResultView}) and a flat path list
- * ({@link SearchPathsResultView}). Both carry a `truncated`/`total` signal so a UI
- * never presents a capped result as complete. The view carries no result text: a
- * UI without a search card falls back to the raw `tool/result` content. There is
- * no call-time analogue: a search call stays a {@link GenericCallView}
- * (`kind: 'search'`) because the pending state has no matches or paths to show —
- * the structured shape exists only after `execute`.
- */
- export type SearchResultView = SearchMatchesResultView | SearchPathsResultView
- /**
- * A completed file read rendered as a line-numbered, optionally syntax-highlighted
- * code view by a capable UI. Set by a tool whose call reads file text (e.g.
- * `read`); the pending state stays a {@link GenericCallView} (`kind: 'read'`)
- * because a call carries no content until `execute` returns. The structured
- * `lines`/`path`/`lang`/`totalLines` fields cannot be reconstructed from the
- * model-facing result text alone, so the read tool projects them through its
- * `output.presentationMeta` (persisted with the session log) and `presentResult`
- * narrows that metadata back into this view on live and replay paths alike. A UI
- * without the read capability falls back to `content` (the model-facing text with
- * its envelope stripped), so this view degrades to the generic text card.
- */
- export interface ReadResultView {
- card: 'read'
- /** Replacement title for the completed call. Omit to keep the pending-state title. */
- title?: string
- /** The read file's path (the model-facing path; the bridge relativizes it). */
- path: string
- /**
- * The 1-based first line the window requested, preserved even when `lines` is
- * empty (a byte cap below the first selected line yields an empty window) so a
- * UI knows where the window starts and where a continuation resumes.
- */
- offset: number
- /** The returned window's lines, in file order, each keeping its file line number. */
- lines: ReadFileLine[]
- /** Exact total line count in the file, so a UI can show a "showing N of M" affordance. */
- totalLines: number
- /**
- * A syntax-highlighting language hint derived from the file extension (e.g.
- * `ts`, `py`), or omitted when the extension maps to no known language so a UI
- * renders the lines as plain text.
- */
- lang?: string
- /**
- * The model-facing result content with its envelope stripped, for a UI without
- * the read capability. Omit to let such a UI render the raw result content.
- */
- content?: ContentBlock[]
- }
- /**
- * One citeable source in a completed {@link WebSearchResultView}, the faithful
- * projection of one web-search source. The presentation projection of `dsh-web`'s
- * `WebSearchSource`: that Service Definition type is authoritative (core cannot depend
- * on the web Service Definition, so the two are declared separately and MUST evolve together).
- * A web tool projects this shape through `output.presentationMeta` because the
- * render text cannot losslessly carry it (see the web-result-card Agent Note); its
- * `presentResult` reads it back.
- */
- export interface WebSource {
- /** The source URL. */
- url: string
- /** The source title, when the provider returned one. */
- title?: string
- /** A short excerpt or summary, when the provider returned one. */
- snippet?: string
- /** Publication/crawl timestamp as a provider-supplied ISO-8601 string, when present. */
- publishedAt?: string
- }
- /**
- * A completed web retrieval rendered as a structured card by a capable UI. Set
- * by a web tool whose call retrieves from the web (`web_search`, `web_fetch`).
- * One `kind`-tagged union carries both shapes because both are web retrieval and
- * a UI renders them with one component family; a UI switches on `kind`. An
- * incapable UI falls back to the raw `tool/result` content (this view carries no
- * `content` copy — see the web-result-card Agent Note). This is the result-time
- * analogue of the `web_search`/`web_fetch` calls' generic call views
- * (`kind: 'search'`/`'fetch'`); those tools keep their generic pending card and
- * add only this completed card.
- *
- * The `kind` field here is this union's own discriminant, NOT a
- * {@link ToolCallKind}: the two values deliberately match the tools' pending
- * `ToolCallKind` (`'search'`/`'fetch'`) so a call and its result read as one
- * category, but a new arm is a union edit plus a consumer branch, not any
- * arbitrary `ToolCallKind` value.
- */
- export type WebResultView = WebSearchResultView | WebFetchResultView
- /**
- * The completed state of a `web_search` call: the structured sources the model
- * cited, an optional provider answer, and whether the source list was cut to the
- * result cap. A capable UI renders the sources as a citation list; a UI without
- * the `web` capability falls back to the raw `tool/result` content.
- */
- export interface WebSearchResultView {
- card: 'web'
- kind: 'search'
- /** Replacement title for the completed call. Omit to keep the pending-state title. */
- title?: string
- /** The faithful, structured sources — the field render text cannot losslessly carry. */
- sources: WebSource[]
- /** The provider-generated answer text, when any. */
- answer?: string
- /** True when the web service cut the source list to honor the result cap. */
- truncated: boolean
- }
- /**
- * The completed state of a `web_fetch` call: the fetched URL, its HTTP status,
- * and whether the content was cut. The body itself is already markdown in the
- * raw `tool/result` content, so this card carries only the retrieval summary and
- * a UI without the `web` capability falls back to that content.
- */
- export interface WebFetchResultView {
- card: 'web'
- kind: 'fetch'
- /** Replacement title for the completed call. Omit to keep the pending-state title. */
- title?: string
- /** The final URL after allowed redirects. */
- url: string
- /** HTTP status code of the fetched response. */
- statusCode: number
- /**
- * True when the provider capped the decoded body, or the output cap or a
- * pre-conversion source cut trimmed the rendered text (the effective
- * truncation the model-facing text also reflects).
- */
- truncated: boolean
- }
|