mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
Review feedback (tianyicui): 'process' is a poor service name. The family is now packages/subprocess/ — @deepseek-ai/dsh-subprocess (ctx.subprocess, abstract SubprocessService, Subprocess* vocabulary) and @deepseek-ai/dsh-subprocess-local (LocalSubprocessService) — renamed throughout code, compositions, docs (en+zh, pairs re-recorded), catalogs, and gates. 'subprocess' is the precise term for managed OS children (the Python-stdlib sense), avoids colliding with Node's global process object, and reads as one system beside dsh-subagent-subprocess. ds-review-bot findings addressed: - kill() on a settled handle is now a no-op (no signal to a possibly-reused pgid, no referenced grace timer delaying exit); pinned by a spy test. - The moved DshEnvironmentKey/DshEnvironment/CollectedOutput types get drift-checked type-equiv blocks on the new subprocess.md page, restoring their manifest registration. - subprocess.md is registered in the core.md sub-page index (en+zh).
56 lines
1.8 KiB
YAML
56 lines
1.8 KiB
YAML
# Real Loader composition for the keyless conversational PTY test. The app
|
|
# bundle supplies the production agent/TUI/user-question stack; only the model
|
|
# is scripted so the terminal interaction is deterministic and network-free.
|
|
- id: scripted-llm
|
|
name: './tui-scripted-llm.ts'
|
|
|
|
# Managed child-process groups for the bash executor (spawn/kill/output plumbing).
|
|
- id: subprocess
|
|
name: '@deepseek-ai/dsh-subprocess-local'
|
|
|
|
- id: bash
|
|
name: '@deepseek-ai/dsh-bash-local'
|
|
|
|
- id: fs-local
|
|
name: '@deepseek-ai/dsh-fs-local'
|
|
config:
|
|
cwd: !!js process.cwd()
|
|
|
|
- id: token-meter
|
|
name: '@deepseek-ai/dsh-token-meter'
|
|
|
|
- id: plan-mode
|
|
name: '@deepseek-ai/dsh-plan-mode'
|
|
config:
|
|
section: 'Stay in plan mode for this scripted TUI test.'
|
|
|
|
- id: tui-agent
|
|
name: '@deepseek-ai/dsh-tui-demo'
|
|
config:
|
|
provider: tui-scripted
|
|
model: tui-scripted-model
|
|
persistenceRoot: './.sessions'
|
|
# The smoke's log inspection reads plain `.jsonl`; keep the scripted
|
|
# fixture uncompressed like the other snapshot-facing configs.
|
|
persistenceCompression: none
|
|
resumeSessionId: !!js "typeof resumeSessionId === 'string' ? resumeSessionId : undefined"
|
|
resumeCommand: 'dsh --resume {session}'
|
|
workspaceContext:
|
|
maxBytes: 65536
|
|
welcome: 'scripted TUI ready.'
|
|
persona: 'Scripted model {{model}}.'
|
|
ui:
|
|
showReasoning: true
|
|
|
|
# Model-made session titles, as in the shipped cordis.yml: the scripted adapter
|
|
# answers the tool-less title request with a fixed string so the PTY test can
|
|
# assert the logged title reaches the terminal window title.
|
|
- id: session-title-llm
|
|
name: '@deepseek-ai/dsh-session-title-first-message-llm'
|
|
config:
|
|
targetWords: 5
|
|
targetCjkCharacters: 10
|
|
maxInputBytes: 4096
|
|
maxOutputTokens: 64
|
|
timeoutMs: 10000
|