description, kind
| description | kind |
|---|---|
| The managed DSH_* shell environment for users and maintainers choosing, configuring, or extending the environment every model shell call runs with. | package-reference |
@deepseek-ai/dsh-shell-env
English | 中文
Summary
dsh-shell-env provides the trusted DSH_* environment that every model shell call — bash or pwsh — runs with: built-in facts such as DSH_HOME, DSH_SHELL=1, and the agent's DSH_SESSION_ID, plus DSH_SESSION_JSONL when the active persistence backend locates a JSONL artifact. Plugin authors can register their own facts with declared keys, collected per execution and disposed with their plugin; duplicate ownership or undeclared runtime keys fail loudly instead of silently overwriting. The registry changes nothing else the model sees — the shell tools own their own schemas and prompts. Choose it in any composition that mounts a model shell tool; configuration only picks the Harness home directory.
Table of Contents
- Use this package
- Understand the implementation
- Further Exploration
- Model Experience
- Known Limitations and Deferred Work
- Dev Note
Use this package
Load this plugin in any composition that mounts a model shell tool (dsh-tool-bash or dsh-tool-pwsh): each foreground or background shell call then runs with a freshly collected managed environment instead of whatever DSH_* values the process inherited.
What every shell call receives
Every call receives DSH_HOME (the absolute Harness home), DSH_SHELL=1, and, for agent calls, DSH_SESSION_ID (the calling session's id). When the active persistence backend locates a JSONL artifact for the session, calls also receive DSH_SESSION_JSONL with its absolute target path — a location hint, not a guarantee: the file may not exist before the first flush and may not contain the current buffered turn, and the value is not an authorization credential.
Adding your own environment facts
Other plugins contribute facts by registering a contributor with a stable name, the complete set of DSH_* keys it may return, a description per key, and a resolver that computes values for one execution:
import type { Context } from '@deepseek-ai/cordis'
import type {} from '@deepseek-ai/dsh-shell-env'
export const inject = ['shellEnv']
export function apply(ctx: Context): void {
ctx.shellEnv.register({
name: 'deployment-region',
variables: { DSH_DEPLOYMENT_REGION: { description: 'Current deployment region.' } },
resolve: execution => execution.agent === undefined ? {} : { DSH_DEPLOYMENT_REGION: 'cn-north' },
})
}
Contributors must declare every key they return; returning an undeclared or non-string value fails the call. Registration is disposed with the registering plugin, so hot-reloading a plugin removes its facts.
Choosing the Harness home
The single config field picks the home directory exposed as DSH_HOME; the default resolution order is the dshHome config, then ambient $DSH_HOME, then ~/.dsh.
| Field | Default | Meaning |
|---|---|---|
dshHome |
$DSH_HOME, then ~/.dsh |
Absolute Harness home exposed as DSH_HOME |
The generated configuration catalog is the exhaustive source for every accepted field and its JSDoc.
What can go wrong
Two contributors declaring the same key, or a contributor claiming a reserved built-in (DSH_HOME, DSH_SHELL, DSH_SESSION_ID), fails plugin load loudly. A DSH_* key must be all-caps with underscores (for example DSH_REGION), and a missing description fails registration.
Understand the implementation
Implementation internals — click to expand
This section explains the design decisions behind the registry and points at the code that realizes them; the observable behavior is fully covered in Use this package.
Design philosophy
- Trusted namespace, rebuilt per call. The environment is a Harness-owned
DSH_*namespace: the shell executor discards inheritedDSH_*values and merges the registry's current snapshot for each execution, so nested harnesses and concurrent parent/child agents cannot leak stale identities, andprocess.envis never modified. - Declared ownership, loud conflicts. Contributors declare their keys up front so duplicate ownership is detected before the first command; resolvers may only return declared keys.
- Built-ins stay here.
DSH_HOME,DSH_SHELL, andDSH_SESSION_IDare reserved for the registry;DSH_SESSION_JSONLis contributed by this plugin's own persistence translator, which reads the backend-neutralsessionPersistence.locate()seam.
Source map
| File | Role |
|---|---|
src/index.ts |
Plugin entry, ShellEnvRegistry service, built-in facts and the persistence contributor |
src/invariant.ts |
Invariant companion (no runtime invariant; collection is observable through tool execution) |
Collection
collect(execution) starts from the built-ins, adds the session id when the execution carries an agent, then merges each registered contributor's resolved values sorted by contributor name. The result is a frozen, key-sorted snapshot passed through ShellExecRequest.dshEnv. list() enumerates declarations without running resolvers, so it cannot reflect execution-dependent values.
Further Exploration
Read these pages when the package-level contract is not enough. They move from the shell family to the executor seam and the generated catalogs.
- shell package map — the bash capability family and its roles.
- Bash executor subsystem — the
ctx.shellseam the tools execute through. - tool-bash — the bash tool that consumes this environment.
- tool-pwsh — the pwsh tool that consumes this environment.
- home paths package — how
DSH_HOMEis resolved. - Generated configuration catalog — every accepted config field and its source declaration.
Model Experience
Indirectly, through the shell tools (dsh-tool-bash, dsh-tool-pwsh), which expose this registry's managed DSH_* facts in every shell-tool call.
KV Cache effect
The managed environment never enters the request prefix, so it does not invalidate provider cache reuse; the shell tools' definitions and the current request envelope own any prefix change.
Known Limitations and Deferred Work
These limits define when the registry is a poor fit or needs care. They are current package constraints, not a task backlog.
list()enumerates plugin-contributed variables only — registry-owned built-ins (DSH_HOME,DSH_SHELL,DSH_SESSION_ID) are not included, so diagnostics, prompt, or UI code must not treatlist()as an exhaustive environment catalog.DSH_SESSION_JSONLis a location hint, not a guarantee — the file may not exist before the first flush and may not contain the current buffered turn, and the value is not an authorization credential.
Dev Note
Working context for maintainers — click to expand
None.