Tianyi Cui 67c7ef791f Apply the ts-build-config (lib/types) convention to the new subagent packages 2 mesi fa
..
src 0c9ea3145f Extract the shared in-process driver into dsh-subagent-inprocess (review feedback) 2 mesi fa
tests 0c9ea3145f Extract the shared in-process driver into dsh-subagent-inprocess (review feedback) 2 mesi fa
README.md 0c9ea3145f Extract the shared in-process driver into dsh-subagent-inprocess (review feedback) 2 mesi fa
package.json 67c7ef791f Apply the ts-build-config (lib/types) convention to the new subagent packages 2 mesi fa
tsconfig.json 67c7ef791f Apply the ts-build-config (lib/types) convention to the new subagent packages 2 mesi fa

README.md

@deepseek-ai/dsh-subagent-spawn

The in-process spawn subagent backend: a SubagentProvider that runs each child as a fresh child Agent on the same cordis context (ctx.agents) — its own session, its own (or the parent's) model, zero inherited conversation. The cheapest transport, reusing the agent factory's quiescent AgentHandle teardown.

The run mechanics live in the shared @deepseek-ai/dsh-subagent-inprocess driver (startInProcessRun); this backend just passes no seed (a fresh child). The fork backend is an independent peer over the same driver — neither knows about the other.

What it does

start(request) delegates to startInProcessRun(ctx, request, { providerName }) with no seed: a fresh child agent with the parent's cwd/parentSession lineage and (by default) the parent's model. See the driver README for the full lifecycle (depth check, one-shot drive, result read, dispose).

Capabilities

{ outputSchema: false, depthLimit: true, toolFilter: false }. It constructs the child, so it enforces a recursion cap; structured output and tool-scoping are deferred (the service rejects a request needing either before start runs).

Config

Key Meaning
providerName Registry name on ctx.subagents (default spawn).