mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
31 lines
1.1 KiB
YAML
31 lines
1.1 KiB
YAML
# Code Mode keeps the TUI front door while reusing the coding-agent overlay's
|
|
# worker runtime and one-tool registry composition.
|
|
- id: base
|
|
name: '@cordisjs/plugin-include'
|
|
config:
|
|
path: ../coding-agent/code-mode.cordis.yml
|
|
patches:
|
|
- id: stdio-agent
|
|
name: '@deepseek-ai/dsh-stdio-demo'
|
|
config:
|
|
provider: deepseek
|
|
model: deepseek-v4-flash
|
|
resumeSessionId: !!js process.env.RESUME_SESSION_ID
|
|
persistenceRoot: './.sessions'
|
|
workspaceContext:
|
|
maxBytes: 65536
|
|
tools:
|
|
mode: code
|
|
welcome: 'TUI Code Mode ready. Give it a multi-tool task.'
|
|
ui:
|
|
mode: tui
|
|
tui:
|
|
showReasoning: true
|
|
maxToolOutputLines: 12
|
|
persona: |
|
|
You are coding-agent, a coding assistant powered by the {{model}} model.
|
|
|
|
You work by writing TypeScript programs for run_code: batch related
|
|
tool work into one program, loop and branch where it helps, and print
|
|
or return ONLY the findings that matter.
|