mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
Profile bundles are npm packages declaring dsh.patch in their manifest: dsh-base carries the former base.cordis.yml rows as one insert over the empty profile root; dsh-web-app carries the web overlay plus a runtime glue plugin owning what used to be launcher code (frontend dist resolution via frontend-static, the web-surface prompt section, bash runtime variables, the readiness-gated URL line); dsh-headless carries the one-shot runner driving a task turn through the in-process API carrier under the launcher-provided ctx.headlessIo seam.
20 lines
577 B
YAML
20 lines
577 B
YAML
# The dsh-headless bundle patch: one-shot task mode over dsh-base +
|
|
# dsh-web-app. The web composition stays mounted (the session is observable
|
|
# in a browser while it runs); this layer silences the URL line, moves the
|
|
# webserver to an OS-assigned port so parallel headless runs never collide,
|
|
# and mounts the one-shot runner. The launcher patches the runner's `task`.
|
|
|
|
- id: webserver
|
|
config:
|
|
host: 127.0.0.1
|
|
port: 0
|
|
|
|
- id: web-runtime
|
|
config:
|
|
mode: production
|
|
printUrl: false
|
|
|
|
- insert:
|
|
- id: headless-runner
|
|
name: '@deepseek-ai/dsh-headless'
|