mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
One principle: every fact in the assembled prompt has exactly one owner.
- dsh-system-prompt: merge-extensible AssembleContext on assemble();
a variable(name, provider) registry; {{name}} interpolation in
renderPrompt, strict (unknown/valueless/malformed references throw);
duplicate section and variable names rejected; assembly carries
resolved section text + variables through the assemble waterfall.
- dsh-agent declares AssembleContext.agent; dsh-agent-loop registers
the agent:persona section (order 0 - identity renders before tool
guidance) and the model/cwd variables, and drops its string join:
renderPrompt(assembly) IS the full prompt.
- Tool guidance moves to its owners: descriptions carry per-tool
semantics; sections only cross-call habits (tool:bash exit-code
habit at order 105; read's not-shell nudge). todo/subagent need no
section - their descriptions already carry the contract.
- SubagentProvider.inheritsParentContext (spawn/acp false, fork true);
dsh-tool-subagent derives truthful per-provider wording and resolves
the provider at load (backend must be listed first).
- Example personas shrink to identity + behavior with {{model}} (and
{{cwd}} in the ACP tree); the welcome banner stops enumerating tools.
RFC: docs/rfc/implemented/architecture/2026-07-05-prompt-variables-and-tool-guidance-ownership.md
122 lines
4.3 KiB
TypeScript
122 lines
4.3 KiB
TypeScript
/**
|
|
* A scripted {@link SubagentProvider} for testing the subagent seam WITHOUT a
|
|
* model or a real child agent. Mirrors `@deepseek-ai/dsh-llm-replay`: it lets a
|
|
* test drive the service and the model-facing tool through the REAL cordis
|
|
* Loader / export path, exercising registration, capability validation, the
|
|
* run lifecycle, and the structured-output branch deterministically.
|
|
*
|
|
* Plugin export shape: named `name`/`inject`/`Config`/`apply`, NO default —
|
|
* a functional plugin (it only registers a provider; it is never injected).
|
|
*
|
|
* @module @deepseek-ai/dsh-subagent-mock
|
|
*/
|
|
|
|
import type { Context } from 'cordis'
|
|
import z from 'schemastery'
|
|
import { AgentId } from '@deepseek-ai/dsh-agent'
|
|
import type { ContentBlock } from '@deepseek-ai/dsh-llm'
|
|
import type {
|
|
SubagentCapabilities,
|
|
SubagentProvider,
|
|
SubagentResult,
|
|
SubagentRun,
|
|
SubagentStartRequest,
|
|
SubagentStopReason,
|
|
} from '@deepseek-ai/dsh-subagent'
|
|
|
|
const STOP_REASONS = ['completed', 'aborted', 'error', 'max-tokens', 'refusal'] as const
|
|
|
|
const DEFAULT_CAPS: SubagentCapabilities = { outputSchema: true, depthLimit: true, toolFilter: true }
|
|
|
|
/**
|
|
* A scripted provider: every {@link start} returns a run whose `result`
|
|
* resolves on a microtask with the configured reply (and a structured value
|
|
* when the request asked for one and the capability is on). `dispose` is a
|
|
* no-op; a `cancel()` before the result settles flips the stop reason to
|
|
* `aborted`, so the cancellation path is observable in a test.
|
|
*/
|
|
class MockSubagentProvider implements SubagentProvider {
|
|
readonly capabilities: SubagentCapabilities
|
|
readonly inheritsParentContext: boolean
|
|
|
|
constructor(
|
|
readonly name: string,
|
|
private readonly config: Config,
|
|
) {
|
|
this.capabilities = { ...DEFAULT_CAPS, ...config.capabilities }
|
|
this.inheritsParentContext = config.inheritsParentContext ?? false
|
|
}
|
|
|
|
start(request: SubagentStartRequest): SubagentRun {
|
|
const reply = this.config.reply ?? 'mock subagent reply'
|
|
const output: ContentBlock[] = [{ type: 'text', text: reply }]
|
|
const wantsStructured = request.outputSchema !== undefined && this.capabilities.outputSchema
|
|
const baseStop: SubagentStopReason = this.config.stopReason ?? 'completed'
|
|
let cancelled = false
|
|
|
|
// A deterministic child id derived from the parent — no clock/random (both
|
|
// banned in deterministic paths here, and unnecessary for a scripted run).
|
|
const id = AgentId(`mock-subagent:${this.name}:${request.parent.id}`)
|
|
|
|
const resultFor = (): SubagentResult => ({
|
|
output,
|
|
structured: wantsStructured ? (this.config.structured ?? { reply }) : undefined,
|
|
stopReason: cancelled ? 'aborted' : baseStop,
|
|
})
|
|
|
|
return {
|
|
id,
|
|
result: Promise.resolve().then(resultFor),
|
|
cancel() {
|
|
cancelled = true
|
|
},
|
|
async dispose() {
|
|
// Scripted run holds no resources — nothing to await.
|
|
},
|
|
}
|
|
}
|
|
}
|
|
|
|
export const name = 'subagent-mock'
|
|
export const inject = ['subagents']
|
|
|
|
/** Config for the mock provider; all optional with test-friendly defaults. */
|
|
export interface Config {
|
|
/** Registry name to register under. */
|
|
name: string
|
|
/** The text the scripted child "returns" as its final answer. */
|
|
reply?: string
|
|
/** The stop reason the run settles with. */
|
|
stopReason?: SubagentStopReason
|
|
/** Which start-time capabilities to advertise (default: all `true`). */
|
|
capabilities?: Partial<SubagentCapabilities>
|
|
/**
|
|
* The context contract to declare ({@link SubagentProvider.inheritsParentContext});
|
|
* default `false` (spawn-like). Set `true` to exercise the fork-shaped tool
|
|
* wording in consumer tests.
|
|
*/
|
|
inheritsParentContext?: boolean
|
|
/**
|
|
* Structured value surfaced when a request carries an `outputSchema` and the
|
|
* `outputSchema` capability is on (default: `{ reply }`).
|
|
*/
|
|
structured?: unknown
|
|
}
|
|
|
|
export const Config: z<Config> = z.object({
|
|
name: z.string().default('mock'),
|
|
reply: z.string(),
|
|
stopReason: z.union(STOP_REASONS),
|
|
capabilities: z.object({
|
|
outputSchema: z.boolean(),
|
|
depthLimit: z.boolean(),
|
|
toolFilter: z.boolean(),
|
|
}),
|
|
inheritsParentContext: z.boolean(),
|
|
structured: z.any(),
|
|
})
|
|
|
|
export function apply(ctx: Context, config: Config): void {
|
|
ctx.subagents.registerProvider(new MockSubagentProvider(config.name, config))
|
|
}
|