docs: dsh 0.1.0-rc.7: streaming ReplayEnvelope protocol, batch image attachment API, reasoningEffort 'low' - #15
Open
github-actions[bot] wants to merge 1 commit into
Open
docs: dsh 0.1.0-rc.7: streaming ReplayEnvelope protocol, batch image attachment API, reasoningEffort 'low'#15github-actions[bot] wants to merge 1 commit into
github-actions[bot] wants to merge 1 commit into
Conversation
github-actions
Bot
force-pushed
the
docs/sync
branch
2 times, most recently
from
August 18, 2026 01:54
b7b7762 to
8b6ff54
Compare
github-actions
Bot
force-pushed
the
docs/sync
branch
from
August 18, 2026 07:09
8b6ff54 to
309fc9f
Compare
github-actions
Bot
force-pushed
the
docs/sync
branch
from
August 18, 2026 13:12
309fc9f to
dab4ce8
Compare
…attachment API, reasoningEffort 'low'
The dsh mirror took a full refresh (fetched 2026-08-18 vs 2026-08-13) that tracks a new CLI release, `@deepseek-ai/dsh@0.1.0-rc.7` (published 2026-08-17). This is not doc-only churn: the release lands several interface-level changes across the harness — the LLM streaming replay-state protocol, the attachment service surface, and the plugin config schema — plus a brand-new extension cookbook page. dsh is a developer preview that breaks things without migration paths, so plugin and adapter authors should treat these as potentially breaking.
- **Streaming replay-state is now a structured `ReplayEnvelope`, not opaque JSON.** The `finish` chunk's `replayState` field (and `BlockAssembler.replayState`) changed from `unknown` to a typed envelope holding response-level metadata plus optional per-block entries aligned with the emitted blocks. Assembly prunes content and metadata with a single keep/drop decision (e.g. a `max-tokens` finish drops tool calls and the matching envelope entries), so stored metadata always describes stored content and the two can't disagree. LLM adapter authors must now emit/consume `ReplayEnvelope`; an adapter that can't use a stored state degrades that one message to provider-neutral conversion with a diagnostic instead of failing the request.
- **`ImageAttachmentService` gains a batch `saveImages()` method** — validates one ordered image batch before committing any member, returns durable references in exact input order, and never surfaces partial references on storage failure (already-published content-addressed objects may linger until a future retention policy). `acp` and `mcp-client` both gained a dependency on the `attachment` package, so ACP/MCP image flows are the likely consumers.
- **`reasoningEffort` config now accepts `'low'`** (config-catalog.md), a new valid value for the deployment thinking policy alongside `off | high | max`.
- **New cookbook: adding a settings card** — a plugin can now register its own configuration card on the web settings page through a `settings.plugin.item` slot, joined to a Host-side `settingsNamespace`. New page is indexed in llms.txt and the extension-cookbook index.
- **`run_code` tool now attaches image-bearing subtool results** after the run; tool docs updated to describe images as part of program output.
- Watch item: `.metadata.json` now flags `content/en/news/news251201.md` ("DeepSeek-V3.2 Release") as serving the SPA fallback shell — the upstream news page may have been removed or renamed. The mirrored file itself is unchanged for now.
- Minor: snapshot-testing policy extends coverage to the TypeScript and Python SDKs (`examples/jsonrpc-agent`, `scripts/snapshots/python-sdk-single-exe/`); the user guide links the DeepSeek API-key page.
github-actions
Bot
force-pushed
the
docs/sync
branch
from
August 18, 2026 19:01
dab4ce8 to
5aa7d59
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The dsh mirror took a full refresh (fetched 2026-08-18 vs 2026-08-13) that tracks a new CLI release,
@deepseek-ai/dsh@0.1.0-rc.7(published 2026-08-17). This is not doc-only churn: the release lands several interface-level changes across the harness — the LLM streaming replay-state protocol, the attachment service surface, and the plugin config schema — plus a brand-new extension cookbook page. dsh is a developer preview that breaks things without migration paths, so plugin and adapter authors should treat these as potentially breaking.ReplayEnvelope, not opaque JSON. Thefinishchunk'sreplayStatefield (andBlockAssembler.replayState) changed fromunknownto a typed envelope holding response-level metadata plus optional per-block entries aligned with the emitted blocks. Assembly prunes content and metadata with a single keep/drop decision (e.g. amax-tokensfinish drops tool calls and the matching envelope entries), so stored metadata always describes stored content and the two can't disagree. LLM adapter authors must now emit/consumeReplayEnvelope; an adapter that can't use a stored state degrades that one message to provider-neutral conversion with a diagnostic instead of failing the request.ImageAttachmentServicegains a batchsaveImages()method — validates one ordered image batch before committing any member, returns durable references in exact input order, and never surfaces partial references on storage failure (already-published content-addressed objects may linger until a future retention policy).acpandmcp-clientboth gained a dependency on theattachmentpackage, so ACP/MCP image flows are the likely consumers.reasoningEffortconfig now accepts'low'(config-catalog.md), a new valid value for the deployment thinking policy alongsideoff | high | max.settings.plugin.itemslot, joined to a Host-sidesettingsNamespace. New page is indexed in llms.txt and the extension-cookbook index.run_codetool now attaches image-bearing subtool results after the run; tool docs updated to describe images as part of program output..metadata.jsonnow flagscontent/en/news/news251201.md("DeepSeek-V3.2 Release") as serving the SPA fallback shell — the upstream news page may have been removed or renamed. The mirrored file itself is unchanged for now.examples/jsonrpc-agent,scripts/snapshots/python-sdk-single-exe/); the user guide links the DeepSeek API-key page.