| 12345678910111213141516171819202122232425262728293031323334 |
- # The dsh-headless bundle patch: one-shot task mode directly over dsh-base.
- # It mounts no Host, HTTP server, Web runtime, or browser plugin. An ordinary
- # provider plugin injects `cmdlineArgs`, parses the task positional
- # (`dsh --profile headless "<task>"`), the `--session-id` and `--json` options,
- # and this app's --help, then the direct driver creates a fresh Agent, or adopts
- # the exact Session the flag names, through the core registry and prints its
- # durable result.
- - id: system-prompt
- config:
- personaSuffix: Your working directory is {{cwd}}.
- personaPrefix: >-
- You are a coding agent powered by the {{model}} model.
- - id: tools
- config:
- # Keep the same temporary process-wide PTC mode opt-in as the Web surface.
- mode: !!js process.env.DSH_TOOLS_MODE
- - insert:
- - id: headless-startup
- name: '@deepseek-ai/dsh-headless/startup'
- # Reads its task and run options from the ordinary headlessStartup provider.
- - id: headless-runner
- name: '@deepseek-ai/dsh-headless'
- inject: [headlessStartup]
- config:
- task: !!js ctx.headlessStartup.task
- sessionId: !!js ctx.headlessStartup.sessionId
- json: !!js ctx.headlessStartup.json
- - id: hmr
- disabled: true
|